Re: Online index builds

From: Chris Browne <cbbrowne(at)acm(dot)org>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Online index builds
Date: 2006-12-06 20:00:00
Message-ID: 60hcw894n3.fsf@dba2.int.libertyrms.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-announce pgsql-general pgsql-www

wmoran(at)collaborativefusion(dot)com (Bill Moran) writes:
> In response to Alvaro Herrera <alvherre(at)commandprompt(dot)com>:
>
>> Bill Moran wrote:
>> > In response to Josh Berkus <josh(at)postgresql(dot)org>:
>> >
>> > > -- Online index builds
>> >
>> > I'm particularly curious about this feature. Does this mean that
>> > PostgreSQL 8.2 can perform a REINDEX without blocking the relevant
>> > table from writes?
>> >
>> > If so, the 8.2 docs are a bit out of date:
>> > http://www.postgresql.org/docs/8.2/static/sql-reindex.html
>>
>> No, it means you can do CREATE INDEX CONCURRENTLY.
>>
>> http://www.postgresql.org/docs/8.2/static/sql-createindex.html
>
> Ahh ... and the text there specifically states that REINDEX does
> _not_ work concurrently.
>
> Thanks.

Let me add another question to this; this might possibly be worthy of
a TODO for 8.3 or so...

What if I wanted to:
ALTER TABLE distributors ADD PRIMARY KEY CONCURRENTLY (dist_id);
?

We have a number of cases where there isn't a true primary key on
tables. It would be very attractive to have a non-blocking way of
getting one, perhaps to be combined with letting Slony-I know about
it...

Or is it a better answer to look more deeply into the index
configuration, creating a suitably named UNIQUE index on NOT NULL
fields, and fiddling it into being the primary key?
--
let name="cbbrowne" and tld="linuxfinances.info" in name ^ "@" ^ tld;;
http://linuxfinances.info/info/advocacy.html
"Marketing Division, Sirius Cybernetics Corp: A bunch of mindless
jerks who'll be the first against the wall when the revolution comes."
-- The Hitchhiker's Guide to the Galaxy

In response to

Responses

Browse pgsql-announce by date

  From Date Subject
Next Message Jeff Davis 2006-12-07 02:22:32 Re: Online index builds
Previous Message SQL Maestro Team 2006-12-06 18:58:46 PostgreSQL Maestro 6.12 released (support of PostgreSQL 8.2 and more)

Browse pgsql-general by date

  From Date Subject
Next Message wheel 2006-12-06 20:16:35 Re: Restore database from files (not dump files)?
Previous Message Michael Guyver 2006-12-06 19:56:46 Re: Concatenate performance question

Browse pgsql-www by date

  From Date Subject
Next Message Jeff Davis 2006-12-07 02:22:32 Re: Online index builds
Previous Message Vivek Khera 2006-12-06 16:21:05 Re: [GENERAL] [ANNOUNCE] PostgreSQL 8.2 Now Available