<?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: Linux NFS share extremely slow in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767304#M22740</link>
    <description>If you run rsync wuth stats output you will&lt;BR /&gt;likely find you aren't copying much.  I&lt;BR /&gt;use rsync to copy web logs as I only have&lt;BR /&gt;to copy the last hours worth of data on &lt;BR /&gt;each copy even though the file is growing.&lt;BR /&gt;With NFS I would have to copy the whole file.&lt;BR /&gt;As the weblogs rotate weekly it makes a &lt;BR /&gt;big difference at the end of the week.&lt;BR /&gt;&lt;BR /&gt;If copies run at differenct speeds depending&lt;BR /&gt;on which direction.  Read is fast but write is&lt;BR /&gt;slow or vice versa, it likely a duplex issue.&lt;BR /&gt;&lt;BR /&gt;You could enable async access to the share.&lt;BR /&gt;This risks loosing data if the server goes&lt;BR /&gt;down between the time it receives a block and&lt;BR /&gt;gets it written to disk.  A good UPS would &lt;BR /&gt;reduce that risk.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 07 Apr 2006 11:53:48 GMT</pubDate>
    <dc:creator>Bill Thorsteinson</dc:creator>
    <dc:date>2006-04-07T11:53:48Z</dc:date>
    <item>
      <title>Linux NFS share extremely slow</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767299#M22735</link>
      <description>I am exporting a ext3 FS from one Linux box (redhat ES 4.0 Update2) - has 1G interface&lt;BR /&gt;&lt;BR /&gt;to all other linux boxes also with 1g interface on the same Cisco 6509 blade.&lt;BR /&gt;&lt;BR /&gt;however the NFS tranfer crawls in comparison to a rsync job&lt;BR /&gt;&lt;BR /&gt;I mounted the clients with rsize=8192,wsize=8192 that does'nt help either.&lt;BR /&gt;&lt;BR /&gt;any ideas, I am at a dead end :-(</description>
      <pubDate>Thu, 06 Apr 2006 11:00:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767299#M22735</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2006-04-06T11:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Linux NFS share extremely slow</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767300#M22736</link>
      <description>But rsync only transfers modified files, have you ensured that the bytes transfers are the same when you do your tests?&lt;BR /&gt;&lt;BR /&gt;Try using udp as the protocol, also, not always a large block size is the best, you can try different values.&lt;BR /&gt;&lt;BR /&gt;Check the output of netstat -ni, check for collisions and errors, ensure that your switch and network adapter are negotiating the right speed, use ethtool for this.&lt;BR /&gt;&lt;BR /&gt;See also:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?topic=/com.ibm.aix.doc/aixbman/prftungd/nfscliprfmon.htm" target="_blank"&gt;http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?topic=/com.ibm.aix.doc/aixbman/prftungd/nfscliprfmon.htm&lt;/A&gt;</description>
      <pubDate>Thu, 06 Apr 2006 11:31:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767300#M22736</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-04-06T11:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Linux NFS share extremely slow</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767301#M22737</link>
      <description>i should have added that the rsync job transfered /opt/ to remote:/opt/ and there is no files on the remote&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Apr 2006 12:06:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767301#M22737</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2006-04-06T12:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: Linux NFS share extremely slow</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767302#M22738</link>
      <description>Since rsync works ni&lt;BR /&gt;&lt;BR /&gt;using UDP instead of TCP might speed things a bit. you might also increase the windows' size (for instance, I am using rsize=32768,wsize=32768,proto=tcp,soft). The best bet is to try different settings and see which one suits you.&lt;BR /&gt;Something else you might try (beware, it might not be convenient for you) is to mount the share with the "noatime" option. Other possible options are the "async" mode and writeback journaling.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Apr 2006 19:26:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767302#M22738</guid>
      <dc:creator>Manuel Wolfshant</dc:creator>
      <dc:date>2006-04-06T19:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: Linux NFS share extremely slow</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767303#M22739</link>
      <description>There is another problem...&lt;BR /&gt;You shouldn't have to change for UDP or window size to work perfectly !&lt;BR /&gt;Don't you have an automount problem or similar ?</description>
      <pubDate>Fri, 07 Apr 2006 02:18:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767303#M22739</guid>
      <dc:creator>cedber</dc:creator>
      <dc:date>2006-04-07T02:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: Linux NFS share extremely slow</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767304#M22740</link>
      <description>If you run rsync wuth stats output you will&lt;BR /&gt;likely find you aren't copying much.  I&lt;BR /&gt;use rsync to copy web logs as I only have&lt;BR /&gt;to copy the last hours worth of data on &lt;BR /&gt;each copy even though the file is growing.&lt;BR /&gt;With NFS I would have to copy the whole file.&lt;BR /&gt;As the weblogs rotate weekly it makes a &lt;BR /&gt;big difference at the end of the week.&lt;BR /&gt;&lt;BR /&gt;If copies run at differenct speeds depending&lt;BR /&gt;on which direction.  Read is fast but write is&lt;BR /&gt;slow or vice versa, it likely a duplex issue.&lt;BR /&gt;&lt;BR /&gt;You could enable async access to the share.&lt;BR /&gt;This risks loosing data if the server goes&lt;BR /&gt;down between the time it receives a block and&lt;BR /&gt;gets it written to disk.  A good UPS would &lt;BR /&gt;reduce that risk.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Apr 2006 11:53:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-nfs-share-extremely-slow/m-p/3767304#M22740</guid>
      <dc:creator>Bill Thorsteinson</dc:creator>
      <dc:date>2006-04-07T11:53:48Z</dc:date>
    </item>
  </channel>
</rss>

