kinstephen / angular-azure-blob-upload

AngularJS mobule for uploading to azure blob storage in chunks.
MIT License
32 stars 30 forks source link

Multithreading Upload for Blob Upload #7

Closed vjustin closed 9 years ago

vjustin commented 9 years ago

Dear Sir,

I started using angular-azure-blob-upload and to speed up the uploading speed i have configured the maximum blockSize of 4194304. Still it takes 2 minutes to upload 236 MB file size. So I'm are looking for an option to multithreaded upload. How to achive it using this component. Please Guide.

Thanks, Viji

kinstephen commented 9 years ago

I believe Azure Blob storage has a concept of uploading in blocks. A good starting point for this is https://msdn.microsoft.com/en-us/library/azure/ee691974.aspx and https://msdn.microsoft.com/en-us/library/azure/ee691964.aspx You will have to add support for block blobs. This component does not support block blobs at this time.