mirror of https://github.com/citusdata/citus.git
Run citus_indent
parent
62c5090fd8
commit
37198369cd
|
@ -1934,18 +1934,18 @@ RegisterCitusConfigVariables(void)
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
|
|
||||||
DefineCustomIntVariable(
|
DefineCustomIntVariable(
|
||||||
"citus.max_databases_per_worker_tracked",
|
"citus.max_databases_per_worker_tracked",
|
||||||
gettext_noop("Sets the amount of databases per worker tracked."),
|
gettext_noop("Sets the amount of databases per worker tracked."),
|
||||||
gettext_noop(
|
gettext_noop(
|
||||||
"This configuration value complements the citus.max_worker_nodes_tracked."
|
"This configuration value complements the citus.max_worker_nodes_tracked."
|
||||||
"It should be used when there are more then one database with Citus in cluster,"
|
"It should be used when there are more then one database with Citus in cluster,"
|
||||||
"and, effectively, limits the size of the hash table with connections per worker + database."
|
"and, effectively, limits the size of the hash table with connections per worker + database."
|
||||||
"Currently, it does not affect the connection management logic and serves only statistical purposes."),
|
"Currently, it does not affect the connection management logic and serves only statistical purposes."),
|
||||||
&MaxDatabasesPerWorkerNodesTracked,
|
&MaxDatabasesPerWorkerNodesTracked,
|
||||||
1, 1, INT_MAX,
|
1, 1, INT_MAX,
|
||||||
PGC_POSTMASTER,
|
PGC_POSTMASTER,
|
||||||
GUC_STANDARD,
|
GUC_STANDARD,
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
|
|
||||||
DefineCustomIntVariable(
|
DefineCustomIntVariable(
|
||||||
"citus.max_high_priority_background_processes",
|
"citus.max_high_priority_background_processes",
|
||||||
|
@ -1973,16 +1973,16 @@ RegisterCitusConfigVariables(void)
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
|
|
||||||
DefineCustomIntVariable(
|
DefineCustomIntVariable(
|
||||||
"citus.max_maintenance_shared_pool_size",
|
"citus.max_maintenance_shared_pool_size",
|
||||||
gettext_noop("Similar to citus.max_shared_pool_size, but applies to connections "
|
gettext_noop("Similar to citus.max_shared_pool_size, but applies to connections "
|
||||||
"for maintenance operations only."
|
"for maintenance operations only."
|
||||||
"Setting it to 0 or -1 disables maintenance connection throttling."),
|
"Setting it to 0 or -1 disables maintenance connection throttling."),
|
||||||
NULL,
|
NULL,
|
||||||
&MaxMaintenanceSharedPoolSize,
|
&MaxMaintenanceSharedPoolSize,
|
||||||
5, -1, INT_MAX,
|
5, -1, INT_MAX,
|
||||||
PGC_SIGHUP,
|
PGC_SIGHUP,
|
||||||
GUC_SUPERUSER_ONLY,
|
GUC_SUPERUSER_ONLY,
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
|
|
||||||
DefineCustomIntVariable(
|
DefineCustomIntVariable(
|
||||||
"citus.max_matview_size_to_auto_recreate",
|
"citus.max_matview_size_to_auto_recreate",
|
||||||
|
|
Loading…
Reference in New Issue