Re: Performance penalty for remote access of postgresql (8.1.3)? any experiance? - Mailing list pgsql-performance

From Guoping Zhang
Subject Re: Performance penalty for remote access of postgresql (8.1.3)? any experiance?
Date
Msg-id 003501c6ab05$a4978f20$74304c93@eddy
Whole thread Raw
In response to Re: Performance penalty for remote access of postgresql (8.1.3)? any experiance?  (Florian Weimer <fweimer@bfk.de>)
Responses Re: Performance penalty for remote access of postgresql (8.1.3)? any experiance?  (Florian Weimer <fweimer@bfk.de>)
Re: Performance penalty for remote access of postgresql (8.1.3)? any experiance?  (Stephen Frost <sfrost@snowman.net>)
Re: Performance penalty for remote access of postgresql  (Bill Moran <wmoran@collaborativefusion.com>)
List pgsql-performance
Hi, Florian

Thanks for pointing me the cause, but we simply cannot use the COPY FROM
solution.

Currently, our application service is running with its own dedicated local
database, IF Feasible, we want to separate the application services out of
database server and run SEVERAL instances of applation serivice on its own
server (one per server), and make them all shall one database server. This
helps to the scalability and also reduce the device cost as only database
server would need mirror/backup/UPS etc.

Obviously, if there is no better solution, the TCP round trip penalty will
stop us doing so as we do have performance requirement.

I guess there shall be quite number of people out there facing the similar
problem, right? No alternative solution?

Regards,
Guoping Zhang






-----Original Message-----
From: Florian Weimer [mailto:fweimer@bfk.de]
Sent: 2006Ae7OA19EO 16:30
To: guoping.zhang@nec.com.au
Cc: pgsql-performance@postgresql.org; Guoping Zhang (E-mail)
Subject: Re: [PERFORM] Performance penalty for remote access of
postgresql (8.1.3)? any experiance?


* Guoping Zhang:

>   a) Anyone has the similar experience? How do you deal with it?
>   b) Why TCP stack imposes such big delay? any tuning point I shall do?

If you use INSERT, you'll incur a network round-trip delay for each
record.  Try using COPY FROM instead, possibly to a temporary table if
you need more complex calculations.  If you do this, there won't be a
huge difference between local and remote access as long as the
bandwidth is sufficient.

--
Florian Weimer                <fweimer@bfk.de>
BFK edv-consulting GmbH       http://www.bfk.de/
Durlacher Allee 47            tel: +49-721-96201-1
D-76131 Karlsruhe             fax: +49-721-96201-99


pgsql-performance by date:

Previous
From: Florian Weimer
Date:
Subject: Re: Performance penalty for remote access of postgresql (8.1.3)? any experiance?
Next
From: Florian Weimer
Date:
Subject: Re: Performance penalty for remote access of postgresql (8.1.3)? any experiance?