0
votes

Is there an approach to calculate the internet bandwidth requirement when transferring data into Azure Blob storage (Append Blob) using the Storage Rest api.

For instance if I want to upload 50MB using the storage API into an Azure Storage account is there a model/approach to determine the number of hours that the upload process will use based on the internet bandwidth connectivity and the limitation of Rest API (which will split the 50mb into a maximum of 4MIB chunks)? Forgive me is this is a broad question

1
which api are you using?Ivan Yang
@IvanYang The Azure storage Rest API will be useduser989865
are you directly using the rest api, or use the sdk? and it's better that you can provide a link to the api or sdk.Ivan Yang

1 Answers

0
votes

Unfortunately, there is no way to do that.

What we can do is that monitor the upload/download progress, and you may calculate them by yourself.

Not sure which api you're using, but if you're using the latest blob storage sdk, you can follow this article to monitor the progress.

Or you can use Microsoft Azure Storage Data Movement Library, you can follow this page to monitor the progress.