diff options
author | Amit Kapila <akapila@postgresql.org> | 2021-01-13 08:19:50 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2021-01-13 08:19:50 +0530 |
commit | ee1b38f65948cb09ecf3c39b58bd88aabc950e7c (patch) | |
tree | 7a94c78e702d713a5d2686a339e5f3af571d1686 | |
parent | bea449c635c0e68e21610593594c1e5d52842cdd (diff) | |
download | postgresql-ee1b38f65948cb09ecf3c39b58bd88aabc950e7c.tar.gz postgresql-ee1b38f65948cb09ecf3c39b58bd88aabc950e7c.zip |
Fix memory leak in SnapBuildSerialize.
The memory for the snapshot was leaked while serializing it to disk during
logical decoding. This memory will be freed only once walsender stops
streaming the changes. This can lead to a huge memory increase when master
logs Standby Snapshot too frequently say when the user is trying to create
many replication slots.
Reported-by: funnyxj.fxj@alibaba-inc.com
Diagnosed-by: funnyxj.fxj@alibaba-inc.com
Author: Amit Kapila
Backpatch-through: 9.5
Discussion: https://postgr.es/m/033ab54c-6393-42ee-8ec9-2b399b5d8cde.funnyxj.fxj@alibaba-inc.com
-rw-r--r-- | src/backend/replication/logical/snapbuild.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/backend/replication/logical/snapbuild.c b/src/backend/replication/logical/snapbuild.c index 15b07a54c11..71d510e305e 100644 --- a/src/backend/replication/logical/snapbuild.c +++ b/src/backend/replication/logical/snapbuild.c @@ -1488,7 +1488,7 @@ static void SnapBuildSerialize(SnapBuild *builder, XLogRecPtr lsn) { Size needed_length; - SnapBuildOnDisk *ondisk; + SnapBuildOnDisk *ondisk = NULL; char *ondisk_c; int fd; char tmppath[MAXPGPATH]; @@ -1687,6 +1687,9 @@ SnapBuildSerialize(SnapBuild *builder, XLogRecPtr lsn) out: ReorderBufferSetRestartPoint(builder->reorder, builder->last_serialized_snapshot); + /* be tidy */ + if (ondisk) + pfree(ondisk); } /* |