All of lore.kernel.org
 help / color / mirror / Atom feed
* RE: async vs. sync
@ 2004-11-16 18:48 Lever, Charles
  2004-11-22 15:36 ` Olaf Kirch
  0 siblings, 1 reply; 65+ messages in thread
From: Lever, Charles @ 2004-11-16 18:48 UTC (permalink / raw)
  To: Trond Myklebust; +Cc: Olaf Kirch, nfs

> ty den 16.11.2004 Klokka 08:15 (-0800) skreiv Lever, Charles:
> > is the effect of the "sync" export option limited to NFSv3=20
> COMMIT, or is
> > it limited to both NFSv3 COMMIT and NFSv3 FILE_SYNC/DATA_SYNC WRITE?
> >=20
> > what are the effects on NFSv4 writes and commits?
>=20
> No! It is clearly not just limited to writes and commits.
>=20
> Look at the code in fs/nfs/vfs.c: there are EX_ISSYNC()=20
> exceptions that
> wrap calls to nfsd_sync_dir() in nfsd*_create(), nfsd_symlink(),
> nfsd_link(), nfsd_rename(), and nfsd_unlink().

ulp.  wow.  this clearly affects all versions of NFS on the Linux
server, then.

i'm just looking for clarification so i can provide a good explanation
in the Linux NFS FAQ about the evils of using "async."  i'll cruise
through the server code.



-------------------------------------------------------
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread
* RE: async vs. sync
@ 2004-11-24 19:05 Lever, Charles
  0 siblings, 0 replies; 65+ messages in thread
From: Lever, Charles @ 2004-11-24 19:05 UTC (permalink / raw)
  To: jehan.procaccia; +Cc: nfs

> However now the tar extraction goes very fast but stops 1 or=20
> 2  or  and=20
> restart fast -> there are some hangs. Here with a 16MB=20
> journal I got 15=20
> hangs of 1-2 seconds, with a 128 MB I get only 3 hangs but=20
> they last 4or=20
> 5 seconds. I checked at a momment of an hang on the nfs server with=20
> iostat, and disk utilisation goes from a few % to  316 % in=20
> the exemple=20
> below (for 128 MB journal withing the 4 seconds hangs it goes=20
> to 4700 % !)
> Device:    rrqm/s wrqm/s   r/s   w/s  rsec/s  wsec/s    rkB/s=20
>    wkB/s=20
> avgrq-sz avgqu-sz   await  svctm  %util
> /dev/emcpowerl2
>              0.00 150.67 97.33 224.00  768.00 3018.67   384.00 =20
> 1509.33    11.78    33.33   19.79   9.83 316.00
>=20
> Maybe it hangs because the journal commits on the SP ! ?

i'll leave that to NFS performance experts.  in general, increasing the
size of the journal means that the physical file system can handle a
higher transaction rate, so you are going in the right direction.  but i
don't have any specific knowlege about journal sizing best practices.

> Well, finally, is this safer in terms of performances to externalize=20
> journal than using async export ?

neil recommends mirroring the journal, but imho, that may not be
necessary.  if the journal disk goes bad, you can just fsck the RAID5
array and replace the journal disk.  otherwise, yes, you should use the
"sync" export option and a separate journal disk for best data integrity
and good performance.

> And is it possible to externalize a journal on an already=20
> existing ext3 FS or do we need to reformat it ?

i'm just guessing, but i think you can do this.  you should be able to
disable journaling on the existing FS, then re-enable it with the new
journal device.  naturally you should back up your file system before
trying anything.

> jehan procaccia wrote:
>=20
> > Lever, Charles wrote:
> >
> >>
> >> btw, it is fairly well understood that RAID-5 and NFS=20
> servers don't mix
> >> well.  RAID-5's weakest point is that it doesn't handle=20
> small random
> >> writes very well, and that's exactly what is required of it when
> >> handling NFS traffic that consists mostly of metadata changes (file
> >> creates, deletes, and so on).  neil explained clearly how=20
> to make the
> >> best use of a RAID-5 with NFS: do your local file system journaling
> >> somewhere else.
> >> =20
> >>
> > No, not yet, but  if it is safer and increase performances maybe I=20
> > should do it !
> >
> > Perhaps it's not the place to talk about ext3 here, but if=20
> someone on=20
> > the list did already put their journal on a separate device, please=20
> > confirm me those points:
> > From what I read on man mkefs for ext3 FS I can create a=20
> journal on a=20
> > separate FS :
> > mke2fs -O journal_dev external-journal
> > creates the journal FS, on which device ? -> internal scsi=20
> drive of my=20
> > server or better placed on the dell/EMC SP ?
> >
> > mke2fs -J device=3D/dev/external-journal /dev/emcpower
> > Format the FS and use the external journal just create=20
> above, but what=20
> > is the recommended size of the external journal ?  when journal is=20
> > internal it is said  the size of the journal must be at least 1024=20
> > filesystem blocks
> > (in my case blocks a 4K size) so journal is at least 4 Mb,=20
> but should=20
> > it be bigger ?
> >
> > Finally, can I "externalize" an already internal journal from=20
> > production FS  (convert journal from inside to outside without=20
> > reformating the FS ) ?
> >
> > thanks.
> >
> >
> >> when trying your workload locally on the NFS server,=20
> realize that there
> >> are some optimizations that local file systems make, like=20
> caching and
> >> coalescing metadata updates, that the NFS protocol does=20
> not allow.  this
> >> affects especially workloads with lots of metadata change=20
> operations,
> >> because the NFS protocol requires each metadata update to reside on
> >> permanent storage before the NFS server replies to the client,
> >> effectively serializing the workload with storage activity.
> >> =20
> >>
> >
> >
> >
> > -------------------------------------------------------
> > SF email is sponsored by - The IT Product Guide
> > Read honest & candid reviews on hundreds of IT Products=20
> from real users.
> > Discover which products truly live up to the hype. Start=20
> reading now.=20
> > http://productguide.itmanagersjournal.com/
> > _______________________________________________
> > NFS maillist  -  NFS@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/nfs
>=20
>=20
>=20


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread
* RE: async vs. sync
@ 2004-11-23 16:36 Lever, Charles
  2004-11-23 18:16 ` Dan Stromberg
  0 siblings, 1 reply; 65+ messages in thread
