Re: Partitioning, Identity and Uniqueness (given pg 16 changes)

Поиск
Список
Период
Сортировка
От Greg Sabino Mullane
Тема Re: Partitioning, Identity and Uniqueness (given pg 16 changes)
Дата
Msg-id CAKAnmmJnHn8Z+E=+-XqZi6J=AV9-RTto4e3tc0RvMXbkq1Zmrg@mail.gmail.com
обсуждение исходный текст
Ответ на Partitioning, Identity and Uniqueness (given pg 16 changes)  (Darryl Green <darryl.green@gmail.com>)
Список pgsql-general
I have a table that is capturing what is, basically, time series data

Time series data usually is concerned with "recent" data, and has a subsequent drop off date. This is ideal for partitioning by timestamp - not only do your queries only need to hit a few of the total tables, but you can simply drop old tables that contain older data. Optionally saving them first to deep storage. The DROP TABLE approach is extraordinarily better than the alternative of DELETE FROM ... WHERE ...

Cheers,
Greg

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

Предыдущее
От: Moreno Andreo
Дата:
Сообщение: Re: [SPAM] Re: Partial table duplication via triggger
Следующее
От: yudhi s
Дата:
Сообщение: Creating table and indexes for new application