diff --git a/README.md b/README.md index 6add67a24..f90b3028b 100644 --- a/README.md +++ b/README.md @@ -215,7 +215,7 @@ This is the same PostgreSQL build that powers [Supabase](https://supabase.io), b - ✅ Postgres [postgresql-17.6](https://www.postgresql.org/docs/17/index.html) - ✅ Postgres [orioledb-postgresql-17_11](https://github.com/orioledb/orioledb) - ✅ Ubuntu 24.04 (Noble Numbat). -- ✅ [wal_level](https://www.postgresql.org/docs/current/runtime-config-wal.html) = logical and [max_replication_slots](https://www.postgresql.org/docs/current/runtime-config-replication.html) = 5. Ready for replication. +- ✅ [wal_level](https://www.postgresql.org/docs/current/runtime-config-wal.html) = logical and [max_replication_slots](https://www.postgresql.org/docs/current/runtime-config-replication.html) = 10. Ready for replication. - ✅ [Large Systems Extensions](https://github.com/aws/aws-graviton-getting-started#building-for-graviton-and-graviton2). Enabled for ARM images. ## Extensions diff --git a/ansible/files/postgresql_config/postgresql.conf.j2 b/ansible/files/postgresql_config/postgresql.conf.j2 index 154ec1341..bab1eaeb1 100644 --- a/ansible/files/postgresql_config/postgresql.conf.j2 +++ b/ansible/files/postgresql_config/postgresql.conf.j2 @@ -296,7 +296,7 @@ checkpoint_flush_after = 256kB # measured in pages, 0 disables max_wal_senders = 10 # max number of walsender processes # (change requires restart) -max_replication_slots = 5 # max number of replication slots +max_replication_slots = 10 # max number of replication slots # (change requires restart) #wal_keep_size = 0 # in megabytes; 0 disables max_slot_wal_keep_size = 512 # in megabytes; -1 disables diff --git a/nix/tools/update_readme.nu b/nix/tools/update_readme.nu index 0b233ebce..c36c84c4b 100755 --- a/nix/tools/update_readme.nu +++ b/nix/tools/update_readme.nu @@ -229,7 +229,7 @@ def update_readme [] { let features_content = [ ($pg_versions | each {|version| create_version_link $version} | str join "\n") "- ✅ Ubuntu 24.04 (Noble Numbat)." - "- ✅ [wal_level](https://www.postgresql.org/docs/current/runtime-config-wal.html) = logical and [max_replication_slots](https://www.postgresql.org/docs/current/runtime-config-replication.html) = 5. Ready for replication." + "- ✅ [wal_level](https://www.postgresql.org/docs/current/runtime-config-wal.html) = logical and [max_replication_slots](https://www.postgresql.org/docs/current/runtime-config-replication.html) = 10. Ready for replication." "- ✅ [Large Systems Extensions](https://github.com/aws/aws-graviton-getting-started#building-for-graviton-and-graviton2). Enabled for ARM images." ]