diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-03-31 15:15:19 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-03-31 15:23:50 +0300 |
commit | 14d02f0bb352d70d50106e153aca4af9c4b0b842 (patch) | |
tree | 695633a4ebbb4b50da88b43d5cb5a1283018b32f /src/backend/access/gin/ginxlog.c | |
parent | 0cfa34c25a7c8e7017cac346d954016fad0dfc16 (diff) | |
download | postgresql-14d02f0bb352d70d50106e153aca4af9c4b0b842.tar.gz postgresql-14d02f0bb352d70d50106e153aca4af9c4b0b842.zip |
Rewrite the way GIN posting lists are packed on a page, to reduce WAL volume.
Inserting (in retail) into the new 9.4 format GIN posting tree created much
larger WAL records than in 9.3. The previous strategy to WAL logging was
basically to log the whole page on each change, with the exception of
completely unmodified segments up to the first modified one. That was not
too bad when appending to the end of the page, as only the last segment had
to be WAL-logged, but per Fujii Masao's testing, even that produced 2x the
WAL volume that 9.3 did.
The new strategy is to keep track of changes to the posting lists in a more
fine-grained fashion, and also make the repacking" code smarter to avoid
decoding and re-encoding segments unnecessarily.
Diffstat (limited to 'src/backend/access/gin/ginxlog.c')
-rw-r--r-- | src/backend/access/gin/ginxlog.c | 161 |
1 files changed, 152 insertions, 9 deletions
diff --git a/src/backend/access/gin/ginxlog.c b/src/backend/access/gin/ginxlog.c index c46f7ac4f7e..02e566cc685 100644 --- a/src/backend/access/gin/ginxlog.c +++ b/src/backend/access/gin/ginxlog.c @@ -145,15 +145,158 @@ ginRedoInsertEntry(Buffer buffer, bool isLeaf, BlockNumber rightblkno, void *rda static void ginRedoRecompress(Page page, ginxlogRecompressDataLeaf *data) { - Pointer segment; - - /* Copy the new data to the right place */ - segment = ((Pointer) GinDataLeafPageGetPostingList(page)) - + data->unmodifiedsize; - memcpy(segment, data->newdata, data->length - data->unmodifiedsize); - GinDataLeafPageSetPostingListSize(page, data->length); - GinPageSetCompressed(page); - GinPageGetOpaque(page)->maxoff = InvalidOffsetNumber; + int actionno; + int segno; + GinPostingList *oldseg; + Pointer segmentend; + char *walbuf; + int totalsize; + + /* + * If the page is in pre-9.4 format, convert to new format first. + */ + if (!GinPageIsCompressed(page)) + { + ItemPointer uncompressed = (ItemPointer) GinDataPageGetData(page); + int nuncompressed = GinPageGetOpaque(page)->maxoff; + int npacked; + GinPostingList *plist; + + plist = ginCompressPostingList(uncompressed, nuncompressed, + BLCKSZ, &npacked); + Assert(npacked == nuncompressed); + + totalsize = SizeOfGinPostingList(plist); + + memcpy(GinDataLeafPageGetPostingList(page), plist, totalsize); + GinDataLeafPageSetPostingListSize(page, totalsize); + GinPageSetCompressed(page); + GinPageGetOpaque(page)->maxoff = InvalidOffsetNumber; + } + + oldseg = GinDataLeafPageGetPostingList(page); + segmentend = (Pointer) oldseg + GinDataLeafPageGetPostingListSize(page); + segno = 0; + + walbuf = ((char *) data) + sizeof(ginxlogRecompressDataLeaf); + for (actionno = 0; actionno < data->nactions; actionno++) + { + uint8 a_segno = *((uint8 *) (walbuf++)); + uint8 a_action = *((uint8 *) (walbuf++)); + GinPostingList *newseg = NULL; + int newsegsize = 0; + ItemPointerData *items = NULL; + uint16 nitems = 0; + ItemPointerData *olditems; + int nolditems; + ItemPointerData *newitems; + int nnewitems; + int segsize; + Pointer segptr; + int szleft; + + /* Extract all the information we need from the WAL record */ + if (a_action == GIN_SEGMENT_INSERT || + a_action == GIN_SEGMENT_REPLACE) + { + newseg = (GinPostingList *) walbuf; + newsegsize = SizeOfGinPostingList(newseg); + walbuf += SHORTALIGN(newsegsize); + } + + if (a_action == GIN_SEGMENT_ADDITEMS) + { + memcpy(&nitems, walbuf, sizeof(uint16)); + walbuf += sizeof(uint16); + items = (ItemPointerData *) walbuf; + walbuf += nitems * sizeof(ItemPointerData); + } + + /* Skip to the segment that this action concerns */ + Assert(segno <= a_segno); + while (segno < a_segno) + { + oldseg = GinNextPostingListSegment(oldseg); + segno++; + } + + /* + * ADDITEMS action is handled like REPLACE, but the new segment to + * replace the old one is reconstructed using the old segment from + * disk and the new items from the WAL record. + */ + if (a_action == GIN_SEGMENT_ADDITEMS) + { + int npacked; + + olditems = ginPostingListDecode(oldseg, &nolditems); + + newitems = ginMergeItemPointers(items, nitems, + olditems, nolditems, + &nnewitems); + Assert(nnewitems == nolditems + nitems); + + newseg = ginCompressPostingList(newitems, nnewitems, + BLCKSZ, &npacked); + Assert(npacked == nnewitems); + + newsegsize = SizeOfGinPostingList(newseg); + a_action = GIN_SEGMENT_REPLACE; + } + + segptr = (Pointer) oldseg; + if (segptr != segmentend) + segsize = SizeOfGinPostingList(oldseg); + else + { + /* + * Positioned after the last existing segment. Only INSERTs + * expected here. + */ + Assert(a_action == GIN_SEGMENT_INSERT); + segsize = 0; + } + szleft = segmentend - segptr; + + switch (a_action) + { + case GIN_SEGMENT_DELETE: + memmove(segptr, segptr + segsize, szleft - segsize); + segmentend -= segsize; + + segno++; + break; + + case GIN_SEGMENT_INSERT: + /* make room for the new segment */ + memmove(segptr + newsegsize, segptr, szleft); + /* copy the new segment in place */ + memcpy(segptr, newseg, newsegsize); + segmentend += newsegsize; + segptr += newsegsize; + break; + + case GIN_SEGMENT_REPLACE: + /* shift the segments that follow */ + memmove(segptr + newsegsize, + segptr + segsize, + szleft - segsize); + /* copy the replacement segment in place */ + memcpy(segptr, newseg, newsegsize); + segmentend -= segsize; + segmentend += newsegsize; + segptr += newsegsize; + segno++; + break; + + default: + elog(ERROR, "unexpected GIN leaf action: %u", a_action); + } + oldseg = (GinPostingList *) segptr; + } + + totalsize = segmentend - (Pointer) GinDataLeafPageGetPostingList(page); + GinDataLeafPageSetPostingListSize(page, totalsize); } static void |