Skip to content

Commit 51c24d9

Browse files
committed
Fix ordering issue with WAL operations in GIN fast insert path
Contrary to what is documented in src/backend/access/transam/README, ginHeapTupleFastInsert() had a few ordering issues with the way it does its WAL operations when inserting items in its fast path. First, when using a separate list, XLogBeginInsert() was being always called before START_CRIT_SECTION(), and in this case a second thing was wrong when merging lists, as an exclusive lock was taken on the tail page *before* calling XLogBeginInsert(). Finally, when inserting items into a tail page, the order of XLogBeginInsert() and START_CRIT_SECTION() was reversed. This commit addresses all these issues by moving the calls of XLogBeginInsert() after all the pages logged are locked and pinned, within a critical section. This has been applied first only on HEAD as of 56b6625, but as per discussion with Tom Lane and Álvaro Herrera, a backpatch is preferred to keep all the branches consistent and to respect the transam's README where we can. Author: Matthias van de Meent, Zhang Mingli Discussion: https://postgr.es/m/CAEze2WhL8uLMqynnnCu1LAPwxD5RKEo0nHV+eXGg_N6ELU88HQ@mail.gmail.com Backpatch-through: 10
1 parent 475e9da commit 51c24d9

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/backend/access/gin/ginfast.c

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -284,9 +284,6 @@ ginHeapTupleFastInsert(GinState *ginstate, GinTupleCollector *collector)
284284
memset(&sublist, 0, sizeof(GinMetaPageData));
285285
makeSublist(index, collector->tuples, collector->ntuples, &sublist);
286286

287-
if (needWal)
288-
XLogBeginInsert();
289-
290287
/*
291288
* metapage was unlocked, see above
292289
*/
@@ -306,6 +303,9 @@ ginHeapTupleFastInsert(GinState *ginstate, GinTupleCollector *collector)
306303

307304
metadata->nPendingPages = sublist.nPendingPages;
308305
metadata->nPendingHeapTuples = sublist.nPendingHeapTuples;
306+
307+
if (needWal)
308+
XLogBeginInsert();
309309
}
310310
else
311311
{
@@ -334,7 +334,10 @@ ginHeapTupleFastInsert(GinState *ginstate, GinTupleCollector *collector)
334334
metadata->nPendingHeapTuples += sublist.nPendingHeapTuples;
335335

336336
if (needWal)
337+
{
338+
XLogBeginInsert();
337339
XLogRegisterBuffer(1, buffer, REGBUF_STANDARD);
340+
}
338341
}
339342
}
340343
else
@@ -360,11 +363,11 @@ ginHeapTupleFastInsert(GinState *ginstate, GinTupleCollector *collector)
360363

361364
data.ntuples = collector->ntuples;
362365

366+
START_CRIT_SECTION();
367+
363368
if (needWal)
364369
XLogBeginInsert();
365370

366-
START_CRIT_SECTION();
367-
368371
/*
369372
* Increase counter of heap tuples
370373
*/

0 commit comments

Comments
 (0)