]> granicus.if.org Git - postgresql/commit
Speedup 2PC by skipping two phase state files in normal path
authorSimon Riggs <simon@2ndQuadrant.com>
Thu, 21 Jan 2016 02:40:44 +0000 (18:40 -0800)
committerSimon Riggs <simon@2ndQuadrant.com>
Thu, 21 Jan 2016 02:40:44 +0000 (18:40 -0800)
commit978b2f65aa1262eb4ecbf8b3785cb1b9cf4db78e
treee3845e2e7037697880c6f11d1ff8416b8499c4e5
parentd0f2f53cd6f2f1fe6e53b8e3bfcce43c16ea851b
Speedup 2PC by skipping two phase state files in normal path

2PC state info is written only to WAL at PREPARE, then read back from WAL at
COMMIT PREPARED/ABORT PREPARED. Prepared transactions that live past one bufmgr
checkpoint cycle will be written to disk in the same form as previously. Crash
recovery path is not altered. Measured performance gains of 50-100% for short
2PC transactions by completely avoiding writing files and fsyncing. Other
optimizations still available, further patches in related areas expected.

Stas Kelvich and heavily edited by Simon Riggs

Based upon earlier ideas and patches by Michael Paquier and Heikki Linnakangas,
a concrete example of how Postgres-XC has fed back ideas into PostgreSQL.

Reviewed by Michael Paquier, Jeff Janes and Andres Freund
Performance testing by Jesper Pedersen
src/backend/access/transam/twophase.c
src/backend/access/transam/xlog.c
src/include/access/xlog.h