Re: filesystem performance with lots of files - Mailing list pgsql-performance

From Jim C. Nasby
Subject Re: filesystem performance with lots of files
Date
Msg-id 20051220195951.GL28771@pervasive.com
Whole thread Raw
In response to Re: filesystem performance with lots of files  (David Roussel <pgsql-performance@diroussel.xsmail.com>)
List pgsql-performance
On Tue, Dec 20, 2005 at 01:26:00PM +0000, David Roussel wrote:
> Note that you can do the taring, zipping, copying and untaring
> concurrentlt.  I can't remember the exactl netcat command line options,
> but it goes something like this
>
> Box1:
> tar czvf - myfiles/* | netcat myserver:12345
>
> Box2:
> netcat -listen 12345 | tar xzvf -

You can also use ssh... something like

tar -cf - blah/* | ssh machine tar -xf -
--
Jim C. Nasby, Sr. Engineering Consultant      jnasby@pervasive.com
Pervasive Software      http://pervasive.com    work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf       cell: 512-569-9461

pgsql-performance by date:

Previous
From: "Jim C. Nasby"
Date:
Subject: Re: separate drives for WAL or pgdata files
Next
From: "Jim C. Nasby"
Date:
Subject: Re: What's the best hardver for PostgreSQL 8.1?