unlogged tables

Поиск
Список
Период
Сортировка
От Robert Haas
Тема unlogged tables
Дата
Msg-id AANLkTin0tGeMhXXEnDpFv3dpE4KvofV4YkYhM++qy_pe@mail.gmail.com
обсуждение исходный текст
Ответы Re: unlogged tables  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: unlogged tables  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: unlogged tables  (Marti Raudsepp <marti@juffo.org>)
Re: unlogged tables  (Peter Eisentraut <peter_e@gmx.net>)
Re: unlogged tables  (Heikki Linnakangas <heikki.linnakangas@enterprisedb.com>)
Re: unlogged tables  (Simon Riggs <simon@2ndQuadrant.com>)
Список pgsql-hackers
Here is a series of three patches related to unlogged tables.

1. The first one (relpersistence-v1) is a mostly mechanical patch that
replaces pg_class.relistemp (a Boolean) with pg_class.relpersistence
(a character), so that we can support more than two values.  BE SURE
YOU INITDB, since the old catalog format will not work with this patch
applied.

2. The second one (unlogged-tables-v1) adds support for unlogged
tables by adding a new supported value for relpersistence. I made this
work by having backend that creates an unlogged relation write out an
"init" fork for that relation.  The main fork is nuked and replaced by
the contents of the init fork during startup.  But I haven't made this
code work yet for index types other than btree, so attempting to
define a non-btree index on an unlogged relation will currently result
in an error.  I don't think that's probably too hard to fix, but I
haven't done it yet.

3. The third patch (relax-sync-commit-v1) allows asynchronous commit
even when synchronous_commit=on if the transaction has not written
WAL.  Of course, a read-only transaction won't even have an XID and
therefore won't need a commit record, so what this is really doing is
allowing transactions that have written only to temp - or unlogged -
tables to commit asynchronously.  This should be OK, because if the
system crashes before the commit record hits the disk, we haven't
really lost anything we wouldn't lose anyway: the temp tables will
disappear on restart, and the unlogged ones will be truncated.  This
path actually could be applied independently of the first two, if I
adjusted the comments a bit.

Review and testing would be appreciated.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

Вложения

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Stefan Kaltenbrunner
Дата:
Сообщение: Re: 8.4-vintage problem in postmaster.c
Следующее
От: Tom Lane
Дата:
Сообщение: Re: unlogged tables