Re: Suggestion for concurrent index creation using a single full scan operation - Mailing list pgsql-hackers

From Greg Stark
Subject Re: Suggestion for concurrent index creation using a single full scan operation
Date
Msg-id CAM-w4HPb9J6f8i4SDac3ChF1dKrD3Pq6tPtEd_2hu_fbRJ3GZg@mail.gmail.com
Whole thread Raw
In response to Suggestion for concurrent index creation using a single full scan operation  (Tim Kane <tim.kane@gmail.com>)
Responses Re: Suggestion for concurrent index creation using a single full scan operation
List pgsql-hackers

We already do this in pg_restore by starting multiple worker processes. Those processes should get the benefit of synchronised sequential scans.

The way the api for indexes works y wouldn't really be hard to start multiple parallel index builds. I'm not sure how well the pg_restore thing works and sometimes the goal isn't to maximise the speed so starting multiple processes isn't always ideal.  It might sometimes be interesting to be able to do it explicit in a single process.

--
greg

On Jul 23, 2013 1:06 PM, "Tim Kane" <tim.kane@gmail.com> wrote:
Hi all,

I haven't given this a lot of thought, but it struck me that when rebuilding tables (be it for a restore process, or some other operational activity) - there is more often than not a need to build an index or two, sometimes many indexes, against the same relation.

It strikes me that in order to build just one index, we probably need to perform a full table scan (in a lot of cases).   If we are building multiple indexes sequentially against that same table, then we're probably performing multiple sequential scans in succession, once for each index.

Could we architect a mechanism that allowed multiple index creation statements to execute concurrently, with all of their inputs fed directly from a single sequential scan against the full relation?

From a language construct point of view, this may not be trivial to implement for raw/interactive SQL - but possibly this is a candidate for the custom format restore?

I presume this would substantially increase the memory overhead required to build those indexes, though the performance gains may be advantageous.

Feel free to shoot holes through this :)

Apologies in advance if this is not the correct forum for suggestions..

pgsql-hackers by date:

Previous
From: Robert Haas
Date:
Subject: Re: [9.4 CF 1] And then there were 5
Next
From: Stephen Frost
Date:
Subject: Re: make --silent