<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Uploading Big Files in Windows Azure Blob Storage using PutListBlock</title>
	<atom:link href="http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/feed/" rel="self" type="application/rss+xml" />
	<link>http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=uploading-big-files-in-windows-azure-blob-storage-with-putlistblock</link>
	<description>A Wordpress Blog, Running on Windows Azure</description>
	<lastBuildDate>Thu, 16 May 2013 16:05:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: admin</title>
		<link>http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-27308</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 10 May 2013 23:47:25 +0000</pubDate>
		<guid isPermaLink="false">http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-27308</guid>
		<description>Hi,
- you can seriously consider the 2nd technique using PutBlockList when dealing with huge files
- the splitting into chunks helps in term of upload speed (given that you&#039;ve enough bandwidth) and resume capability (when one of the file failed). Note that splitting the file into chucks required local access, meaning that you might only be able to do that on smart client app (win form / win service / console app / etc.)... 
on web app, you can consider using Silverlight like what Steve did here http://blog.smarx.com/posts/uploading-windows-azure-blobs-from-silverlight-part-3-handling-big-files-by-using-the-block-apis</description>
		<content:encoded><![CDATA[<p>Hi,<br />
- you can seriously consider the 2nd technique using PutBlockList when dealing with huge files<br />
- the splitting into chunks helps in term of upload speed (given that you&#8217;ve enough bandwidth) and resume capability (when one of the file failed). Note that splitting the file into chucks required local access, meaning that you might only be able to do that on smart client app (win form / win service / console app / etc.)&#8230;<br />
on web app, you can consider using Silverlight like what Steve did here <a href="http://blog.smarx.com/posts/uploading-windows-azure-blobs-from-silverlight-part-3-handling-big-files-by-using-the-block-apis" rel="nofollow">http://blog.smarx.com/posts/uploading-windows-azure-blobs-from-silverlight-part-3-handling-big-files-by-using-the-block-apis</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-27305</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 10 May 2013 23:14:43 +0000</pubDate>
		<guid isPermaLink="false">http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-27305</guid>
		<description>welcome, Scarlett!</description>
		<content:encoded><![CDATA[<p>welcome, Scarlett!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-27304</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 10 May 2013 23:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-27304</guid>
		<description>That&#039;s great Vitor!</description>
		<content:encoded><![CDATA[<p>That&#8217;s great Vitor!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mario</title>
		<link>http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-27061</link>
		<dc:creator>Mario</dc:creator>
		<pubDate>Mon, 06 May 2013 14:49:40 +0000</pubDate>
		<guid isPermaLink="false">http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-27061</guid>
		<description>Hello,

We recently start using Azure storage and we would like to find some answers regarding Azure storage blockblob - upload and download huge files. Following are our questions:

- our current implementation for upload and download is using UploadFromStream and DownloadToStream (  Storage Client Library 2.0 ) - is this ok for huge files? We have a delay up to 1 min on download for example until the message to save the file is displayed to the user - this for a 100MB file - can we reduce this, based on checks we did is time needed to create the memorystream

- other option we found on net is to split huge files into chunks and upload/download in parallel. Our web application it is not on Azure, we would like to use just the Azure storage for clients files. Our goal is to to avoid using our bandwidth for these upload/download client files. This second option, splitting into chunks helps? Do we use our bandwidth, or upload/download or it is done directly, between Azure server and user browser?

Thx in advance,

Mario</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>We recently start using Azure storage and we would like to find some answers regarding Azure storage blockblob &#8211; upload and download huge files. Following are our questions:</p>
<p>- our current implementation for upload and download is using UploadFromStream and DownloadToStream (  Storage Client Library 2.0 ) &#8211; is this ok for huge files? We have a delay up to 1 min on download for example until the message to save the file is displayed to the user &#8211; this for a 100MB file &#8211; can we reduce this, based on checks we did is time needed to create the memorystream</p>
<p>- other option we found on net is to split huge files into chunks and upload/download in parallel. Our web application it is not on Azure, we would like to use just the Azure storage for clients files. Our goal is to to avoid using our bandwidth for these upload/download client files. This second option, splitting into chunks helps? Do we use our bandwidth, or upload/download or it is done directly, between Azure server and user browser?</p>
<p>Thx in advance,</p>
<p>Mario</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erwin</title>
		<link>http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-26586</link>
		<dc:creator>erwin</dc:creator>
		<pubDate>Sun, 28 Apr 2013 05:39:01 +0000</pubDate>
		<guid isPermaLink="false">http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-26586</guid>
		<description>Thanks for your post.
But I have been looking too at the usage of a MultipartFileStreamProvider.
This way I found it possible to upload big files (more than 64 MB) and this at a high speed. See for example the post of Yao : http://blogs.msdn.com/b/yaohuang1/archive/2012/07/02/asp-net-web-api-and-azure-blob-storage.aspx</description>
		<content:encoded><![CDATA[<p>Thanks for your post.<br />
But I have been looking too at the usage of a MultipartFileStreamProvider.<br />
This way I found it possible to upload big files (more than 64 MB) and this at a high speed. See for example the post of Yao : <a href="http://blogs.msdn.com/b/yaohuang1/archive/2012/07/02/asp-net-web-api-and-azure-blob-storage.aspx" rel="nofollow">http://blogs.msdn.com/b/yaohuang1/archive/2012/07/02/asp-net-web-api-and-azure-blob-storage.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scarlett</title>
		<link>http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-24982</link>
		<dc:creator>Scarlett</dc:creator>
		<pubDate>Fri, 22 Mar 2013 14:21:57 +0000</pubDate>
		<guid isPermaLink="false">http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-24982</guid>
		<description>Excellent post. I was checking constantly this blog and 
I&#039;m impressed! Extremely helpful info specifically the remaining part :) I deal with such info a lot. I was looking for this certain info for a very long time. Thank you and best of luck.</description>
		<content:encoded><![CDATA[<p>Excellent post. I was checking constantly this blog and<br />
I&#8217;m impressed! Extremely helpful info specifically the remaining part <img src='http://wely-lau.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I deal with such info a lot. I was looking for this certain info for a very long time. Thank you and best of luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vitor Ciaramella</title>
		<link>http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-24668</link>
		<dc:creator>Vitor Ciaramella</dc:creator>
		<pubDate>Mon, 11 Mar 2013 15:33:41 +0000</pubDate>
		<guid isPermaLink="false">http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-24668</guid>
		<description>You can also use the Blob Transfer Utility to download and upload all your blob files.

It&#039;s a tool to handle thousands of (small/large) blob transfers in a effective way.

Binaries and source code, here: http://bit.ly/blobtransfer</description>
		<content:encoded><![CDATA[<p>You can also use the Blob Transfer Utility to download and upload all your blob files.</p>
<p>It&#8217;s a tool to handle thousands of (small/large) blob transfers in a effective way.</p>
<p>Binaries and source code, here: <a href="http://bit.ly/blobtransfer" rel="nofollow">http://bit.ly/blobtransfer</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to Upload a blob to windows azure by splitting it into chunks and calling PutBlockList using REST and PHP - Windows Azure Blog</title>
		<link>http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-21838</link>
		<dc:creator>How to Upload a blob to windows azure by splitting it into chunks and calling PutBlockList using REST and PHP - Windows Azure Blog</dc:creator>
		<pubDate>Fri, 15 Feb 2013 07:25:27 +0000</pubDate>
		<guid isPermaLink="false">http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-21838</guid>
		<description>[...] Please can someone post some code or give a reference on how we can upload a blob to azure storage by splitting it into chunks and calling PutBlockList using REST and PHP. I have a reference to the same using .NET code here http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Please can someone post some code or give a reference on how we can upload a blob to azure storage by splitting it into chunks and calling PutBlockList using REST and PHP. I have a reference to the same using .NET code here <a href="http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/" rel="nofollow">http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xue Kun</title>
		<link>http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-15741</link>
		<dc:creator>Xue Kun</dc:creator>
		<pubDate>Mon, 10 Dec 2012 07:08:01 +0000</pubDate>
		<guid isPermaLink="false">http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-15741</guid>
		<description>Hi Ryan,

Any links to show the built in means for block blobs? Would gladly appreciate it. Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Ryan,</p>
<p>Any links to show the built in means for block blobs? Would gladly appreciate it. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cpa beyond</title>
		<link>http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-4610</link>
		<dc:creator>cpa beyond</dc:creator>
		<pubDate>Mon, 29 Oct 2012 18:47:31 +0000</pubDate>
		<guid isPermaLink="false">http://wely-lau.net/2012/02/26/uploading-big-files-in-windows-azure-blob-storage-with-putlistblock/#comment-4610</guid>
		<description>WOW just what I was lo&#959;k&#1110;ng for. Came here 
b&#1091; &#1109;earching for emigrate</description>
		<content:encoded><![CDATA[<p>WOW just what I was lo&#959;k&#1110;ng for. Came here<br />
b&#1091; &#1109;earching for emigrate</p>
]]></content:encoded>
	</item>
</channel>
</rss>
