diff options
author | Thomas Munro <tmunro@postgresql.org> | 2020-11-20 10:44:09 +1300 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2020-11-20 10:52:38 +1300 |
commit | 0455f78ddbb09b6ad3bb6b582b75fd3975a24541 (patch) | |
tree | 5f1b8610c1cd6a7e0fa53134e4b083c8674ade90 /src/backend/storage/ipc/dsm.c | |
parent | c690ebbefa3394b67ceb1ba913590d873ad40355 (diff) | |
download | postgresql-0455f78ddbb09b6ad3bb6b582b75fd3975a24541.tar.gz postgresql-0455f78ddbb09b6ad3bb6b582b75fd3975a24541.zip |
Adjust DSM and DSA slot usage constants (back-patch).
1. Previously, a DSA area would create up to four segments at each size
before doubling the size. After this commit, it will create only two at
each size, so it ramps up faster and therefore needs fewer slots.
2. Previously, the total limit on DSM slots allowed for 2 per connection.
Switch to 5 per connection.
This back-patches commit d061ea21 from release 13 into 10-12 based on a
field complaint.
Discussion: https://postgr.es/m/CAO03teA%2BjE1qt5iWDWzHqaufqBsF6EoOgZphnazps_tr_jDPZA%40mail.gmail.com
Discussion: https://postgr.es/m/CA%2BhUKGL6H2BpGbiF7Lj6QiTjTGyTLW_vLR%3DSn2tEBeTcYXiMKw%40mail.gmail.com
Diffstat (limited to 'src/backend/storage/ipc/dsm.c')
-rw-r--r-- | src/backend/storage/ipc/dsm.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/backend/storage/ipc/dsm.c b/src/backend/storage/ipc/dsm.c index df2e31486fa..3ecc62c99eb 100644 --- a/src/backend/storage/ipc/dsm.c +++ b/src/backend/storage/ipc/dsm.c @@ -45,13 +45,8 @@ #define PG_DYNSHMEM_CONTROL_MAGIC 0x9a503d32 -/* - * There's no point in getting too cheap here, because the minimum allocation - * is one OS page, which is probably at least 4KB and could easily be as high - * as 64KB. Each currently sizeof(dsm_control_item), currently 8 bytes. - */ #define PG_DYNSHMEM_FIXED_SLOTS 64 -#define PG_DYNSHMEM_SLOTS_PER_BACKEND 2 +#define PG_DYNSHMEM_SLOTS_PER_BACKEND 5 #define INVALID_CONTROL_SLOT ((uint32) -1) |