0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-16 09:38:19 +02:00

Add a note about huge pages to our Postgres doc (#11467)

* Add note to postgres doc about hugepages

* Newsfragment
This commit is contained in:
Shay 2021-11-30 19:05:20 -08:00 committed by GitHub
parent 70cbb1a5e3
commit f1795463bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

1
changelog.d/11467.misc Normal file
View file

@ -0,0 +1 @@
Add a note about postgres memory management and hugepages to postgres doc.

View file

@ -118,6 +118,9 @@ performance:
Note that the appropriate values for those fields depend on the amount
of free memory the database host has available.
Additionally, admins of large deployments might want to consider using huge pages
to help manage memory, especially when using large values of `shared_buffers`. You
can read more about that [here](https://www.postgresql.org/docs/10/kernel-resources.html#LINUX-HUGE-PAGES).
## Porting from SQLite