Re: vacuum, performance, and MVCC

Поиск
Список
Период
Сортировка
От Zeugswetter Andreas DCP SD
Тема Re: vacuum, performance, and MVCC
Дата
Msg-id E1539E0ED7043848906A8FF995BDA579011EFF56@m0143.s-mxs.net
обсуждение исходный текст
Ответ на vacuum, performance, and MVCC  ("Mark Woodward" <pgsql@mohawksoft.com>)
Ответы Re: vacuum, performance, and MVCC  (Csaba Nagy <nagy@ecircle-ag.com>)
Список pgsql-hackers
> > This could be a solution... but then I'm not sure how well would do
> > queries which need the first 10 records based on some criteria which

> > does not include the group id. I guess limit queries across the
union
> > of the partitions don't work too well for now, and we do
> have such queries.

You would query the parent (no union). Do you need order by's ?
Without order by it is currently no problem.

Do we push the limit down to the separate tables when we have an
appropriate
index for the order by (that could be a TODO item)?
(You need a max of "limit" rows per child in the outer order)

Or we would need to implement an efficient index merge node
for order by queries on parent (and union all's) with low limits
and an appropriate index.

Selecting the oldest x rows from a time partitioned table is a frequent
problem
we need to work around here too (Informix db).

Andreas


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Csaba Nagy
Дата:
Сообщение: Re: vacuum, performance, and MVCC
Следующее
От: Martijn van Oosterhout
Дата:
Сообщение: Re: Planning without reason.