pgsql: Don't wait for the commit record to be replicated if we wrote no

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема pgsql: Don't wait for the commit record to be replicated if we wrote no
Дата
Msg-id E1SK8YM-00040R-7g@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Don't wait for the commit record to be replicated if we wrote no WAL.

When using synchronous replication, we waited for the commit record to be
replicated, but if we our transaction didn't write any other WAL records,
that's not required because we don't even flush the WAL locally to disk in
that case. This lead to long waits when committing a transaction that only
modified a temporary table. Bug spotted by Thom Brown.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/fe546f3da6a5ff1d879f587728f74ec457f0ee5f

Modified Files
--------------
src/backend/access/transam/xact.c |    3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Add compatibility information for prepared transaction commands
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Don't wait for the commit record to be replicated if we wrote no