Re: odd postgresql performance (excessive lseek) - Mailing list pgsql-performance

From Tom Lane
Subject Re: odd postgresql performance (excessive lseek)
Date
Msg-id 7674.1288151861@sss.pgh.pa.us
Whole thread Raw
In response to Re: odd postgresql performance (excessive lseek)  (Robert Haas <robertmhaas@gmail.com>)
List pgsql-performance
Robert Haas <robertmhaas@gmail.com> writes:
> On Tue, Oct 19, 2010 at 10:36 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
>> Those lseeks are for the purpose of detecting the current EOF
>> location, ie, finding out whether some other backend has extended the
>> file recently. �We could get rid of them, but only at the cost of
>> putting in some other communication mechanism instead.

> I don't get it.  Why would be doing that in a tight loop within a
> single backend?

Well, we weren't shown any context whatsoever about what the backend was
actually doing ... but for example the planner likes to recheck the
current physical size of each relation in a query, so that it's working
with an up-to-date number.  That could probably be avoided, since an
estimate would be good enough as long as it wasn't horribly stale.
But there are other places that *have* to have the accurate size, like
seqscan startup.  I doubt it was as tight a loop as all that.  It
wouldn't be hard at all to have an example where those lseeks are the
only operations visible to strace, if all the data the backend needs is
in shared buffers.

            regards, tom lane

pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: HashJoin order, hash the large or small table? Postgres likes to hash the big one, why?
Next
From: Rob Wultsch
Date:
Subject: Re: BBU Cache vs. spindles