I would like to know is there ideal upload speed limit while upload to blob through Azure REST API’s..Having 2 medium instance of worker role
For 700MB,i am uploading it by spilting into chunks and calling CloudBlockBlob.PutBlock and PutBlockList.How would be ideal time to upload and how to increase the performance.
Thanks,
Vivek
The performance among other things would depend on
Take a look at this link: http://msdn.microsoft.com/en-us/library/windowsazure/ee814754.aspx
What it tells you is that for a “Small” sized VM, you get 100Mbps bandwidth. Ideally if uploading blob in blob storage is the only thing your worker role is doing, I would code the application in such a way that I can make maximum use of this bandwidth available to me.
Hope this helps.