Re: odd postgresql performance (excessive lseek)

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: odd postgresql performance (excessive lseek)
Дата
Msg-id 7674.1288151861@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: odd postgresql performance (excessive lseek)  (Robert Haas <robertmhaas@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: HashJoin order, hash the large or small table? Postgres likes to hash the big one, why?
Следующее
От: Rob Wultsch
Дата:
Сообщение: Re: BBU Cache vs. spindles