aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Riggs <simon@2ndQuadrant.com>2017-11-27 09:34:05 +0000
committerSimon Riggs <simon@2ndQuadrant.com>2017-11-27 09:34:05 +0000
commit59af8d4384ba5ae72986eab7e5cdc514a969aa05 (patch)
treefc2088f6a1867c3f02a6178577503420c5273f39 /src
parentd5f965c257aed40d515e6b518422ac6e6982c46c (diff)
downloadpostgresql-59af8d4384ba5ae72986eab7e5cdc514a969aa05.tar.gz
postgresql-59af8d4384ba5ae72986eab7e5cdc514a969aa05.zip
Pad XLogReaderState's per-buffer data_bufsz more aggressively.
Originally, we palloc'd this buffer just barely big enough to hold the largest xlog backup block seen so far. We now MAXALIGN the palloc size. The original coding could result in many repeated palloc cycles, in the worst case where we see a series ofgradually larger xlog records. We ameliorate that similarly to 8735978e7aebfbc499843630131c18d1f7346c79 by imposing a minimum buffer size of BLCKSZ. Discussion: https://postgr.es/m/E1eHa4J-0006hI-Q8@gemulon.postgresql.org
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/transam/xlogreader.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlogreader.c b/src/backend/access/transam/xlogreader.c
index fa9432eb677..0a75c360260 100644
--- a/src/backend/access/transam/xlogreader.c
+++ b/src/backend/access/transam/xlogreader.c
@@ -1264,7 +1264,13 @@ DecodeXLogRecord(XLogReaderState *state, XLogRecord *record, char **errormsg)
{
if (blk->data)
pfree(blk->data);
- blk->data_bufsz = blk->data_len;
+
+ /*
+ * Force the initial request to be BLCKSZ so that we don't
+ * waste time with lots of trips through this stanza as a
+ * result of WAL compression.
+ */
+ blk->data_bufsz = MAXALIGN(Max(blk->data_len, BLCKSZ));
blk->data = palloc(blk->data_bufsz);
}
memcpy(blk->data, ptr, blk->data_len);