silverlight blob storage large file upload issue
-
Donnerstag, 12. April 2012 09:18i have a issue for large file parellel uploads to azure blob storage via silverlight control
successful upload to less than about 250M, but over about 250M files are upload faild.
does not support silverlight upload to large file?Heetaek,KIM
Alle Antworten
-
Donnerstag, 12. April 2012 09:40
Hi,
The limit for a block blob is 200GB, so I doubt this is the issue. Could you show some of the code and the (WCF) configuration you're using?
Sandrino
Sandrino Di Mattia | Twitter: http://twitter.com/sandrinodm | Azure Blog: http://fabriccontroller.net/blog | Blog: http://sandrinodimattia.net/blog
- Als Antwort vorgeschlagen Sandrino Di Mattia Donnerstag, 12. April 2012 11:55
- Nicht als Antwort vorgeschlagen Sandrino Di Mattia Montag, 16. April 2012 05:53
-
Donnerstag, 12. April 2012 09:49
thanks.
i used that httpWebRequest async method in the silverlight instead of wcf to upload.
Heetaek,KIM
-
Freitag, 13. April 2012 04:08Moderator
Hi,
How do you upload the big file in Blob Storage? You use HttpWebRequest to access the Blob Url and convert your file to stream, and give stream variable to HttpWebRequest.GetRequestStream() method? And about "successful upload to less than about 250M, but over about 250M files are upload faild.", do you ever get any exception messages when request was "failed"? I think if you can provide more details about your problem, it will help us to fix your problem quickly.
An recommended way to upload large files via Blob RESTful service is divede the file to multiple file blocks. For example, you can divede the a large (such as 1000 Mb) file to 20 of 50Mb file blocks and upload all blocks with multiple web requests. HttpWebrequest will timeout while a long time without any response.
Hope this helps.
Please mark the replies as answers if they help or unmark if not. If you have any feedback about my replies, please contact msdnmg@microsoft.com Microsoft One Code Framework
- Bearbeitet Arwind - MSFTModerator Freitag, 13. April 2012 04:08
-
Freitag, 13. April 2012 05:29
thanks.
currently upload block has 1024KB size.
azure server no response near to 240M, 270M or 280M over.
i have one question to large file uploads .
is it possible ?
Heetaek,KIM
-
Freitag, 13. April 2012 05:57Are you going directly to the blob storage? Or are you going through a (WCF) service?
Sandrino Di Mattia | Twitter: http://twitter.com/sandrinodm | Azure Blog: http://fabriccontroller.net/blog | Blog: http://sandrinodimattia.net/blog
-
Freitag, 13. April 2012 06:00
thanks.
i'm using directly connection to the blob storage without wcf Service
Heetaek,KIM
-
Freitag, 13. April 2012 19:20Moderator
Hi,
Do you ever get any exception messages when request was "failed"? For example, you can got error code and stack message when exception was thrown.
BR,
Arwind
Please mark the replies as answers if they help or unmark if not. If you have any feedback about my replies, please contact msdnmg@microsoft.com Microsoft One Code Framework
-
Mittwoch, 18. April 2012 06:03Moderator
Hi,
Did you still have this problem? Try to use Azure Storage Exploer or WCF service to upload large file, if they works, i think the problem is caused by Silverlight client.
I've tested a 500 Mb files at my side (divide to 20 Mb blocks) and works fine.
Hope this helps.
Please mark the replies as answers if they help or unmark if not. If you have any feedback about my replies, please contact msdnmg@microsoft.com Microsoft One Code Framework
- Bearbeitet Arwind - MSFTModerator Mittwoch, 18. April 2012 06:03
- Als Antwort markiert Arwind - MSFTModerator Montag, 3. September 2012 09:05

