Re: Default setting for enable_hashagg_disk (hash_mem)
Justin Pryzby <pryzby@telsasoft.com>
From: Justin Pryzby <pryzby@telsasoft.com>
To: Bruce Momjian <bruce@momjian.us>
Cc: Peter Geoghegan <pg@bowt.ie>, Tomas Vondra <tomas.vondra@2ndquadrant.com>, Robert Haas <robertmhaas@gmail.com>, Andres Freund <andres@anarazel.de>, David Rowley <dgrowleyml@gmail.com>, Jeff Davis <pgsql@j-davis.com>, Melanie Plageman <melanieplageman@gmail.com>, PostgreSQL Hackers <pgsql-hackers@postgresql.org>
Date: 2020-07-03T14:56:20Z
Lists: pgsql-hackers, pgsql-docs
On Fri, Jul 03, 2020 at 10:08:08AM -0400, Bruce Momjian wrote: > On Thu, Jul 2, 2020 at 08:35:40PM -0700, Peter Geoghegan wrote: > > But the problem isn't really the hashaggs-that-spill patch itself. > > Rather, the problem is the way that work_mem is supposed to behave in > > general, and the impact that that has on hash aggregate now that it > > has finally been brought into line with every other kind of executor > > node. There just isn't much reason to think that we should give the > > same amount of memory to a groupagg + sort as a hash aggregate. The > > patch more or less broke an existing behavior that is itself > > officially broken. That is, the problem that we're trying to fix here > > is only a problem to the extent that the previous scheme isn't really > > operating as intended (because grouping estimates are inherently very > > hard). A revert doesn't seem like it helps anyone. > > > > I accept that the idea of inventing hash_mem to fix this problem now > > is unorthodox. In a certain sense it solves problems beyond the > > problems that we're theoretically obligated to solve now. But any > > "more conservative" approach that I can think of seems like a big > > mess. > > Well, the bottom line is that we are designing features during beta. > People are supposed to be testing PG 13 behavior during beta, including > optimizer behavior. We don't even have a user report yet of a > regression compared to PG 12, or one that can't be fixed by increasing > work_mem. > > If we add a new behavior to PG 13, we then have the pre-PG 13 behavior, > the pre-patch behavior, and the post-patch behavior. How are people > supposed to test all of that? Add to that that some don't even feel we > need a new behavior, which is delaying any patch from being applied. If we default hash_mem=-1, the post-patch behavior by default would be same as the pre-patch behavior. Actually, another reason it should be -1 is simply to reduce the minimum, essential number of GUCs everyone has to change or review on a new installs of a dedicated or nontrivial instance. shared_buffers, max_wal_size, checkpoint_timeout, eff_cache_size, work_mem. I don't think anybody said it before, but now it occurs to me that one advantage of making hash_mem a multiplier (I'm thinking of hash_mem_scale_factor) rather than an absolute is that one wouldn't need to remember to increase hash_mem every time they increase work_mem. Otherwise, this is kind of a foot-gun: hash_mem would default to 16MB, and people experiencing poor performance would increase work_mem to 256MB like they've been doing for decades, and see no effect. Or someone would increase work_mem from 4MB to 256MB, which exceeds hash_mem default of 16MB, so then (if Peter has his way) hash_mem is ignored. Due to these behaviors, I'll retract my previous preference: | "I feel it should same as work_mem, as it's written, and not a multiplier." I think the better ideas are: - hash_mem=-1 - hash_mem_scale_factor=1 ? Maybe as a separate patch we'd set default hash_mem_scale_factor=4, possibly only in master not and v13. -- Justin
Commits
-
Add hash_mem_multiplier GUC.
- d6c08e29e7bc 14.0 landed
- 78530c8e7a5a 13.0 landed
-
HashAgg: use better cardinality estimate for recursive spilling.
- 3a232a3183d5 13.0 landed
- 9878b643f37b 14.0 landed
-
Remove hashagg_avoid_disk_plan GUC.
- bcbf9446a298 14.0 landed
- 5a6cc6ffa914 13.0 landed
-
Doc fixup for hashagg_avoid_disk_plan GUC.
- d33f33539d7f 13.0 landed
- 7ce461560159 14.0 landed
-
Rework HashAgg GUCs.
- 13e0fa7ae50c 13.0 landed
- 92c58fd94801 14.0 landed
-
Disk-based Hash Aggregation.
- 1f39bce02154 13.0 cited
-
Implement partition-wise grouping/aggregation.
- e2f1eb0ee30d 11.0 cited
-
Defer creation of partially-grouped relation until it's needed.
- 4f15e5d09de2 11.0 cited