Re: Need guidance on partioning

Поиск
Список
Период
Сортировка
От Rui DeSousa
Тема Re: Need guidance on partioning
Дата
Msg-id 2EB08EEC-56F6-4E96-A14A-797361C07C5A@icloud.com
обсуждение исходный текст
Ответ на Re: Need guidance on partioning  (M Sarwar <sarwarmd02@outlook.com>)
Ответы Re: Need guidance on partioning
Список pgsql-admin


On May 22, 2024, at 11:10 AM, M Sarwar <sarwarmd02@outlook.com> wrote:

Is it  a good idea to partition the table when it reaches 750 MB in size or 1 B rows or any other general rule?


750MB is not a really big table; Postgres default segment size is 1GB, I normally set it 256GB instead.  1GB segment size is holdover from signed 32bit filesystems where the largest file size was 2GB. 

I’ve had tables that where hundreds of GB and with billions of records.  In my experiences partitioning usually degrades performance unless it well planned out as there is overhead associated with partitioning.

I don’t think there is a hard and fast rule for when to partition.  It really depending on the given issues at hand.  One good reason to partition large tables is for table maintenance, i.e. aging out and archiving out large chunks of data.  What is a large table? That might also depend on hardware; a big table on spinning rust might feel like small table on solid state.

There is also a limit to how many partitions one should create.  Too many and performance tanks.  I once inherited a system that partition by day, what a disaster, I completely eliminated the partitioning from system as it didn’t need it.  Point is partitioning is a tool and you’ll know when you need it.  As with a tool — if you have a hammer in hand and the fastener is a screw then that screw really start to look like nail.

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

Предыдущее
От: Ron Johnson
Дата:
Сообщение: Re: Need guidance on partioning
Следующее
От: M Sarwar
Дата:
Сообщение: Re: Need guidance on partioning