From: Lever, Charles @ 2004-11-23 16:36 UTC (permalink / raw)
  To: Dan Stromberg; +Cc: nfs

> On Mon, 2004-11-22 at 19:53, Lever, Charles wrote:
> > > > not to mention "soft" mounts are also truly the spawn of satan.
> > >=20
> > > Unless your filesystem is also readonly...
> >=20
> > unfortunately that is a myth.  even a readonly file system can fall=20
> > victim to the evils of soft mounts, i'm told.
>=20
> Ummmm...  How?
>=20
> About all that can happen, is you lose the mount.  You pretty much
> -can't- toast any data.
>=20
> > the cached version of the file on the client can become=20
> corrupted if=20
> > the file is changing remotely and one or more cache-refresh reads=20
> > times out.
>=20
> In which case it wasn't truly read only....

let's be precise.

there is only one case where a soft mount won't cause data corruption.
that is when the local file system on the server is mounted read only
and exported read only, and the client mounts the NFS export read only.

maybe good for sharing CD-ROMs via NFS, but otherwise not terribly
useful.


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread
* RE: async vs. sync
@ 2004-11-23 14:30 Lever, Charles
  2004-11-23 21:46 ` jehan procaccia
  0 siblings, 1 reply; 65+ messages in thread
From: Lever, Charles @ 2004-11-23 14:30 UTC (permalink / raw)
  To: jehan procaccia; +Cc: nfs

> This is what I expect in term of performances . I will continue my=20
> requests on the DEll/EMC hotline , but maybe the security of=20
> that AX100=20
> storage Processor (raid5, spare disk, double fiber attachement, UPS)=20
> allows me to use async export mode in such a case ?

the "async" export option changes the behavior of the NFS server
daemons, not of the underlying local file system or storage subsystem.
the problem is that changes made by clients will remain in your NFS
server's memory and not get flushed onto permanent storage.

so, i really don't think the storage subsystem will have any effect on
the safety of your data before the data reaches permanent storage.  as
someone else pointed out earlier, the solution is to use battery-backed
main memory when using "async" (prestoserve for solaris?).

as trond said, if your users and backup facilities can tolerate the loss
of data during a crash, then it is perfectly fine to use "async."  most
don't, however.

btw, it is fairly well understood that RAID-5 and NFS servers don't mix
well.  RAID-5's weakest point is that it doesn't handle small random
writes very well, and that's exactly what is required of it when
handling NFS traffic that consists mostly of metadata changes (file
creates, deletes, and so on).  neil explained clearly how to make the
best use of a RAID-5 with NFS: do your local file system journaling
somewhere else.

when trying your workload locally on the NFS server, realize that there
are some optimizations that local file systems make, like caching and
coalescing metadata updates, that the NFS protocol does not allow.  this
affects especially workloads with lots of metadata change operations,
because the NFS protocol requires each metadata update to reside on
permanent storage before the NFS server replies to the client,
effectively serializing the workload with storage activity.


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread
* RE: async vs. sync
@ 2004-11-23  3:53 Lever, Charles
  2004-11-23 16:33 ` Dan Stromberg
  0 siblings, 1 reply; 65+ messages in thread
