AzureLargeFileUploader
AzureLargeFileUploader copied to clipboard
3 questions:
-
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?
-
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?
- 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!