From: | "Florian G(dot) Pflug" <fgp(at)phlo(dot)org> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Simon Riggs <simon(at)2ndquadrant(dot)com>, Pavan Deolasee <pavan(dot)deolasee(at)gmail(dot)com>, Bruce Momjian <bruce(at)momjian(dot)us>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>, Pavan Deolasee <pavan(dot)deolasee(at)enterprisedb(dot)com> |
Subject: | Re: CREATE INDEX and HOT - revised design |
Date: | 2007-03-28 18:43:12 |
Message-ID: | 460AB740.8060806@phlo.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Tom Lane wrote:
> "Florian G. Pflug" <fgp(at)phlo(dot)org> writes:
>> Couldn't you store the creating transaction's xid in pg_index, and
>> let other transaction check that against their snapshot like they
>> would for any tuple's xmin or xmax?
>
> What snapshot? I keep having to remind people that system catalog
> operations are SnapshotNow. In the particular context here, the
> place where doing something else would break down is that the planner
> has no idea when it makes a plan what snapshot(s) the plan might later
> be used with.
Sorry - now that you say it, I remember that you've said that already
multiple times...
So the question is, why did this work until now, and CREATE INDEX+HOT
just doesn't seem to fit into this scheme?
I think the answer is that all other DDL statements manage to assure
that any database objects they create or modify are usable for everybody
else immediatly after they are committed. This usually implies pretty
strong locking requirements - for example, I think that the core reason
why TRUNCATE needs an exclusive lock is precisely that guarantee it has
to make.
Maybe this could somehow be relaxed? Could, for example, the planner
be allowed to base some of it's decisions on the SerializableSnapshot
the every transaction (even read-only ones) posseses? It seems that
this would prevent plans from living longer than a transaction,
but maybe plan invalidation could help here?
greetings, Florian Pflug
From | Date | Subject | |
---|---|---|---|
Next Message | David Fetter | 2007-03-28 18:48:57 | Re: Arrays of Complex Types |
Previous Message | Pavan Deolasee | 2007-03-28 18:36:46 | Re: CREATE INDEX and HOT - revised design |