diff options
author | Andres Freund <andres@anarazel.de> | 2023-04-01 17:50:18 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2023-04-01 17:50:18 -0700 |
commit | 14f98e0af996beff561f66d7436c6da5d2de524d (patch) | |
tree | 7c045620fb526012f578bd55d59ff88e29253c55 /src | |
parent | 0070b66fef21e909adb283f7faa7b1978836ad75 (diff) | |
download | postgresql-14f98e0af996beff561f66d7436c6da5d2de524d.tar.gz postgresql-14f98e0af996beff561f66d7436c6da5d2de524d.zip |
hio: Release extension lock before initializing page / pinning VM
PageInit() while holding the extension lock is unnecessary after 0d1fe9f74e3
started to use RBM_ZERO_AND_LOCK - nobody can look at the new page before we
release the page lock. PageInit() zeroes the page, which isn't that cheap, so
deferring it until after the extension lock is released seems like a good idea.
Doing visibilitymap_pin() while holding the extension lock, introduced in
7db0cd2145f2, looks like an accident. Due to the restrictions on
HEAP_INSERT_FROZEN it's unlikely to be a performance issue, but it still seems
better to move it out. We also are doing the visibilitymap_pin() while
holding the buffer lock, which will be fixed in a separate commit.
Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>
Discussion: http://postgr.es/m/419312fd-9255-078c-c3e3-f0525f911d7f@iki.fi
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/heap/hio.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/access/heap/hio.c b/src/backend/access/heap/hio.c index e152807d2dc..7479212d4e0 100644 --- a/src/backend/access/heap/hio.c +++ b/src/backend/access/heap/hio.c @@ -624,6 +624,13 @@ loop: buffer = ReadBufferBI(relation, P_NEW, RBM_ZERO_AND_LOCK, bistate); /* + * Release the file-extension lock; it's now OK for someone else to extend + * the relation some more. + */ + if (needLock) + UnlockRelationForExtension(relation, ExclusiveLock); + + /* * We need to initialize the empty new page. Double-check that it really * is empty (this should never happen, but if it does we don't want to * risk wiping out valid data). @@ -648,13 +655,6 @@ loop: } /* - * Release the file-extension lock; it's now OK for someone else to extend - * the relation some more. - */ - if (needLock) - UnlockRelationForExtension(relation, ExclusiveLock); - - /* * Lock the other buffer. It's guaranteed to be of a lower page number * than the new page. To conform with the deadlock prevent rules, we ought * to lock otherBuffer first, but that would give other backends a chance |