Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion ansible/files/postgresql_config/postgresql.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion nix/tools/update_readme.nu
Original file line number Diff line number Diff line change
Expand Up @@ -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."
]

Expand Down
Loading