pgsql: Fix bogus "out of memory" reports in tuplestore.c. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix bogus "out of memory" reports in tuplestore.c.
Date
Msg-id E1ZMkY7-0005Pt-LK@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix bogus "out of memory" reports in tuplestore.c.

The tuplesort/tuplestore memory management logic assumed that the chunk
allocation overhead for its memtuples array could not increase when
increasing the array size.  This is and always was true for tuplesort,
but we (I, I think) blindly copied that logic into tuplestore.c without
noticing that the assumption failed to hold for the much smaller array
elements used by tuplestore.  Given rather small work_mem, this could
result in an improper complaint about "unexpected out-of-memory situation",
as reported by Brent DeSpain in bug #13530.

The easiest way to fix this is just to increase tuplestore's initial
array size so that the assumption holds.  Rather than relying on magic
constants, though, let's export a #define from aset.c that represents
the safe allocation threshold, and make tuplestore's calculation depend
on that.

Do the same in tuplesort.c to keep the logic looking parallel, even though
tuplesort.c isn't actually at risk at present.  This will keep us from
breaking it if we ever muck with the allocation parameters in aset.c.

Back-patch to all supported versions.  The error message doesn't occur
pre-9.3, not so much because the problem can't happen as because the
pre-9.3 tuplestore code neglected to check for it.  (The chance of
trouble is a great deal larger as of 9.3, though, due to changes in the
array-size-increasing strategy.)  However, allowing LACKMEM() to become
true unexpectedly could still result in less-than-desirable behavior,
so let's patch it all the way back.

Branch
------
REL9_5_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/e2035dc9a7a8056eab7c33a1c677cd25312eb312

Modified Files
--------------
src/backend/utils/mmgr/aset.c       |   11 ++++++++---
src/backend/utils/sort/tuplesort.c  |   19 +++++++++++++------
src/backend/utils/sort/tuplestore.c |   19 +++++++++++++------
src/include/utils/memutils.h        |    8 ++++++++
4 files changed, 42 insertions(+), 15 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix bogus "out of memory" reports in tuplestore.c.
Next
From: Tom Lane
Date:
Subject: pgsql: Fix bogus "out of memory" reports in tuplestore.c.