From: | Bernd Helmle <mailings(at)oopsware(dot)de> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Simon Riggs <simon(at)2ndquadrant(dot)com> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: [COMMITTERS] pgsql: Create a GUC parametertemp_tablespacesthat allows selection of |
Date: | 2007-06-05 15:14:30 |
Message-ID: | F0C581A21B99C7AFC3FC6744@imhotep.credativ.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers pgsql-hackers |
--On Montag, Juni 04, 2007 15:34:14 -0400 Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
wrote:
> The reason I'm thinking per-transaction is that we could tie this to
> setting up a cached list of tablespace OIDs, which would avoid the
> overhead of repeat parsing and tablespace validity checking. We had
> rejected using a long-lived cache because of the problem of tablespaces
> getting dropped, but I think one that lasts only across a transaction
> would be OK.
Hmm i tried an allocated oid list in TopMemoryContext per backend, but i
didn't find any issue with that... What's the reason we cannot work with a
long-living cache during backend lifetime?
Dropping a tablespace caused get_tablespace_name() to return an InvalidOid
and the tablespace selection code to switch to $PGDATA/pgsql_tmp...
--
Thanks
Bernd
From | Date | Subject | |
---|---|---|---|
Next Message | Bernd Helmle | 2007-06-05 15:20:10 | Re: [COMMITTERS] pgsql: Create a GUC parametertemp_tablespacesthat allows selection of |
Previous Message | Teodor Sigaev | 2007-06-05 12:48:21 | pgsql: Move call of MarkBufferDirty() before XLogInsert() as required. |
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2007-06-05 15:14:52 | Re: GIN, XLogInsert and MarkBufferDirty |
Previous Message | Bernd Helmle | 2007-06-05 14:50:40 | Re: CREATEROLE, CREATEDB |