silverlight blob storage large file upload issue

Beantwortet silverlight blob storage large file upload issue

  • Donnerstag, 12. April 2012 09:18
     
     
    i 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

  • 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:08
    Moderator
     
     

    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


  • 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:57
     
     
    Are 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:20
    Moderator
     
     

    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:03
    Moderator
     
     Beantwortet

    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