Compare commits

...

2 Commits

Author SHA1 Message Date
Stephane Bourque
31b65a890f https://telecominfraproject.atlassian.net/browse/WIFI-13246
Changing shared_buffers to match new needs for more connections in SQL dues to GW performance requests.

Signed-off-by: stephb9959 <stephane.bourque@gmail.com>
2024-01-09 08:20:06 -08:00
Stephane Bourque
acaa929719 https://telecominfraproject.atlassian.net/browse/WIFI-13172
Adding new postgresql environment settings
2023-12-12 21:36:38 -08:00
2 changed files with 7 additions and 0 deletions

View File

@@ -66,6 +66,7 @@ postgresql-ha:
postgresPassword: postgres
repmgrPassword: repmgr
maxConnections: 1000
sharedBuffers: 50MB
resources:
requests:
cpu: 250m

View File

@@ -39,6 +39,12 @@ services:
image: "postgres:${POSTGRESQL_TAG}"
networks:
openwifi:
command:
- "postgres"
- "-c"
- "max_connections=400"
- "-c"
- "shared_buffers=20MB"
env_file:
- postgresql.env
restart: unless-stopped