From: Lever, Charles @ 2004-11-23  3:53 UTC (permalink / raw)
  To: Dan Stromberg; +Cc: nfs

> > not to mention "soft" mounts are also truly the spawn of satan.
>=20
> Unless your filesystem is also readonly...

unfortunately that is a myth.  even a readonly file system can fall
victim to the evils of soft mounts, i'm told.

the cached version of the file on the client can become corrupted if the
file is changing remotely and one or more cache-refresh reads times out.


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread
* RE: async vs. sync
@ 2004-11-22 22:14 Lever, Charles
  0 siblings, 0 replies; 65+ messages in thread
From: Lever, Charles @ 2004-11-22 22:14 UTC (permalink / raw)
  To: jehan procaccia; +Cc: nfs


> >>[root@arvouin tmp]# mount cobra3:/p2v5f1 -o=20
> >>async,wsize=3D32768,rsize=3D32768,soft /mnt/cobra3
> >
> >um.  you're not using NFS version 3?
> >
> I though it was a default !?

in Linux, only on more recent mount command / kernel combinations is
version 3 the default.

> >not to mention "soft" mounts are also truly the spawn of satan.
> > =20
> >
> OK I remove it, and force nfs v3

note:  soft is probably not a performance issue here, but it will
definitely be a source of silent data corruption.

> However what stricks me is that although I asked for r&wsize=20
> of 32 K ,=20
> looking at /proc/mounts show :
> $cat /proc/mounts
> cobra3:/p2v5f1 /mnt/cobra3 nfs=20
> rw,v3,rsize=3D8192,wsize=3D8192,hard,tcp,lock,addr=3Dcobra3 0 0
>=20
> 8 K r&wsize ??? I also tried with 16K it's still shows 8K ?

that means your server supports only 8KB transfer sizes.  the client and
server negotiate the maximum size of reads and writes at mount time.

have you read some of the excellent reference textbooks listed in the
NFS FAQ?  that might help you to become a little more fluent with the
operation of NFS.

> howerver=20
> moving from soft to hard did shows up in /proc/mounts .
> Again, How can we check every options of an NFS mounted filesystem on=20
> the client side ? (other than /proc/mountd) .

some options don't show up when they are at their default settings.
no-one ever specifies "async" as a mount option, as it is the default,
so it is not included in /proc/mounts.  NFS version isn't listed in
/proc/mounts unless it was specified on the original mount command.
otherwise, i quite agree with you that every setting should be spelled
out in /proc/mounts, but unfortunately that's not the way it works
today.

the only way to truly see what's going on is to capture a network trace
and load it up in ethereal.  in fact, i recommend that as your next step
-- capture about 30 seconds of your test workload with tcpdump to see
what's going over the wire.  ethereal also has a nice RPC round trip
average calculator.


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread
[parent not found: <20041122214605.8E2B31D0FE1@sc8-sf-uberspam1.sourceforge.net>]
* RE: async vs. sync
@ 2004-11-22 21:50 Lever, Charles
  2004-11-22 22:06 ` jehan procaccia
  2004-11-23  1:09 ` Dan Stromberg
  0 siblings, 2 replies; 65+ messages in thread
