forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit28d9360
committed
Get rid of artificial restriction on hash table sizes on Windows.
The point of introducing the hash_mem_multiplier GUC was to let usersreproduce the old behavior of hash aggregation, i.e. that it could usemore than work_mem at need. However, the implementation failed to getthe job done on Win64, where work_mem is clamped to 2GB to protectvarious places that calculate memory sizes using "long int". Aswritten, the same clamp was applied to hash_mem. This resulted insevere performance regressions for queries requiring a bit more than2GB for hash aggregation, as they now spill to disk and there's noway to stop that.Getting rid of the work_mem restriction seems like a good idea, butit's a big job and could not conceivably be back-patched. However,there's only a fairly small number of places that are concerned withthe hash_mem value, and it turns out to be possible to remove therestriction there without too much code churn or any ABI breaks.So, let's do that for now to fix the regression, and leave thelarger task for another day.This patch does introduce a bit more infrastructure that should helpwith the larger task, namely pg_bitutils.h support for working withsize_t values.Per gripe from Laurent Hasson. Back-patch to v13 where thebehavior change came in.Discussion:https://postgr.es/m/997817.1627074924@sss.pgh.pa.usDiscussion:https://postgr.es/m/MN2PR15MB25601E80A9B6D1BA6F592B1985E39@MN2PR15MB2560.namprd15.prod.outlook.com1 parentd9d8aa9 commit28d9360
File tree
12 files changed
+153
-111
lines changed- src
- backend
- executor
- optimizer
- path
- plan
- prep
- util
- storage/ipc
- include
- port
12 files changed
+153
-111
lines changedLines changed: 4 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
165 | 165 |
| |
166 | 166 |
| |
167 | 167 |
| |
168 |
| - | |
| 168 | + | |
169 | 169 |
| |
170 | 170 |
| |
171 | 171 |
| |
172 | 172 |
| |
173 | 173 |
| |
174 | 174 |
| |
175 |
| - | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
176 | 178 |
| |
177 | 179 |
| |
178 | 180 |
| |
|
Lines changed: 23 additions & 19 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1802 | 1802 |
| |
1803 | 1803 |
| |
1804 | 1804 |
| |
1805 |
| - | |
| 1805 | + | |
1806 | 1806 |
| |
1807 | 1807 |
| |
1808 |
| - | |
| 1808 | + | |
1809 | 1809 |
| |
1810 | 1810 |
| |
1811 | 1811 |
| |
1812 |
| - | |
1813 |
| - | |
| 1812 | + | |
| 1813 | + | |
1814 | 1814 |
| |
1815 | 1815 |
| |
1816 | 1816 |
| |
| |||
1835 | 1835 |
| |
1836 | 1836 |
| |
1837 | 1837 |
| |
1838 |
| - | |
1839 |
| - | |
| 1838 | + | |
| 1839 | + | |
1840 | 1840 |
| |
1841 |
| - | |
| 1841 | + | |
1842 | 1842 |
| |
1843 | 1843 |
| |
1844 | 1844 |
| |
| |||
1992 | 1992 |
| |
1993 | 1993 |
| |
1994 | 1994 |
| |
1995 |
| - | |
1996 |
| - | |
| 1995 | + | |
| 1996 | + | |
| 1997 | + | |
| 1998 | + | |
1997 | 1999 |
| |
1998 | 2000 |
| |
1999 |
| - | |
2000 | 2001 |
| |
2001 | 2002 |
| |
2002 | 2003 |
| |
2003 | 2004 |
| |
2004 | 2005 |
| |
2005 | 2006 |
| |
2006 |
| - | |
| 2007 | + | |
2007 | 2008 |
| |
2008 | 2009 |
| |
2009 | 2010 |
| |
2010 | 2011 |
| |
2011 | 2012 |
| |
2012 |
| - | |
| 2013 | + | |
| 2014 | + | |
| 2015 | + | |
| 2016 | + | |
2013 | 2017 |
| |
2014 |
| - | |
2015 |
| - | |
| 2018 | + | |
| 2019 | + | |
| 2020 | + | |
| 2021 | + | |
2016 | 2022 |
| |
2017 |
| - | |
2018 |
| - | |
2019 |
| - | |
2020 |
| - | |
| 2023 | + | |
| 2024 | + | |
2021 | 2025 |
| |
2022 | 2026 |
| |
2023 | 2027 |
| |
| |||
2030 | 2034 |
| |
2031 | 2035 |
| |
2032 | 2036 |
| |
2033 |
| - | |
| 2037 | + | |
2034 | 2038 |
| |
2035 | 2039 |
| |
2036 | 2040 |
| |
|
Lines changed: 64 additions & 62 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
675 | 675 |
| |
676 | 676 |
| |
677 | 677 |
| |
678 |
| - | |
679 |
| - | |
680 |
| - | |
681 |
| - | |
682 |
| - | |
| 678 | + | |
| 679 | + | |
| 680 | + | |
683 | 681 |
| |
684 | 682 |
| |
685 | 683 |
| |
686 |
| - | |
687 | 684 |
| |
688 | 685 |
| |
689 | 686 |
| |
| |||
700 | 697 |
| |
701 | 698 |
| |
702 | 699 |
| |
703 |
| - | |
| 700 | + | |
704 | 701 |
| |
705 |
| - | |
| 702 | + | |
706 | 703 |
| |
707 | 704 |
| |
708 | 705 |
| |
709 | 706 |
| |
710 | 707 |
| |
711 | 708 |
| |
712 | 709 |
| |
713 |
| - | |
| 710 | + | |
| 711 | + | |
| 712 | + | |
| 713 | + | |
| 714 | + | |
| 715 | + | |
| 716 | + | |
| 717 | + | |
714 | 718 |
| |
715 | 719 |
| |
716 | 720 |
| |
| |||
730 | 734 |
| |
731 | 735 |
| |
732 | 736 |
| |
733 |
| - | |
| 737 | + | |
| 738 | + | |
734 | 739 |
| |
735 | 740 |
| |
| 741 | + | |
| 742 | + | |
736 | 743 |
| |
737 | 744 |
| |
738 | 745 |
| |
739 | 746 |
| |
740 | 747 |
| |
741 | 748 |
| |
742 | 749 |
| |
743 |
| - | |
744 |
| - | |
745 |
| - | |
746 |
| - | |
747 |
| - | |
748 |
| - | |
| 750 | + | |
| 751 | + | |
| 752 | + | |
| 753 | + | |
| 754 | + | |
| 755 | + | |
| 756 | + | |
| 757 | + | |
| 758 | + | |
| 759 | + | |
| 760 | + | |
| 761 | + | |
| 762 | + | |
| 763 | + | |
| 764 | + | |
| 765 | + | |
| 766 | + | |
| 767 | + | |
| 768 | + | |
| 769 | + | |
749 | 770 |
| |
750 | 771 |
| |
751 | 772 |
| |
752 | 773 |
| |
753 | 774 |
| |
754 | 775 |
| |
755 | 776 |
| |
756 |
| - | |
757 |
| - | |
| 777 | + | |
| 778 | + | |
758 | 779 |
| |
759 | 780 |
| |
760 | 781 |
| |
761 | 782 |
| |
762 |
| - | |
| 783 | + | |
763 | 784 |
| |
764 | 785 |
| |
765 |
| - | |
766 |
| - | |
767 |
| - | |
| 786 | + | |
768 | 787 |
| |
769 | 788 |
| |
770 | 789 |
| |
771 |
| - | |
| 790 | + | |
772 | 791 |
| |
773 | 792 |
| |
774 | 793 |
| |
775 | 794 |
| |
776 | 795 |
| |
777 | 796 |
| |
778 | 797 |
| |
779 |
| - | |
| 798 | + | |
780 | 799 |
| |
781 | 800 |
| |
782 | 801 |
| |
| |||
786 | 805 |
| |
787 | 806 |
| |
788 | 807 |
| |
789 |
| - | |
| 808 | + | |
790 | 809 |
| |
791 | 810 |
| |
792 |
| - | |
| 811 | + | |
793 | 812 |
| |
794 | 813 |
| |
795 | 814 |
| |
| |||
813 | 832 |
| |
814 | 833 |
| |
815 | 834 |
| |
816 |
| - | |
817 |
| - | |
818 |
| - | |
819 |
| - | |
| 835 | + | |
| 836 | + | |
| 837 | + | |
| 838 | + | |
820 | 839 |
| |
821 | 840 |
| |
822 | 841 |
| |
| |||
1097 | 1116 |
| |
1098 | 1117 |
| |
1099 | 1118 |
| |
1100 |
| - | |
1101 |
| - | |
1102 | 1119 |
| |
1103 | 1120 |
| |
1104 | 1121 |
| |
1105 | 1122 |
| |
1106 | 1123 |
| |
1107 |
| - | |
| 1124 | + | |
1108 | 1125 |
| |
1109 | 1126 |
| |
1110 | 1127 |
| |
| |||
1113 | 1130 |
| |
1114 | 1131 |
| |
1115 | 1132 |
| |
1116 |
| - | |
| 1133 | + | |
1117 | 1134 |
| |
1118 | 1135 |
| |
1119 | 1136 |
| |
| |||
1152 | 1169 |
| |
1153 | 1170 |
| |
1154 | 1171 |
| |
1155 |
| - | |
| 1172 | + | |
1156 | 1173 |
| |
1157 | 1174 |
| |
1158 | 1175 |
| |
| |||
3372 | 3389 |
| |
3373 | 3390 |
| |
3374 | 3391 |
| |
3375 |
| - | |
3376 |
| - | |
| 3392 | + | |
| 3393 | + | |
| 3394 | + | |
3377 | 3395 |
| |
3378 |
| - | |
3379 |
| - | |
3380 |
| - | |
3381 |
| - | |
3382 |
| - | |
3383 |
| - | |
3384 |
| - | |
| 3396 | + | |
3385 | 3397 |
| |
3386 | 3398 |
| |
3387 | 3399 |
| |
3388 |
| - | |
3389 |
| - | |
| 3400 | + | |
| 3401 | + | |
3390 | 3402 |
| |
3391 |
| - | |
| 3403 | + | |
3392 | 3404 |
| |
3393 |
| - | |
| 3405 | + | |
| 3406 | + | |
3394 | 3407 |
| |
3395 |
| - | |
3396 |
| - | |
3397 |
| - | |
3398 |
| - | |
3399 |
| - | |
3400 |
| - | |
3401 |
| - | |
3402 |
| - | |
3403 |
| - | |
3404 |
| - | |
3405 |
| - | |
3406 |
| - | |
3407 |
| - | |
| 3408 | + | |
| 3409 | + | |
3408 | 3410 |
| |
3409 |
| - | |
| 3411 | + | |
3410 | 3412 |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
905 | 905 |
| |
906 | 906 |
| |
907 | 907 |
| |
908 |
| - | |
| 908 | + | |
909 | 909 |
| |
910 | 910 |
| |
911 | 911 |
| |
|
Lines changed: 2 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2438 | 2438 |
| |
2439 | 2439 |
| |
2440 | 2440 |
| |
2441 |
| - | |
| 2441 | + | |
2442 | 2442 |
| |
2443 | 2443 |
| |
2444 | 2444 |
| |
| |||
3860 | 3860 |
| |
3861 | 3861 |
| |
3862 | 3862 |
| |
3863 |
| - | |
3864 | 3863 |
| |
3865 | 3864 |
| |
3866 | 3865 |
| |
| |||
3986 | 3985 |
| |
3987 | 3986 |
| |
3988 | 3987 |
| |
3989 |
| - | |
3990 | 3988 |
| |
3991 |
| - | |
3992 |
| - | |
| 3989 | + | |
3993 | 3990 |
| |
3994 | 3991 |
| |
3995 | 3992 |
| |
|
0 commit comments
Comments
(0)