pgsql: Rotate instead of shifting hash join batch number. - Mailing list pgsql-committers

From Thomas Munro
Subject pgsql: Rotate instead of shifting hash join batch number.
Date
Msg-id E1ijXxu-0006Wu-6T@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Rotate instead of shifting hash join batch number.

Our algorithm for choosing batch numbers turned out not to work
effectively for multi-billion key inner relations.  We would use
more hash bits than we have, and effectively concentrate all tuples
into a smaller number of batches than we intended.  While ideally
we should switch to wider hashes, for now, change the algorithm to
one that effectively gives up bits from the bucket number when we
don't have enough bits.  That means we'll finish up with longer
bucket chains than would be ideal, but that's better than having
batches that don't fit in work_mem and can't be divided.

Batch-patch to all supported releases.

Author: Thomas Munro
Reviewed-by: Tom Lane, thanks also to Tomas Vondra, Alvaro Herrera, Andres Freund for testing and discussion
Reported-by: James Coleman
Discussion: https://postgr.es/m/16104-dc11ed911f1ab9df%40postgresql.org

Branch
------
REL_11_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/9e551a14cb45e1240af4978b44d2b7c1c649482e

Modified Files
--------------
src/backend/executor/nodeHash.c | 21 +++++++++++++++++----
1 file changed, 17 insertions(+), 4 deletions(-)


pgsql-committers by date:

Previous
From: Thomas Munro
Date:
Subject: pgsql: Rotate instead of shifting hash join batch number.
Next
From: Thomas Munro
Date:
Subject: pgsql: Rotate instead of shifting hash join batch number.