AzureLargeFileUploader icon indicating copy to clipboard operation
AzureLargeFileUploader copied to clipboard

3 questions:

Open lumalav opened this issue 9 years ago • 0 comments

  1. Even though that I could upload to my azure blob storage any blob less than 100 mb, it throws a 413 (blob too large) error to anything larger than that. Why? Am I missing something in the Azure configuration?

  2. I tried using the UploadAsync() constructor that uses the file stream (byte[]) to implement it in my web project. However, when I drop the file it hangs on this line: await container.CreateIfNotExistsAsync();

If I remove it, it will hang later trying to check if there are missing pieces of that file.

So, what can I do to use this project in a Controller in my MVC website?

  1. I know that its an expensive process due to the MD5 checksum and the blob splitting. However, is there a way to increase the speed of upload?

Thank you so much!

lumalav avatar Nov 11 '15 20:11 lumalav