Re: Estimating HugePages Requirements?
Nathan Bossart <bossartn@amazon.com>
From: "Bossart, Nathan" <bossartn@amazon.com>
To: Don Seiler <don@seiler.us>, "pgsql-hackers@postgresql.org" <pgsql-hackers@postgresql.org>
Date: 2021-06-09T20:52:47Z
Lists: pgsql-hackers
moving to pgsql-hackers@ On 6/9/21, 9:41 AM, "Don Seiler" <don@seiler.us> wrote: > I'm trying to set up a chef recipe to reserve enough HugePages on a > linux system for our PG servers. A given VM will only host one PG > cluster and that will be the only thing on that host that uses > HugePages. Blogs that I've seen suggest that it would be as simple > as taking the shared_buffers setting and dividing that by 2MB (huge > page size), however I found that I needed some more. > > In my test case, shared_buffers is set to 4003MB (calculated by > chef) but PG failed to start until I reserved a few hundred more MB. > When I checked VmPeak, it was 4321MB, so I ended up having to > reserve over 2161 huge pages, over a hundred more than I had > originally thought. > > I'm told other factors contribute to this additional memory > requirement, such as max_connections, wal_buffers, etc. I'm > wondering if anyone has been able to come up with a reliable method > for determining the HugePages requirements for a PG cluster based on > the GUC values (that would be known at deployment time). In RDS, we've added a pg_ctl option that returns the amount of shared memory required. Basically, we start up postmaster just enough to get an accurate value from CreateSharedMemoryAndSemaphores() and then shut down. The patch is quite battle-tested at this point (we first started using it in 2017, and we've been enabling huge pages by default since v10). I'd be happy to clean it up and submit it for discussion in pgsql-hackers@ if there is interest. Nathan
Commits
-
Silence extra logging when using "postgres -C" on runtime-computed GUCs
- 8bbf8461a3a2 15.0 landed
-
doc: Improve postgres command for shared_memory_size_in_huge_pages
- bbd4951b73ec 15.0 landed
-
Introduce GUC shared_memory_size_in_huge_pages
- 43c1c4f65eab 15.0 landed
-
Support "postgres -C" with runtime-computed GUCs
- 0c39c292077e 15.0 landed
-
Make shared_memory_size a preset option
- 3b231596ccfc 15.0 landed
-
Introduce GUC shared_memory_size
- bd1788051b02 15.0 landed
-
Move the shared memory size calculation to its own function
- 0bd305ee1d42 15.0 landed
-
Add new GUC, max_worker_processes, limiting number of bgworkers.
- 6bc8ef0b7f1f 9.4.0 cited