Reputation: 53
I would like to understand a bit more about the viability of my use case. Say I have 2 tiers of data, tier1 and tier2. Each tier would have bunch of files. I would like to promote data from tier2 into tier1 if I believe they have passed some checks. Now with Azure Blob I can see there are 3 possible set ups:
3 seems cumbersome. I would like to understand if 1 or 2 is better. Better is defined by 1) faster 2) less Azure cost
I tried looking up https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10 but I do not see documentation covering my use case.
Upvotes: 0
Views: 283
Reputation: 30518
You would be charged for a copy for either between containers or accounts, so options 1 and 2 would be the same as far as I can see.
Could I suggest you look at metadata or index tags to label your blobs?
Metadata is included in the storage costs for a blob. While Blobs are charged a fixed cost per index tag (see pricing page).
You can filter on both as they are not a move operation, in theory, would be quicker though you may want to test.
Upvotes: 1