update GUC links to official postgres docs (#29801)

* update GUC links to official postgres docs

* fix copy/paste errors
This commit is contained in:
Tyler Fontaine
2024-10-10 10:52:42 -05:00
committed by GitHub
parent f4024c90a1
commit f92d99b3c9

View File

@@ -95,26 +95,26 @@ If a setting you need is not yet configurable, [share your use case with us](htt
The following parameters are available for overrides:
1. [effective_cache_size](https://postgresqlco.nf/doc/en/param/effective_cache_size/)
1. [logical_decoding_work_mem](https://postgresqlco.nf/doc/en/param/logical_decoding_work_mem/) (CLI only)
1. [maintenance_work_mem](https://postgresqlco.nf/doc/en/param/maintenance_work_mem/)
1. [max_connections](https://postgresqlco.nf/doc/en/param/max_connections/) (CLI only)
1. [max_locks_per_transaction](https://postgresqlco.nf/doc/en/param/max_locks_per_transaction/) (CLI only)
1. [max_parallel_maintenance_workers](https://postgresqlco.nf/doc/en/param/max_parallel_maintenance_workers/)
1. [max_parallel_workers_per_gather](https://postgresqlco.nf/doc/en/param/max_parallel_workers_per_gather/)
1. [max_parallel_workers](https://postgresqlco.nf/doc/en/param/max_parallel_workers/)
1. [max_replication_slots](https://postgresqlco.nf/doc/en/param/max_replication_slots/) (CLI only)
1. [max_slot_wal_keep_size](https://postgresqlco.nf/doc/en/param/max_slot_wal_keep_size/) (CLI only)
1. [max_standby_archive_delay](https://postgresqlco.nf/doc/en/param/max_standby_archive_delay) (CLI only)
1. [max_standby_streaming_delay](https://postgresqlco.nf/doc/en/param/max_standby_streaming_delay) (CLI only)
1. [max_wal_size](https://postgresqlco.nf/doc/en/param/max_wal_size) (CLI only)
1. [max_wal_senders](https://postgresqlco.nf/doc/en/param/max_wal_senders) (CLI only)
1. [max_worker_processes](https://postgresqlco.nf/doc/en/param/max_worker_processes) (CLI only)
1. [session_replication_role](https://postgresqlco.nf/doc/en/param/session_replication_role)
1. [shared_buffers](https://postgresqlco.nf/doc/en/param/shared_buffers) (CLI only)
1. [wal_keep_size](https://postgresqlco.nf/doc/en/param/wal_keep_size) (CLI only)
1. [wal_sender_timeout](https://postgresqlco.nf/doc/en/param/wal_sender_timeout) (CLI only)
1. [work_mem](https://postgresqlco.nf/doc/en/param/work_mem/)
1. [effective_cache_size](https://www.postgresql.org/docs/current/runtime-config-query.html#GUC-EFFECTIVE-CACHE-SIZE)
1. [logical_decoding_work_mem](https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-LOGICAL-DECODING-WORK-MEM) (CLI only)
1. [maintenance_work_mem](https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-MAINTENANCE-WORK-MEM)
1. [max_connections](https://www.postgresql.org/docs/current/runtime-config-connection.html#GUC-MAX-CONNECTIONS) (CLI only)
1. [max_locks_per_transaction](https://www.postgresql.org/docs/current/runtime-config-locks.html#GUC-MAX-LOCKS-PER-TRANSACTION) (CLI only)
1. [max_parallel_maintenance_workers](https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-MAX-PARALLEL-MAINTENANCE-WORKERS)
1. [max_parallel_workers_per_gather](https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-MAX-PARALLEL-WORKERS-PER-GATHER)
1. [max_parallel_workers](https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-MAX-PARALLEL-WORKERS)
1. [max_replication_slots](https://www.postgresql.org/docs/current/runtime-config-replication.html#GUC-MAX-REPLICATION-SLOTS) (CLI only)
1. [max_slot_wal_keep_size](https://www.postgresql.org/docs/current/runtime-config-replication.html#GUC-MAX-SLOT-WAL-KEEP-SIZE) (CLI only)
1. [max_standby_archive_delay](https://www.postgresql.org/docs/current/runtime-config-replication.html#GUC-MAX-STANDBY-ARCHIVE-DELAY) (CLI only)
1. [max_standby_streaming_delay](https://www.postgresql.org/docs/current/runtime-config-replication.html#GUC-MAX-STANDBY-STREAMING-DELAY) (CLI only)
1. [max_wal_size](https://www.postgresql.org/docs/current/runtime-config-wal.html#GUC-MAX-WAL-SIZE) (CLI only)
1. [max_wal_senders](https://www.postgresql.org/docs/current/runtime-config-replication.html#GUC-MAX-WAL-SENDERS) (CLI only)
1. [max_worker_processes](https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-MAX-WORKER-PROCESSES) (CLI only)
1. [session_replication_role](https://www.postgresql.org/docs/current/runtime-config-client.html#GUC-SESSION-REPLICATION-ROLE)
1. [shared_buffers](https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-SHARED-BUFFERS) (CLI only)
1. [wal_keep_size](https://www.postgresql.org/docs/current/runtime-config-replication.html#GUC-WAL-KEEP-SIZE) (CLI only)
1. [wal_sender_timeout](https://www.postgresql.org/docs/current/runtime-config-replication.html#GUC-WAL-SENDER-TIMEOUT) (CLI only)
1. [work_mem](https://www.postgresql.org/docs/current/runtime-config-replication.html#GUC-WAL-SENDER-TIMEOUT)
#### Managing Postgres configuration with the CLI