Umbraco Cloud Content Transfer Issues

Posted written by Paul Seal on September 21, 2023

When I used to work with Umbraco Cloud before, one of the problems I had was to do with transferring content from one environment to the next and it failing due to the amount and size of data being transferred.

This came up again today, but I am pleased to find out there is an app setting you can add to get it to put the data into batches and that resolves the issue.

Here's the app setting I ended up using:

{
  "Umbraco": {
    "Deploy": {
      "Settings": {
        "SourceDeployBatchSize": 250
      }
    }
  }
}