Note: Forums will be making significant UX changes to address key usability improvements surrounding search, discoverability and navigation. To learn more about these changes please visit the announcement which can be found HERE.
silverlight blob storage large file upload issue

回答済み silverlight blob storage large file upload issue

  • Thursday, April 12, 2012 9:18 AM
     
     
    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

All Replies

  • Thursday, April 12, 2012 9:40 AM
     
     

    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

  • Thursday, April 12, 2012 9:49 AM
     
     

    thanks.

    i used that httpWebRequest async method in the silverlight instead of wcf to upload.


    Heetaek,KIM

  • Friday, April 13, 2012 4:08 AM
    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


  • Friday, April 13, 2012 5:29 AM
     
     

    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

  • Friday, April 13, 2012 5:57 AM
     
     
    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

  • Friday, April 13, 2012 6:00 AM
     
     

    thanks.

    i'm using directly connection to the blob storage without wcf Service


    Heetaek,KIM

  • Friday, April 13, 2012 7:20 PM
    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

  • Wednesday, April 18, 2012 6:03 AM
    Moderator
     
     Answered

    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