Re: Creating big indexes

Поиск
Список
Период
Сортировка
От Lok P
Тема Re: Creating big indexes
Дата
Msg-id CAKna9VZXweP1os0YnhYMcvyKHP6NQS7rCCkW-H==KVK=E0ZHPw@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Creating big indexes  (Lok P <loknath.73@gmail.com>)
Ответы Re: Creating big indexes
Список pgsql-general
On Sun, Jun 9, 2024 at 10:39 AM Lok P <loknath.73@gmail.com> wrote:


On Sun, Jun 9, 2024 at 10:36 AM sud <suds1434@gmail.com> wrote:

 You can first create the index on the table using the "On ONLY"keyword, something as below.

CREATE INDEX idx ON ONLY tab(col1);

Then create indexes on each partition in "concurrently" from multiple sessions in chunks.

CREATE INDEX CONCURRENTLY idx_1    ON tab_part1(col1);
CREATE INDEX CONCURRENTLY idx_2    ON tab_part2(col1);

After this step finishes the table level index which was created in the first step will be in valid state automatically.


Thank you so much.
Should we also tweak the parameters related to the parallelism and memory as I mentioned in the first post? 

Additionally ,is it also possible to drop the indexes also from the big partition table efficiently? To avoid the "transaction id wrap around" or "table bloat" when the index drop runs for longer duration?
 

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

Предыдущее
От: sud
Дата:
Сообщение: Re: Question on pg_cron
Следующее
От: Afa Jamal
Дата:
Сообщение: Fwd: lost master password