Re: BUG #16104: Invalid DSA Memory Alloc Request in Parallel Hash
Thomas Munro <thomas.munro@gmail.com>
From: Thomas Munro <thomas.munro@gmail.com>
To: James Coleman <jtc331@gmail.com>
Cc: Tomas Vondra <tomas.vondra@2ndquadrant.com>, PostgreSQL mailing lists <pgsql-bugs@lists.postgresql.org>
Date: 2019-11-10T03:43:49Z
Lists: pgsql-bugs
On Sun, Nov 10, 2019 at 3:25 PM James Coleman <jtc331@gmail.com> wrote: > So I should have run the earlier attached plan with VERBOSE, but > here's the interesting thing: the parallel hash node's seq scan node > outputs two columns: let's call them (from the redacted plan) > items.system_id and items.account_id. The first (system_id) is both > not null and unique; the second (account_id) definitely has massive > skew. I'm not very up-to-speed on how the hash building works, but I > would have (perhaps naïvely?) assumed that the first column being > unique would make the hash keys very likely not to collide in any > significantly skewed way. Am I missing something here? Hrm. So the compound key is unique then. I was assuming up until now that it had duplicates. The hashes of the individual keys are combined (see ExecHashGetHashValue()), so assuming there is nothing funky about the way citext gets hashed (and it's not jumping out at me), your unique keys should give you uniform hash values and thus partition size, and repartitioning should be an effective way of reducing hash table size. So now it sounds like you have a simple case of underestimation, but now I'm confused about how you got a 344MB hash table with work_mem = 150MB: Buckets: 4194304 (originally 4194304) Batches: 32768 (originally 4096) Memory Usage: 344448kB And I'm confused about what was different when it wanted the crazy number of batches.
Commits
-
Rotate instead of shifting hash join batch number.
- 5c0a132cf141 9.4.26 landed
- 893eaf0be8be 9.5.21 landed
- 15861deb65cd 9.6.17 landed
- 8e89bc6dfd3d 10.12 landed
- 9e551a14cb45 11.7 landed
- 8052aaf521e4 12.2 landed
- e69d64454778 13.0 landed