silverlight blob storage large file upload issue

Answered silverlight blob storage large file upload issue

  • 2012년 4월 12일 목요일 오전 9: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

모든 응답

  • 2012년 4월 12일 목요일 오전 9: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

  • 2012년 4월 12일 목요일 오전 9:49
     
     

    thanks.

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


    Heetaek,KIM

  • 2012년 4월 13일 금요일 오전 4:08
    중재자
     
     

    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


  • 2012년 4월 13일 금요일 오전 5: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

  • 2012년 4월 13일 금요일 오전 5: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

  • 2012년 4월 13일 금요일 오전 6:00
     
     

    thanks.

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


    Heetaek,KIM

  • 2012년 4월 13일 금요일 오후 7:20
    중재자
     
     

    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

  • 2012년 4월 18일 수요일 오전 6:03
    중재자
     
     답변됨

    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