I have three different Azure Storage blob containers that are used to serve website content, one for production, one for staging and one for development.
My goal is to sync staging and development on a daily or weekly basis so they match production.
I put together something in PowerShell that works in principal but it's slow and heavy handed. It involves deleting the staging and dev containers, then copying the entire production container twice. For just 20k items, this whole process takes over an hour.
Considering only a couple hundred items may change in a week, a delta operation would likely be done much faster.
Has anyone seen a tool or method that can do a delta copy between Azure Storage blob containers? I'll likely end up writing my own tool but wanted to see if there are any out there currently.