- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- NFS client - ASYNC write
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2009 11:34 AM
07-28-2009 11:34 AM
NFS client - ASYNC write
I've exported the share using ASYNC, but it seems there is something else I'm missing. I mounted the share and used vi to write a character to a file. Using Wireshark, I can see that the client is sending FILE_SYNC rather than ASYNC.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2009 04:57 PM
07-28-2009 04:57 PM
Re: NFS client - ASYNC write
Have you tried using other applications to send WRITE data to the server other than vi? It could be the way vi is issuing the write that causes the FILE_SYNC semantics. I know there are different ways to write data on other platforms, like mmap(), that cause synchronous semantics.
Do you see the same behavior with something like cp? Also, are you using default NFS mount options? If not, what options are you using to mount the filesystem?
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2009 02:00 PM
08-03-2009 02:00 PM
Re: NFS client - ASYNC write
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2009 02:05 PM
08-03-2009 02:05 PM
Re: NFS client - ASYNC write
Also, what OS is running on the NFS client and server?
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2009 02:58 PM
08-03-2009 02:58 PM
Re: NFS client - ASYNC write
/mnt/1 from e4s01:/mnt/1
Flags: rw,vers=3,rsize=32768,wsize=32768,hard,proto=tcp,timeo=600,retrans=2,sec=sys,addr=e4s01
Client OS: CENTOS5 (linux kernel 2.6.18-128)
Server OS: RHEL5 (linux kernel 2.6.18-92)
I may not have been clear with my previous post. I was able to force the desired condition by sending a large WRITE request. My guess is that the other requests were just too small.