Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 May 2002 05:04:13 +0200
From:      Matthias Buelow <mkb@mukappabeta.de>
To:        Peter Leftwich <Hostmaster@Video2Video.Com>
Cc:        Dan Nelson <dnelson@allantgroup.com>, FreeBSD LIST <FreeBSD-Questions@FreeBSD.Org>
Subject:   Re: mv vs. tar [overlapping]
Message-ID:  <20020530030413.GA1063@altair.mukappabeta.net>
In-Reply-To: <20020529223005.O79882-100000@earl-grey.cloud9.net>
References:  <20020530022609.GA956@altair.mukappabeta.net> <20020529223005.O79882-100000@earl-grey.cloud9.net>

next in thread | previous in thread | raw e-mail | index | archive | help
Peter Leftwich writes:

>Actually, it's an interesting point... I think what Dan means is that read
>and write processes run concurrently (have you ever run multiple HTTP
>requests at once? it's a lot like that I suppose).  So it would seem
>tarring is quickest when moving a directory within the same filesystem!

It of course _may be_ that this method exploits a certain advantage
in how blocks are read/written from/to the same disk (or two disks.)
It certainly adds some (fixed) computational overhead, which would
be measurable on something like an old VAX-based machine but which
should basically have no reasonable effect on today's modern
processors.  However.  Without (even empirical) proof, I somehow
doubt that there is much difference in I/O-performance between
reading and writing blocks in one process and doing the same in two
different ones; I mean, the disk doesn't seek faster all of a sudden
because of that, and if you read n blocks in process 1, and write
them in process 2, or do the same in one process, it should be quite
the same.  There might be a point when the files are mostly in the
buffer cache and the cache can be accessed simultaneously without
interference by two processes running each on a different processor
on a SMP system but then again, that might be a bit far-fetched.

--mkb


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020530030413.GA1063>