-
Notifications
You must be signed in to change notification settings - Fork 606
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
Workload read without consumer and metrics fixes #1792
Workload read without consumer and metrics fixes #1792
Conversation
⚪
|
⚪
|
⚪
|
⚪
|
⚪
|
⚪
|
ydb/core/persqueue/read_balancer.cpp
Outdated
@@ -536,7 +538,8 @@ void TPersQueueReadBalancer::Handle(TEvPersQueue::TEvUpdateBalancerConfig::TPtr | |||
Consumers[rr]; | |||
} | |||
} | |||
|
|||
Consumers[CLIENTID_WITHOUT_CONSUMER]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Read without consumer doesn't use read balancer. Why do we need this line?
@@ -31,6 +31,20 @@ | |||
name=topic.reserve.used_bytes: 0 | |||
name=topic.storage_bytes: 0 | |||
|
|||
consumer=$without_consumer: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not what we want to see. No label consumer is possible solution. But some sensors are useless in reading without consumer. Sensor topic.partition.committed_end_to_end_lag_milliseconds_max is undefined for example.
⚪
|
⚪
|
e81f997
to
8ff4db8
Compare
⚪
|
⚪
|
⚪
|
⚪
|
9958322
to
39df411
Compare
⚪
|
⚪
|
⚪
|
⚪
|
⚪
|
⚪
|
⚪
|
Changelog entry
Changelog category
Additional information
...