<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: looking to improve remote replication process. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866576#M277612</link>
    <description>It depends on the bandwidth of your network to remote server.&lt;BR /&gt;&lt;BR /&gt;If you have enough space on the local server then you can compress before you copy to remote server.&lt;BR /&gt;&lt;BR /&gt;you can use scp which is secure copy over the network.</description>
    <pubDate>Wed, 20 Sep 2006 12:36:13 GMT</pubDate>
    <dc:creator>IT_2007</dc:creator>
    <dc:date>2006-09-20T12:36:13Z</dc:date>
    <item>
      <title>looking to improve remote replication process.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866575#M277611</link>
      <description>&lt;BR /&gt;looking for solution to replicate 1.5GB files to a remote location...&lt;BR /&gt;Currently, this process looks like the following:&lt;BR /&gt;&lt;BR /&gt;move 1.5GB files into a staging area.&lt;BR /&gt;compress files.&lt;BR /&gt;rsync files to remote server.&lt;BR /&gt;remove compressed files.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have performed some timings, and compress seems more efficent over gzip.&lt;BR /&gt;&lt;BR /&gt;Is there an efficient way to move and compress in a single step?&lt;BR /&gt;wondering how to improve process listed above...&lt;BR /&gt;thanks &lt;BR /&gt;</description>
      <pubDate>Wed, 20 Sep 2006 12:33:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866575#M277611</guid>
      <dc:creator>Manuel Contreras</dc:creator>
      <dc:date>2006-09-20T12:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: looking to improve remote replication process.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866576#M277612</link>
      <description>It depends on the bandwidth of your network to remote server.&lt;BR /&gt;&lt;BR /&gt;If you have enough space on the local server then you can compress before you copy to remote server.&lt;BR /&gt;&lt;BR /&gt;you can use scp which is secure copy over the network.</description>
      <pubDate>Wed, 20 Sep 2006 12:36:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866576#M277612</guid>
      <dc:creator>IT_2007</dc:creator>
      <dc:date>2006-09-20T12:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: looking to improve remote replication process.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866577#M277613</link>
      <description>Hi Manuel,&lt;BR /&gt;&lt;BR /&gt;You could use a named pipe:&lt;BR /&gt;&lt;BR /&gt;mkfifo cmp_pipe&lt;BR /&gt;sleep 5&lt;BR /&gt;nohup tar cvf - /path/to/files/* | compress -c - &amp;gt; cmp_pipe &amp;amp;&lt;BR /&gt;# copy to remote server...&lt;BR /&gt;wait&lt;BR /&gt;rm -f cmp_pipe&lt;BR /&gt;&lt;BR /&gt;PCS&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Sep 2006 13:06:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866577#M277613</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2006-09-20T13:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: looking to improve remote replication process.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866578#M277614</link>
      <description>I am gathering some stats on sending compressed vs non-compressed file to remote box.&lt;BR /&gt;It may make more sense to compress at remote box...&lt;BR /&gt;&lt;BR /&gt;Will post stats on copy later, but the compression stats are as follows:&lt;BR /&gt;&lt;BR /&gt;# time /usr/bin/compress bigFILE&lt;BR /&gt;&lt;BR /&gt;real     2:29.3&lt;BR /&gt;user     1:46.6&lt;BR /&gt;sys        23.2&lt;BR /&gt;&lt;BR /&gt;# ll  &lt;BR /&gt;-rw-r-----   1 root       sys        549384653 Sep 20 10:10 bigFILE.Z&lt;BR /&gt;&lt;BR /&gt;1566427136-549384653&lt;BR /&gt;1017042483 amt. compressed&lt;BR /&gt;1017042483/149 sec&lt;BR /&gt;&lt;BR /&gt;6825788.47 per sec&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;gzip file:&lt;BR /&gt;&lt;BR /&gt;# time /usr/local/bin/gzip bigFILE&lt;BR /&gt;real     5:02.2&lt;BR /&gt;user     4:21.2&lt;BR /&gt;sys        22.5&lt;BR /&gt;# ll&lt;BR /&gt;total 778816&lt;BR /&gt;-rw-r-----   1 root       sys        398751664 Sep 20 10:10 bigFILE.gz&lt;BR /&gt;&lt;BR /&gt;1566427136-398751664&lt;BR /&gt;1167675472 amt. compressed&lt;BR /&gt;1167675472/302 sec&lt;BR /&gt;&lt;BR /&gt;3866475.07 per sec</description>
      <pubDate>Wed, 20 Sep 2006 13:15:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866578#M277614</guid>
      <dc:creator>Manuel Contreras</dc:creator>
      <dc:date>2006-09-20T13:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: looking to improve remote replication process.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866579#M277615</link>
      <description>Compress is more efficient in time to compress, but, as you can see, gzip does a better job of compressing the data. Testing I did a couple of years ago on a project showed it was best to compress (I think I had to opt for compress because the process had to work on older 10.20 systems also, which did not have gzip installed) before transferring files unless you had at least 100Mbps full-duplex bandwidth between the systems. At that point, the cost of compressing the files negated the benefit of transferring less data.</description>
      <pubDate>Wed, 20 Sep 2006 13:30:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866579#M277615</guid>
      <dc:creator>Jeff_Traigle</dc:creator>
      <dc:date>2006-09-20T13:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: looking to improve remote replication process.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866580#M277616</link>
      <description>since rsync performes compression in-flight, it likes uncompressed files:&lt;BR /&gt;&lt;BR /&gt;stats on sending compressed file:&lt;BR /&gt;(your milage may vary :D )&lt;BR /&gt;&lt;BR /&gt; 551499.52 bytes/sec&lt;BR /&gt;total size is 549384653  speedup is 1.00&lt;BR /&gt;&lt;BR /&gt;real    16m35.83s&lt;BR /&gt;user    0m10.71s&lt;BR /&gt;sys     0m30.54s&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;uncompressed file:&lt;BR /&gt;&lt;BR /&gt;  1566427136 100%    2.08MB/s    0:11:58 (xfer#1, to-check=0/1)&lt;BR /&gt;&lt;BR /&gt;sent 42 bytes  received 397960981 bytes  552340.07 bytes/sec&lt;BR /&gt;total size is 1566427136  speedup is 3.94&lt;BR /&gt;&lt;BR /&gt;real    12m0.30s&lt;BR /&gt;user    0m56.81s&lt;BR /&gt;sys     0m28.56s&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;How about the best of both worlds?&lt;BR /&gt;rsync uncompressed file, and gzip on remote box...sounds good to me :D</description>
      <pubDate>Wed, 20 Sep 2006 13:50:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/looking-to-improve-remote-replication-process/m-p/3866580#M277616</guid>
      <dc:creator>Manuel Contreras</dc:creator>
      <dc:date>2006-09-20T13:50:34Z</dc:date>
    </item>
  </channel>
</rss>

