@@ -21,6 +21,57 @@ options:
2121 description : |
2222 Controls whether Gather and Gather Merge also run subplans.
2323 type : boolean
24+ cpu-max-logical-replication-workers :
25+ description : |
26+ Sets the maximum number of logical replication workers. Should be either "auto"
27+ or a positive integer value. Restart is required when changed.
28+ auto = max_worker_processes.
29+ type : string
30+ default : " auto"
31+ cpu-max-parallel-apply-workers-per-subscription :
32+ description : |
33+ Sets the maximum number of parallel apply workers per subscription.
34+ Should be either "auto" or a positive integer value.
35+ auto = max_worker_processes.
36+ type : string
37+ default : " auto"
38+ cpu-max-parallel-maintenance-workers :
39+ description : |
40+ Sets the maximum number of workers that can be used for parallel maintenance operations
41+ like CREATE INDEX. Should be either "auto" or a positive integer value.
42+ Cannot exceed max_parallel_workers.
43+ auto = max_worker_processes.
44+ type : string
45+ default : " auto"
46+ cpu-max-parallel-workers :
47+ description : |
48+ Sets the maximum number of workers that can be used for parallel operations.
49+ Should be either "auto" or a positive integer value. Cannot exceed max_worker_processes.
50+ auto = max_worker_processes.
51+ type : string
52+ default : " auto"
53+ cpu-max-sync-workers-per-subscription :
54+ description : |
55+ Sets the maximum number of synchronization workers per subscription.
56+ Should be either "auto" or a positive integer value.
57+ auto = max_worker_processes.
58+ type : string
59+ default : " auto"
60+ cpu-max-worker-processes :
61+ description : |
62+ Sets the maximum number of background processes that the system can support.
63+ Should be either "auto" or a positive integer value.
64+ auto = minimum(8, 2 * vCores). Value will be capped at 10 * vCores if exceeded.
65+ Restart is required when changed.
66+ type : string
67+ default : " auto"
68+ cpu-wal-compression :
69+ description : |
70+ Enable compression of full-page writes written in WAL. Compression reduces
71+ the I/O needed for local storage and replication.
72+ Default is on (true).
73+ type : boolean
74+ default : true
2475 durability-synchronous-commit :
2576 description : |
2677 Sets the current transactions synchronization level. This charm allows only the
@@ -758,6 +809,7 @@ options:
758809 Allowed values are: from 0 to 2000000000.
759810 type : int
760811
812+
761813 # Deprecated options
762814 synchronous_node_count :
763815 description : |
0 commit comments