Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(updater): bump pkg/dist/*.yml (2024-02-08) #115

Merged
merged 1 commit into from
Feb 8, 2024
Merged
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
9 changes: 8 additions & 1 deletion pkg/dist/service_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5175,11 +5175,13 @@ pg:
- value: "16"
pgbouncer:
title: PGBouncer connection pooling settings
description: System-wide settings for pgbouncer.
type: object
properties:
autodb_idle_timeout:
title: If the automatically created database pools have been unused this many seconds, they are freed. If 0 then timeout is disabled. [seconds]
type: integer
default: "3600"
minimum: 0
maximum: 86400
example: "3600"
Expand All @@ -5192,6 +5194,7 @@ pg:
autodb_pool_mode:
title: PGBouncer pool mode
type: string
default: transaction
enum:
- value: session
- value: transaction
Expand All @@ -5200,14 +5203,14 @@ pg:
autodb_pool_size:
title: If non-zero then create automatically a pool of that size per user when a pool doesn't exist.
type: integer
default: "0"
minimum: 0
maximum: 10000
example: "0"
ignore_startup_parameters:
title: List of parameters to ignore when given in startup packet
type: array
items:
title: Enum of parameters to ignore when given in startup packet
type: string
enum:
- value: extra_float_digits
Expand All @@ -5219,24 +5222,28 @@ pg:
min_pool_size:
title: Add more server connections to pool if below this number. Improves behavior when usual load comes suddenly back after period of total inactivity. The value is effectively capped at the pool size.
type: integer
default: "0"
minimum: 0
maximum: 10000
example: "0"
server_idle_timeout:
title: If a server connection has been idle more than this many seconds it will be dropped. If 0 then timeout is disabled. [seconds]
type: integer
default: "600"
minimum: 0
maximum: 86400
example: "600"
server_lifetime:
title: The pooler will close an unused server connection that has been connected longer than this. [seconds]
type: integer
default: "3600"
minimum: 60
maximum: 86400
example: "3600"
server_reset_query_always:
title: Run server_reset_query (DISCARD ALL) in all pooling modes
type: boolean
default: false
example: false
pglookout:
title: PGLookout settings
Expand Down
Loading