From: Lever, Charles @ 2004-11-22 21:50 UTC (permalink / raw)
  To: jehan procaccia; +Cc: nfs

> [root@arvouin tmp]# mount cobra3:/p2v5f1 -o=20
> async,wsize=3D32768,rsize=3D32768,soft /mnt/cobra3

um.  you're not using NFS version 3?

not to mention "soft" mounts are also truly the spawn of satan.


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread
* RE: async vs. sync
@ 2004-11-22 19:02 Lever, Charles
  2004-11-22 21:25 ` jehan procaccia
  0 siblings, 1 reply; 65+ messages in thread
From: Lever, Charles @ 2004-11-22 19:02 UTC (permalink / raw)
  To: jehan.procaccia; +Cc: nfs, mci-unix

> in my old solaris 7 nfs it was async I suppose ! although we=20
> didn't lose data, maybe we where risking it ... ?

the Solaris NFS server doesn't support an "async" mode.

> anyway now I move from and old=20
> solaris NFS server to a brand new linux one with a SAN=20
> (AX100) Storage=20
> Processor in Raid 5 an Fiber Channel attachement, how can I support=20
> performances more than 50 times longer :-( with that config, =20
> user and=20
> manager wil tell me that I  spoild money on that new server !, there=20
> must be a misconfiguration somewhere ?.

take a walk through the NFS how-to http://nfs.sourceforge.net/howto/ to
see if there is anything useful there.

also, you could measure your file system performance locally on the NFS
server instead of via an NFS client to see if your RAID and local file
system is configured correctly.

finally, you should look at raw network performance between your clients
and server to make sure you are not losing any performance there.


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread
* RE: async vs. sync
@ 2004-11-22 18:31 Lever, Charles
  0 siblings, 0 replies; 65+ messages in thread
From: Lever, Charles @ 2004-11-22 18:31 UTC (permalink / raw)
  To: Roger Heflin, jehan.procaccia; +Cc: nfs, mci-unix

> If you put sync in both locations then your NFS disk is fully=20
> synced and=20
> the application won't even start another write until the last=20
> one is confirmed
> finished and on the actual disk.   With async on the client=20
> end the next
> write=20
> will start before the client has received an ack from the=20
> server, and this will be reasonably fast.
>=20
> So basically:
>=20
> exports          mount
> sync             sync      -> really safe and really slow
> sync             async     -> Safe and fast
> async            either    -> unsafe and fast.
>=20
> Running async exports and async mount did not appear (under=20
> my testing) to be faster under a sustained load than did sync=20
> exports and async mount. When the initial test was started=20
> async/async was faster but that quick changed once the buffer=20
> cache filled up.

the "async" setting on the client side is the default.  using the "sync"
mount option on the client side will be slow no matter what.

the recommended settings are:

1. don't use the "sync" mount option on the client unless your
application requires it

2. always use the "sync" export option (with newer nfs-utils, this is
the default).


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread
* RE: async vs. sync
@ 2004-11-16 18:45 Lever, Charles
  0 siblings, 0 replies; 65+ messages in thread
From: Lever, Charles @ 2004-11-16 18:45 UTC (permalink / raw)
  To: jehan.procaccia; +Cc: nfs

> Is it really dangerous to use async ? why recent OS uses sync=20
> by default (My client is a Fedora Core 2 (kernel 2.6)  and
> server an RedHat Entreprise server 3 (kernel 2.4))

see the NFS FAQ:

  http://nfs.sourceforge.net/

questions B4 and B5, at least.


-------------------------------------------------------
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread
* RE: async vs. sync
@ 2004-11-16 16:15 Lever, Charles
  2004-11-16 16:32 ` Trond Myklebust
  0 siblings, 1 reply; 65+ messages in thread
From: Lever, Charles @ 2004-11-16 16:15 UTC (permalink / raw)
  To: Olaf Kirch; +Cc: nfs

is the effect of the "sync" export option limited to NFSv3 COMMIT, or is
it limited to both NFSv3 COMMIT and NFSv3 FILE_SYNC/DATA_SYNC WRITE?

