From: | Robert Haas <robertmhaas(at)gmail(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>, Haribabu Kommi <kommi(dot)haribabu(at)gmail(dot)com>, Jing Wang <jingwangian(at)gmail(dot)com>, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>, "Tsunakawa, Takayuki" <tsunakawa(dot)takay(at)jp(dot)fujitsu(dot)com> |
Subject: | Re: Libpq support to connect to standby server as priority |
Date: | 2018-11-21 14:05:08 |
Message-ID: | CA+TgmoY7hRUJyAsDAwgrJVxNVjPgBD50jBccd5795=KQdNz8fw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Fri, Nov 16, 2018 at 11:35 AM Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> Oh! The reason I assumed it wasn't doing that is that such a behavior
> seems completely insane. If the point is to keep down the load on your
> master server, then connecting only to immediately disconnect is not
> a friendly way to do that --- even without counting the fact that you
> might later come back and connect again.
That seems like a really weak argument. Opening a connection to the
master surely isn't free, but it must be vastly cheaper than the cost
of the queries you intend to run. I mean, no reasonable production
user of PostgreSQL opens a connection, runs one or two short queries,
and then closes the connection. You open a connection and keep it
open for minutes, hours, days, or longer, running hundreds, thousands,
or millions of queries. The cost of checking whether you've got a
master or a standby is a drop in the bucket.
And, I mean, if there's some scenario where what I just said isn't
true, well then don't use this feature in that particular case.
--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
From | Date | Subject | |
---|---|---|---|
Next Message | David Rowley | 2018-11-21 14:13:36 | Re: Small performance tweak to run-time partition pruning |
Previous Message | Christoph Berg | 2018-11-21 13:28:01 | Re: [PATCH] Pass COPT and PROFILE to CXXFLAGS as well |