Best way to copy millions of files between 2 servers - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T07:16:54Zhttp://stackoverflow.com/feeds/question/467973http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers3Best way to copy millions of files between 2 serversnoaheverett2009-01-22T03:37:21Z2009-06-30T08:50:26Z
<p>I have roughly around 5 million small (5-30k) files in a single directory that I would like to copy to another machine on the same gigabit network. I tried using rsync, but it would slow down to a crawl after a few hours of running, I assume due to the fact that rsync has to check the source & destination file each time?</p>
<p>My second thought would be to use scp, but wanted to get outside opinion to see if there was a better way. Thanks!</p>
http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/467977#4679776Answer by Marc Novakowski for Best way to copy millions of files between 2 serversMarc Novakowski2009-01-22T03:41:32Z2009-01-22T03:41:32Z<p>I'm sure the fact that you have all FIVE MILLION files in a single directory will throw many tools into a tizzy. I'm not surprised that rsync didn't handle this gracefully - it's quite a "unique" situation. If you could figure out a way to structure the files into some sort of directory structure, I'm sure the standard sync tools such as rsync would be much more responsive.</p>
<p>However, just to give some actual advice - perhaps one solution would be to move the drive physically into the destination machine temporarily so you can do a copy of the files in the actual server (not over the network). Then, move the drive back and use rsync to keep things up to date.</p>
http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/467981#4679811Answer by Keith Nicholas for Best way to copy millions of files between 2 serversKeith Nicholas2009-01-22T03:44:42Z2009-01-22T03:44:42Z<p>I'd see how a zip->copy->unzip performs</p>
<p>or whatever your favorite compression/archive system is.</p>
http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/467982#4679821Answer by ChrisW for Best way to copy millions of files between 2 serversChrisW2009-01-22T03:44:48Z2009-01-22T03:44:48Z<p>Pack them into a single file before you copy it, then unpack them again after it's copied.</p>
http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/467984#4679843Answer by Scott Muc for Best way to copy millions of files between 2 serversScott Muc2009-01-22T03:45:32Z2009-01-22T04:08:30Z<p><a href="http://www.ss64.com/nt/robocopy.html" rel="nofollow">Robocopy</a> is great for things like this. It will try again after network timeouts and it also allows you set an inter-packet gap delay to now swamp the pipe.</p>
<p>[Edit]</p>
<p>Note that this is a Windows only application.</p>
http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/467993#46799314Answer by sth for Best way to copy millions of files between 2 serverssth2009-01-22T03:48:29Z2009-01-22T04:02:13Z<p>Something like this should work well:</p>
<pre><code>tar c some/dir | gzip - | ssh host2 tar xz
</code></pre>
<p>Maybe also omit gzip and the "z" flag for extraction, since you are on a gigabit network.</p>
http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/467996#4679960Answer by mkal for Best way to copy millions of files between 2 serversmkal2009-01-22T03:51:33Z2009-01-22T03:51:33Z<p>you can try the following (may be in batches of files)</p>
<ul>
<li>tar the batch of files</li>
<li>gzip them </li>
<li>copy using scp if possible</li>
<li>gunzip</li>
<li>untar the files</li>
</ul>
http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/468003#4680030Answer by mgv for Best way to copy millions of files between 2 serversmgv2009-01-22T03:58:07Z2009-01-22T04:03:35Z<p>As suggested by sth you could try tar over ssh.</p>
<p>If you do not require encryption (originally you used rsync, but didn't mention it was rsync+ssh) you could try tar over netcat to avoid the ssh overhead.</p>
<p>Of course you can also shorten the time it takes by using gzip or other compression method.</p>
http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/468013#4680132Answer by Charlie Martin for Best way to copy millions of files between 2 serversCharlie Martin2009-01-22T04:03:54Z2009-01-22T04:03:54Z<p>You know, I plus-1'd the tar solution, but -- depending on the environment -- there's one other idea that occurs. You might think about using <em>dd(1)</em>. The speed issue with something like this is that it takes many head motions to open and close a file, which you'll be doing five million times. In you could ensure that these are assigned contguously, you could dd them instead, which would cut the number of head motions by a factor of 5 or more.</p>
http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/468057#4680571Answer by Elijah for Best way to copy millions of files between 2 serversElijah2009-01-22T04:40:46Z2009-01-22T04:40:46Z<p>I know this may be stupid - but have you thought of just copying them onto an external disk and carrying it over to the other server? It may actually be the most efficient and simple solution.</p>
http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/468122#4681220Answer by David Thomas Garcia for Best way to copy millions of files between 2 serversDavid Thomas Garcia2009-01-22T05:23:23Z2009-01-22T05:23:23Z<p>Already tons of good suggestions, but wanted to throw in <a href="http://scootersoftware.com/" rel="nofollow">Beyond Compare</a>. I recently transferred about 750,000 files between 5KB and 20MB from one server to another over a gigabit switch. It didn't even hiccup at all. Granted it took a while, but I'd expect that with so much data.</p>
http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/652660#6526600Answer by dr-jan for Best way to copy millions of files between 2 serversdr-jan2009-03-17T00:42:41Z2009-03-17T00:42:41Z<p>In a similar situation, I tried using tar to batch up the files. I wrote a tiny script to pipe the output of the tar command across to the target machine directly in to a receiving tar process which unbundled the files.</p>
<p>The tar approach almost doubled the rate of transfer compared to scp or rsync (YMMV).</p>
<p>Here are the tar commands. Note that you’ll need to enable r-commands by creating .rhosts files in the home directories of each machine (remove these after they copy is complete - they are notorious security problems). Note also that, as usual, HP-UX is awkward - whereas the rest of the world uses ‘rsh’ for the remote-shell command, HP-UX uses ‘remsh’. ‘rsh’ is some kind of restricted shell in HP parlance.</p>
<pre><code>box1> cd source_directory; tar cf - . | remsh box2 "cd target_directory; tar xf - "
</code></pre>
<p>The first tar command creates a file called ‘-’, which is a special token meaning ’standard output’ in this case. The archive created contains all the files in the current directory (.) plus all subdirectories (tar is recursive by default). This archive file is piped into the remsh command which sends it to the box2 machine. On box 2 I first change to the proper receiving directory, then I extract from ‘-’, or ’standard input’ the incoming files.</p>
<p>I had 6 of these tar commands running simultaneously to ensure the network link was saturated with data, although I suspect that disk access may have been the limiting factor.</p>
http://stackoverflow.com/questions/467973/best-way-to-copy-millions-of-files-between-2-servers/1062530#10625300Answer by bbqchickenrobot for Best way to copy millions of files between 2 serversbbqchickenrobot2009-06-30T08:50:26Z2009-06-30T08:50:26Z<p>Super Flexible may work for you as well. </p>