Re: How to use the BRIN index properly?

Поиск
Список
Период
Сортировка
От Christophe Pettus
Тема Re: How to use the BRIN index properly?
Дата
Msg-id 4CCC40F6-D1FF-4446-B50C-26A8843E6EE4@thebuild.com
обсуждение исходный текст
Ответ на Re: How to use the BRIN index properly?  (Siddharth Jain <siddhsql@gmail.com>)
Ответы Re: How to use the BRIN index properly?  (Siddharth Jain <siddhsql@gmail.com>)
Список pgsql-general

> On Feb 8, 2023, at 13:17, Siddharth Jain <siddhsql@gmail.com> wrote:
>
> As I explained in my question that is indeed our dilemma. Our insertion order will not be equal to index order. i.e.,
referringto your response: 
>
> > who's data is added in the same order as the key in the BRIN index
>
> does NOT hold.

A BRIN index is not a good choice in this case.  You can CLUSTER the data on an index, but that's a one-time operation:
PostgreSQLwill not maintain that order after the CLUSTER.  If the number of rows in the table at the time of the
CLUSTERis much larger than the number that are inserted between CLUSTER operations, then a BRIN index might be useful,
butclustering a very large table is an expensive operation, and requires an exclusive lock on the table while it is
beingdone. 


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

Предыдущее
От: Erik Wienhold
Дата:
Сообщение: Re: How to create directory format backup
Следующее
От: Andrus
Дата:
Сообщение: Re: How to create directory format backup