Re: Table performance with millions of rows (partitioning)

Поиск
Список
Период
Сортировка
От Justin Pryzby
Тема Re: Table performance with millions of rows (partitioning)
Дата
Msg-id 20171228012009.GI4172@telsasoft.com
обсуждение исходный текст
Ответ на Table performance with millions of rows  (Robert Blayzor <rblayzor.bulk@inoc.net>)
Ответы Re: Table performance with millions of rows (partitioning)
Список pgsql-performance
On Wed, Dec 27, 2017 at 07:54:23PM -0500, Robert Blayzor wrote:
> Question on large tables…
> 
> When should one consider table partitioning vs. just stuffing 10 million rows into one table?

IMO, whenever constraint exclusion, DROP vs DELETE, or seq scan on individual
children justify the minor administrative overhead of partitioning.  Note that
partitioning may be implemented as direct insertion into child tables, or may
involve triggers or rules.

> I currently have CDR’s that are injected into a table at the rate of over
> 100,000 a day, which is large.
> 
> At some point I’ll want to prune these records out, so being able to just
> drop or truncate the table in one shot makes child table partitions
> attractive.

That's one of the major use cases for partitioning (DROP rather than DELETE and
thus avoiding any following vacuum+analyze).
https://www.postgresql.org/docs/10/static/ddl-partitioning.html#DDL-PARTITIONING-OVERVIEW

Justin


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

Предыдущее
От: Robert Blayzor
Дата:
Сообщение: Table performance with millions of rows
Следующее
От: Robert Blayzor
Дата:
Сообщение: Re: Table performance with millions of rows (partitioning)