Re: Index recreation details with REINDEX TABLE CONCURRENTLY - Mailing list pgsql-admin

From Ron
Subject Re: Index recreation details with REINDEX TABLE CONCURRENTLY
Date
Msg-id 5ec087d5-e07c-e704-96cd-a3f8fb9f91d7@gmail.com
Whole thread Raw
In response to Index recreation details with REINDEX TABLE CONCURRENTLY  (Matthew Planchard <matthew@specprotected.com>)
List pgsql-admin
On 5/10/23 10:04, Matthew Planchard wrote:
> Hello,
>
> We're working on setting up some regular jobs to reindex tables where we
> wind up generating a lot of index bloat. We're planning on using REINDEX
> ... CONCURRENTLY. We'd like to reindex all of the indexes on the tables.
>
> In some of our environments, these tables are very large and under high
> load, and we want to minimize the resource consumption of index
> recreation if possible.
>
> With that in mind, my question is: does REINDEX TABLE CONCURRENTLY
> operate on the indexes of the table in parallel, or sequentially? If
> in parallel, I imagine we would see less DB resource utilization by
> updating one index at a time.

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

The CREATE INDEX page certainly mentions parallel index builds.  It would 
definitely be very good to know whether REINDEX TABLE CONCURRENTLY can have 
multiple "threads" leveraging table data already in cache so as not to have 
to reread the whole table each time.

That (concurrent CREATE INDEX statements) really sped things up Back In The 
Day).

-- 
Born in Arizona, moved to Babylonia.



pgsql-admin by date:

Previous
From: Dhirendra Singh
Date:
Subject: Re: Question about pg_wal.tar.gz generated by pg_basebackup
Next
From: James Fraley
Date:
Subject: Re: Index recreation details with REINDEX TABLE CONCURRENTLY