what are the effects on NFSv4 writes and commits?

> -----Original Message-----
> From: Olaf Kirch [mailto:okir@suse.de]
> Sent: Wednesday, July 28, 2004 4:57 AM
> To: Bernd Schubert
> Cc: nfs@lists.sourceforge.net
> Subject: Re: [NFS] async vs. sync
>=20
>=20
> Hi,
>=20
> the way the sync export option affects NFSv3 writes is
> limited to COMMITs, so if you see a slow-down here it must be=20
> bottle-necking in that part of the code.


-------------------------------------------------------
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread
[parent not found: <482A3FA0050D21419C269D13989C61130435E530@lavender-fe.eng.netapp.com>]
* Re: async vs. sync
@ 2004-07-26 23:05 John Roberts
  0 siblings, 0 replies; 65+ messages in thread
From: John Roberts @ 2004-07-26 23:05 UTC (permalink / raw)
  To: nfs; +Cc: bernd-schubert, john_roberts


>At least its good to know that we are not alone. Well, I do know about the 
>performance decrease of sync-exports for a pretty long time, but I was never 
>sure if its not only a problem of our server (the previous one was a 
>PII-450).

We definitely see the same problem of sync-exports _much_ slower (4x to 7x-ish)
on our network (Dell 340 and 340 workstations with 2.2 GHz Pentium IVs).

We've switched to using async when serving up our Linux volumes.


>So I really don't think that the server performance is the problem.

I absolutely agree.  In fact, I've observed that Linux clients
are _faster_ writing to slower Solaris servers than fast ones.

On a 400 MHz Sun Ultra-5 I was using as a server was 4x _faster_
than a 1.5 GHz SunBlade 2500 system.

My observation is the faster the Solaris server, the slower
the Linux NFS client (writes only).

I don't know if the whole Linux-to-Solaris write issue
can be explained by the number of COMMIT requests.
Solaris clients only issue a COMMIT request when the
file is closed or when the client's buffer cache is
flushed by memory management operations (like pageout).

However Linux client issues one COMMIT for every 32
writes, and for a 32K block size, that's one COMMIT
for every 1 Mbyte of data.

Those extra COMMITs must affect performance, but I still
think there's something else going on.



John Roberts

john_roberts@credence.com




-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread
[parent not found: <482A3FA0050D21419C269D13989C61130435E523@lavender-fe.eng.netapp.com>]
[parent not found: <482A3FA0050D21419C269D13989C61130435E51E@lavender-fe.eng.netapp.com>]
* Linux NFS writes to Solaris very, very slow
@ 2004-07-23 16:20 John Roberts
  2004-07-26 15:17 ` async vs. sync Bernd Schubert
  0 siblings, 1 reply; 65+ messages in thread
From: John Roberts @ 2004-07-23 16:20 UTC (permalink / raw)
  To: nfs; +Cc: john_roberts


Hi there,

I work in Hillsboro, Oregon, USA for Credence Systems Corporation (as a
software engineer) and we use the Redhat Enterprise 3 (2.4.21 kernel,
a Redhat hodgepodge with some 2.6 stuff) distribution on our
x86 PCs.

We're on a network with lots of Sun systems and a central file
server that is a Veritas cluster of twin SunFire servers running
Solaris 2.8.

What we've observed is that NFS writes from our Linux boxes to
the Solaris server (and other Solaris workstations) is _very_
slow.  Reads seem to be operating at a reasonable speed.
FTP speeds are blazing (protocol below NFS).

On a completely seperate note, Linux-to-Linux NFS file writes
only seem to be fast if we publish the serving Linux volume
as asynchronous (default setting is synchronous which is slow).

I'm curious if anyone has any ideas on what I should do regarding
the slow nature of Linux clients to Solaris servers over NFS?
I don't know if anybody has encountered this or if anyone in the
Linux kernel community is looking at it.

Any thoughts/advice would be _greatly_ appreciated.

thanks,


John Roberts
john_roberts@credence.com




-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 65+ messages in thread

end of thread, other threads:[~2004-12-01 17:27 UTC | newest]

Thread overview: 65+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-16 18:48 async vs. sync Lever, Charles
2004-11-22 15:36 ` Olaf Kirch
2004-11-22 17:55   ` jehan.procaccia
2004-11-22 18:06     ` Roger Heflin
2004-11-22 18:46       ` jehan.procaccia
2004-11-22 19:10         ` Roger Heflin
2004-11-22 21:44           ` jehan procaccia
2004-11-22 21:52             ` jehan procaccia
2004-11-22 22:20               ` Trond Myklebust
2004-11-22 22:57                 ` jehan procaccia
2004-11-23  9:50                   ` jehan procaccia
2004-11-23 14:57                     ` J. Bruce Fields
2004-11-22 18:08     ` Trond Myklebust
2004-11-22 18:57       ` jehan.procaccia
2004-11-22 19:05         ` Roger Heflin
2004-11-22 20:14         ` Trond Myklebust
2004-11-22 21:04           ` Paul Cunningham
2004-11-22 21:14             ` Trond Myklebust
2004-11-22 22:07               ` Paul Cunningham
2004-11-22 22:26                 ` Trond Myklebust
2004-11-22 22:34     ` Configuring NFS service for speed - " Neil Brown
2004-11-22 23:36       ` jehan procaccia
  -- strict thread matches above, loose matches on Subject: below --
