pgsql: Augment WAL records for btree delete with GetOldestXmin() to

From: sriggs(at)postgresql(dot)org (Simon Riggs)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Augment WAL records for btree delete with GetOldestXmin() to
Date: 2010-01-29 18:39:05
Message-ID: 20100129183905.CA7317541B9@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

Log Message:
-----------
Augment WAL records for btree delete with GetOldestXmin() to reduce
false positives during Hot Standby conflict processing. Simple
patch to enhance conflict processing, following previous discussions.
Controlled by parameter minimize_standby_conflicts = on | off, with
default off allows measurement of performance impact to see whether
it should be set on all the time.

Modified Files:
--------------
pgsql/doc/src/sgml:
config.sgml (r1.246 -> r1.247)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/config.sgml?r1=1.246&r2=1.247)
pgsql/src/backend/access/nbtree:
nbtpage.c (r1.115 -> r1.116)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/nbtree/nbtpage.c?r1=1.115&r2=1.116)
pgsql/src/backend/access/transam:
xlog.c (r1.364 -> r1.365)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xlog.c?r1=1.364&r2=1.365)
pgsql/src/backend/utils/misc:
guc.c (r1.536 -> r1.537)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/guc.c?r1=1.536&r2=1.537)
postgresql.conf.sample (r1.274 -> r1.275)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/postgresql.conf.sample?r1=1.274&r2=1.275)
pgsql/src/include/access:
xlog.h (r1.99 -> r1.100)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/access/xlog.h?r1=1.99&r2=1.100)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2010-01-29 19:04:17 Re: [COMMITTERS] pgsql: Augment WAL records for btree delete with GetOldestXmin() to
Previous Message Pavel Stehule 2010-01-29 18:16:04 Re: pgsql: Allow psql variables to be interpolated with literal or

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2010-01-29 18:43:04 Re: Review: listagg aggregate
Previous Message Robert Haas 2010-01-29 18:36:20 Re: [BUG?] strange behavior in ALTER TABLE ... RENAME TO on inherited columns