clustering without locking

From: fschmidt <fschmidt(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: clustering without locking
Date: 2008-05-02 00:12:52
Message-ID: 16996348.post@talk.nabble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


An implementation of clustering without locking would start by comparing the
index to the table from the beginning to find the first mismatch. Rows
before the mismatch are fine, and can be left alone. From here on, go
through the index and rewrite each row in order. This will put the rows at
the end of the table in cluster order. When done, vacuum the table. This
will result in a clustered table without any locking needed. Those few
records that were updated while clustering was happening will be out of
order, but that should only be a few.

So, could this work? I could really use clustering without locking.

--
View this message in context: http://www.nabble.com/clustering-without-locking-tp16996348p16996348.html
Sent from the PostgreSQL - general mailing list archive at Nabble.com.

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2008-05-02 02:37:36 Re: Problem revoking a user's 'create' privilege on schema public
Previous Message James Dietrich 2008-05-01 23:05:49 Problem revoking a user's 'create' privilege on schema public