diff options
author | Thomas Munro <tmunro@postgresql.org> | 2020-07-17 14:33:00 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2020-07-17 14:33:00 +1200 |
commit | d2bddc2500fb74d56e5bc53a1cfa269e2e846510 (patch) | |
tree | caf1a941a50374e61f327fce8e717c7b62b0a031 /src/backend/utils/misc/postgresql.conf.sample | |
parent | d66b23b032d75614e1be47ca182020960d89206d (diff) |
Add huge_page_size setting for use on Linux.
This allows the huge page size to be set explicitly. The default is 0,
meaning it will use the system default, as before.
Author: Odin Ugedal <odin@ugedal.com>
Discussion: https://postgr.es/m/20200608154639.20254-1-odin%40ugedal.com
Diffstat (limited to 'src/backend/utils/misc/postgresql.conf.sample')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index e430e33c7b4..29e01521966 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -122,6 +122,8 @@ # (change requires restart) #huge_pages = try # on, off, or try # (change requires restart) +#huge_page_size = 0 # zero for system default + # (change requires restart) #temp_buffers = 8MB # min 800kB #max_prepared_transactions = 0 # zero disables the feature # (change requires restart) |