2004-11-24 19:05 Lever, Charles
2004-11-23 16:36 Lever, Charles
2004-11-23 18:16 ` Dan Stromberg
2004-11-23 14:30 Lever, Charles
2004-11-23 21:46 ` jehan procaccia
2004-11-24 18:45   ` jehan.procaccia
2004-11-24 22:24     ` Neil Brown
2004-11-24 23:14       ` jehan procaccia
2004-11-24 23:34         ` Neil Brown
2004-11-24 22:09   ` Neil Brown
     [not found]   ` <Pine.GSO.4.53.0412010900500.5486@int1.cdc.noaa.gov>
2004-12-01 17:27     ` jehan.procaccia
2004-11-23  3:53 Lever, Charles
2004-11-23 16:33 ` Dan Stromberg
2004-11-22 22:14 Lever, Charles
     [not found] <20041122214605.8E2B31D0FE1@sc8-sf-uberspam1.sourceforge.net>
2004-11-22 21:57 ` Joshua Baker-LePain
2004-11-22 21:50 Lever, Charles
2004-11-22 22:06 ` jehan procaccia
2004-11-23  1:09 ` Dan Stromberg
2004-11-22 19:02 Lever, Charles
2004-11-22 21:25 ` jehan procaccia
2004-11-22 21:45   ` Nicolas.Kowalski
2004-11-22 23:51     ` jehan procaccia
2004-11-22 18:31 Lever, Charles
2004-11-16 18:45 Lever, Charles
2004-11-16 16:15 Lever, Charles
2004-11-16 16:32 ` Trond Myklebust
2004-11-16 17:18   ` jehan.procaccia
2004-11-16 18:08     ` Trond Myklebust
     [not found] <482A3FA0050D21419C269D13989C61130435E530@lavender-fe.eng.netapp.com>
2004-07-27 15:07 ` Bernd Schubert
2004-07-26 23:05 John Roberts
     [not found] <482A3FA0050D21419C269D13989C61130435E523@lavender-fe.eng.netapp.com>
2004-07-26 21:28 ` Bernd Schubert
     [not found] <482A3FA0050D21419C269D13989C61130435E51E@lavender-fe.eng.netapp.com>
2004-07-26 17:05 ` Bernd Schubert
2004-07-26 19:47   ` Jan Bruvoll
2004-07-26 22:06     ` Bernd Schubert
2004-07-27 12:00       ` Jan Bruvoll
2004-07-27 13:00         ` Bernd Schubert
2004-07-27 13:56           ` raven
2004-07-27 14:04             ` Jan Bruvoll
2004-07-27 14:11           ` Jan Bruvoll
2004-07-28  8:56       ` Olaf Kirch
2004-07-28 12:35         ` Bernd Schubert
2004-07-28 12:49           ` Olaf Kirch
2004-07-23 16:20 Linux NFS writes to Solaris very, very slow John Roberts
2004-07-26 15:17 ` async vs. sync Bernd Schubert

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.