Re: ERROR: cannot create index on partitioned table concurrently

Поиск
Список
Период
Сортировка
От Laurenz Albe
Тема Re: ERROR: cannot create index on partitioned table concurrently
Дата
Msg-id 26332d3f68c3dbc14d662e65e3a6ed256ee26dcc.camel@cybertec.at
обсуждение исходный текст
Ответ на ERROR: cannot create index on partitioned table concurrently  (James Pang <jamespang886@gmail.com>)
Ответы RE: ERROR: cannot create index on partitioned table concurrently
Список pgsql-admin
On Tue, 2024-03-19 at 16:14 +0800, James Pang wrote:
> PGv14 , we migrated from Oracle to Postgresql, recently, we migrate
> index job from Oracle to PG. in Oracle, it's ok to create index online
> on partitioned table, but in Postgresql, ERROR:  cannot create index
> on partitioned table concurrently. Instead, I go to create index
> concurrently on each child table separately. 
>     my question is, from SQL optimizer perspective, any difference
> between "create index on partitioned root table" and  "create each
> index on child table directly", looks like optimizer still can use
> indexes with directly created on each child table.

Right.

But it is good to have the partitioned index to make sure that all
partitions have an index.

See https://www.postgresql.org/docs/current/sql-createindex.html

 "Concurrent builds for indexes on partitioned tables are currently
  not supported. However, you may concurrently build the index on
  each partition individually and then finally create the partitioned
  index non-concurrently in order to reduce the time where writes to
  the partitioned table will be locked out. In this case, building
  the partitioned index is a metadata only operation."

Yours,
Laurenz Albe



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

Предыдущее
От: Rajesh Kumar
Дата:
Сообщение: Re: Log file retention
Следующее
От: Sudeep Dass
Дата:
Сообщение: pgBackrest for RHEL 9