From: | Andres Freund <andres(at)2ndquadrant(dot)com> |
---|---|
To: | Robert Haas <robertmhaas(at)gmail(dot)com> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: MVCC catalog access |
Date: | 2013-05-23 03:11:00 |
Message-ID: | 20130523031100.GB7149@alap2.anarazel.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On 2013-05-22 23:05:40 -0400, Robert Haas wrote:
> On Wed, May 22, 2013 at 11:02 PM, Andres Freund <andres(at)2ndquadrant(dot)com> wrote:
> > On 2013-05-22 22:51:13 -0400, Robert Haas wrote:
> >> In discussions today, Tom Lane suggested testing the time to start up
> >> a backend and run a simple query such as "SELECT 2+2" in the absence
> >> of a relcache file.
> >
> >> I did this and can't measure any overhead as a result of MVCC catalog
> >> access. I tried it with no active connections. I tried it with 600
> >> idle active connections (to make taking MVCC snapshots more
> >> expensive).
> >
> > Did you try it with the 600 transactions actually being in a transaction
> > and having acquired a snapshot?
>
> No... I can hack something up for that.
Make that actually having acquired an xid. We skip a large part of the
work if a transaction doesn't yet have one afair. I don't think the mere
presence of 600 idle connections without an xid in contrast to just
having max_connection at 600 should actually make a difference in the
cost of acquiring a snapshot?
Greetings,
Andres Freund
--
Andres Freund http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services
From | Date | Subject | |
---|---|---|---|
Next Message | Fujii Masao | 2013-05-23 07:10:52 | Re: WAL segments (names) not in a sequence |
Previous Message | Robert Haas | 2013-05-23 03:05:40 | Re: MVCC catalog access |