Skip to content

chore(updater): bump pkg/dist/*.yml (2025-02-21) #266

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

Merged
merged 1 commit into from
Feb 21, 2025
Merged
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 pkg/dist/integration_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ clickhouse_kafka:
example: topic_name
user_error: Must consist of alpha-numeric characters, underscores, dashes or dots, max 249 characters
max_items: 100
max_items: 100
max_items: 400
clickhouse_postgresql:
title: Integration user config
type: object
Expand Down
19 changes: 19 additions & 0 deletions pkg/dist/service_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2664,6 +2664,13 @@ kafka:
description: If true the consumer's offset will be periodically committed to Kafka in the background
type: boolean
default: true
consumer_idle_disconnect_timeout:
title: consumer.idle.disconnect.timeout
description: Specifies the maximum duration (in seconds) a client can remain idle before it is deleted. If a consumer is inactive, it will exit the consumer group, and its state will be discarded. A value of 0 (default) indicates that the consumer will not be disconnected automatically due to inactivity.
type: integer
default: "0"
minimum: 0
maximum: 2.147483647e+09
consumer_request_max_bytes:
title: consumer.request.max.bytes
description: Maximum number of bytes in unencoded message keys and values by a single request
Expand Down Expand Up @@ -6924,6 +6931,11 @@ valkey:
minimum: 0
maximum: 59
example: "30"
enable_ipv6:
title: Enable IPv6
description: Register AAAA DNS records for the service, and allow IPv6 packets to service ports
type: boolean
example: true
frequent_snapshots:
title: Frequent RDB snapshots
description: When enabled, Valkey will create frequent local RDB snapshots. When disabled, Valkey will only take RDB snapshots when a backup is created, based on the backup schedule. This setting is ignored when `valkey_persistence` is set to `off`.
Expand Down Expand Up @@ -7085,6 +7097,13 @@ valkey:
enum:
- value: allchannels
- value: resetchannels
valkey_active_expire_effort:
title: Active expire effort
description: Valkey reclaims expired keys both when accessed and in the background. The background process scans for expired keys to free memory. Increasing the active-expire-effort setting (default 1, max 10) uses more CPU to reclaim expired keys faster, reducing memory usage but potentially increasing latency.
type: integer
default: "1"
minimum: 1
maximum: 10
valkey_io_threads:
title: Valkey IO thread count
description: Set Valkey IO thread count. Changing this will cause a restart of the Valkey service.
Expand Down