I'm trying to copy files from AWS S3 to Azure storage archive access tier directly. Using azcopy
I can copy the files from S3 to Azure but when using --block-blob-tier Archive
flag I hit the error:
failed to parse user input due to error: blob-tier is not supported while copying from sevice to service
The only way around this I can find is to either download the files locally and then upload to Azure or change the access tier once uploaded. The first is the better solution as with the second it would be twice the cost (pay for the write operation when changing tier). Does anyone have another option or know why azcopy
doesn't support this?
azcopy error: https://github.com/Azure/azure-storage-azcopy/blob/7eb7b49f1354b7c205dd469c1ac18cb12f7d353a/cmd/copy.go#L557