System.Net.Sockets.SocketException: Cannot download BLOB entity!!!
c.c.chai,
Second, the connection is automatically closed after 2 hours leaving the download incomplete.
This is expected behavior. We enforce a two hour timeout for blob downloads.
Thanks,
Hari
Increasing the HttpWebRequest.Timeout value is the only solution I've found in uploading large blobs to Azure Blob Storage.
You might find you need to change other settings to upload very large blobs:
Configuration Adjustments: You must add <httpRuntime maxRequestLength="100000" /> to Web.config's <System.Web> element for 100 MB maximum file size (units are KB).
For uploads larger than 30 MB, change the development machine IIS 7.0's maxAllowedContentLength to 100000000 for 100 MB (See "IIS 7.0: requestLimits Element for requestFiltering (IIS Settings Schema)" (http://msdn.microsoft.com/en-us/library/ms689462.aspx) for information on setting larger file size limits in IIS 7.0. (Units are bytes). Default maximum IIS size is 30 MB.
I don't know what Azure's IIS istance limits are, but I'm about to find out.
The preceding info is from comments in a blob test harness I'm working on.
HTH,
--rj
This fix for this bug was included as part of the new version rollout yesterday (1/27/09).
Thanks,
Hari
Thanks for the update. I'll do some testing and post any issues here in the forum.
The upload speed is pretty much the same as last time but the download speed is much slower than last time.
On average, the download duration is about 3 times the upload duration, which is too slow!!!!
First, the download is slow.
Second, the connection is automatically closed after 2 hours leaving the download incomplete.
c.c.chai,
Second, the connection is automatically closed after 2 hours leaving the download incomplete.
This is expected behavior. We enforce a two hour timeout for blob downloads.
Thanks,
Hari
Again, I am pretty sure the download speed is much slower than before. I used to be able to upload & download at about 1 MB per minute. While the upload speed remains the same, the download speed is simply too slow....
|

