I have a scenario where I need to download millions of blobs from Azure storage. I'm using azcopy
.
More blobs are being added constantly to this storage device (@ ~10K/day).
Imagine my download was disrupted. I try again 30 mins later. By then, ~200 more blobs have already been added to the storage. On my command line, I see:
Incomplete operation with same command line detected at the journal directory "/home/myuser/Microsoft/Azure/AzCopy", do you want to resume the operation?
Which of the following 2 scenarios will happen if I enter "Yes"?
1) It will download the remaining blob files, including the 200 new ones that were added
2) It will download the remaining blob files, excluding the new ones.
Please confirm.