-
Notifications
You must be signed in to change notification settings - Fork 45
DOC-933 Document new consumer group lag metrics and configs #1014
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
Changes from 6 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
6e33f3d
Add support for collecting consumer lag metrics
JakeSCahill 0e8daf2
DOC-933 Document new consumer group lag metrics and configs
JakeSCahill 2dd3fb3
Add to what's new
JakeSCahill 4179b60
Clarify reason to use each method
JakeSCahill b4a7a58
Clarify reason to use each method
JakeSCahill 53e4592
Tweak wording in what's new
JakeSCahill 0f4c90a
Apply suggestions from code review
JakeSCahill 76b9fb9
Apply suggestions from review
JakeSCahill 9828fce
Apply suggestions from code review
JakeSCahill e3d69e7
Add Minio healthcheck to avoid errors at startup caused by missing bu…
JakeSCahill 74c441b
Apply suggestions
JakeSCahill 24e87e5
Merge branch 'DOC-933' of https://github.com/redpanda-data/docs into …
JakeSCahill File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -414,6 +414,24 @@ This is an internal-only configuration and should be enabled only after consulti | |
|
||
--- | ||
|
||
=== consumer_group_lag_collection_interval_sec | ||
|
||
How often to run the collection loop when <<enable_consumer_group_metrics,`enable_consumer_group_metrics`>> contains `consumer_lag`. | ||
|
||
*Unit:* seconds | ||
|
||
*Requires restart:* No | ||
|
||
*Visibility:* `tunable` | ||
|
||
*Type:* integer | ||
|
||
*Accepted values:* [`-17179869184`, `17179869183`] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These bounds are wild, maybe I should make it bounded. |
||
|
||
*Default:* `60` | ||
|
||
--- | ||
|
||
=== controller_backend_housekeeping_interval_ms | ||
|
||
Interval between iterations of controller backend housekeeping loop. | ||
|
@@ -812,6 +830,54 @@ Maximum amount of time the coordinator waits to snapshot after a command appears | |
|
||
--- | ||
|
||
=== datalake_scheduler_block_size_bytes | ||
|
||
Size, in bytes, of each memory block reserved for record translation, as tracked by the datalake scheduler. | ||
|
||
*Unit:* bytes | ||
|
||
*Requires restart:* Yes | ||
|
||
*Visibility:* `tunable` | ||
|
||
*Type:* integer | ||
|
||
*Default:* `4_mib` | ||
|
||
--- | ||
|
||
=== datalake_scheduler_max_concurrent_translations | ||
|
||
The maximum number of translations that the datalake scheduler will allow to run at a given time. If a translation is requested, but the number of running translations exceeds this value, the request will be put to sleep temporarily, polling until capacity becomes available. | ||
|
||
*Requires restart:* Yes | ||
|
||
*Visibility:* `tunable` | ||
|
||
*Type:* integer | ||
|
||
*Default:* `4` | ||
|
||
--- | ||
|
||
=== datalake_scheduler_time_slice_ms | ||
|
||
Time, in milliseconds, for a datalake translation as scheduled by the datalake scheduler. After a translation is scheduled, it will run until either the time specified has elapsed or all pending records on its source partition have been translated. | ||
|
||
*Unit:* milliseconds | ||
|
||
*Requires restart:* Yes | ||
|
||
*Visibility:* `tunable` | ||
|
||
*Type:* integer | ||
|
||
*Accepted values:* [`-17592186044416`, `17592186044415`] | ||
|
||
*Default:* `30000` | ||
|
||
--- | ||
|
||
=== debug_bundle_auto_removal_seconds | ||
|
||
If set, how long debug bundles are kept in the debug bundle storage directory after they are created. If not set, debug bundles are kept indefinitely. | ||
|
@@ -1063,6 +1129,9 @@ Enables cluster metadata uploads. Required for xref:manage:whole-cluster-restore | |
|
||
List of enabled consumer group metrics. Accepted Values: `group`, `partition`, `consumer_lag`. | ||
|
||
Enabling `consumer_lag` may add extra processing overhead to the broker, especially in environments with a high number of consumer groups or partitions. | ||
The increased frequency of metric collection could result in higher resource utilization. See xref:manage:monitoring.adoc#consumers[Consumer group lag] for more information. | ||
BenPope marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
*Requires restart:* No | ||
|
||
*Visibility:* `user` | ||
|
@@ -1712,6 +1781,20 @@ Default value for the `redpanda.iceberg.delete` topic property that determines i | |
|
||
--- | ||
|
||
=== iceberg_disable_automatic_snapshot_expiry | ||
|
||
Whether to disable automatic Iceberg snapshot expiry. This property may be useful if the Iceberg catalog expects to perform snapshot expiry on its own. | ||
|
||
*Requires restart:* No | ||
|
||
*Visibility:* `user` | ||
|
||
*Type:* boolean | ||
|
||
*Default:* `false` | ||
|
||
--- | ||
|
||
=== iceberg_disable_snapshot_tagging | ||
|
||
Whether to disable tagging of Iceberg snapshots. These tags are used to ensure that the snapshots that Redpanda writes are retained during snapshot removal, which in turn, helps Redpanda ensure exactly-once delivery of records. Disabling tags is therefore not recommended, but may be useful if the Iceberg catalog does not support tags. | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.