Conversation
backlogMetricsIntervalSeconds was a dedicated CR field, added by zenko-operator#626 and reverted by #633 right after v1.8.16 in favour of the generic backbeat.configurationOverrides map. The two spellings never coexist in a released operator: v1.8.16 knows only the field, and every 1.8 release after it knows only the override. So the e2e config and the operator pin have to move together, and bumping the operator without this change breaks the whole suite on a rejected field. KAFKA_BACKLOG_METRICS_INTERVALS is backbeat's declared env alias for kafka.backlogMetrics.intervalS, so the value reaches the same config key with the same unit the removed field used. It is set on the four consumers whose lag the lifecycle conductor waits on. Issue: ZENKO-5359
Contributor
Hello delthas,My role is to assist you with the merge of this Available options
Available commands
Status report is not available. |
Contributor
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
|
francoisferrand
approved these changes
Sep 17, 2026
benzekrimaha
approved these changes
Sep 17, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
backbeat.backlogMetricsIntervalSecondsis a dedicated CR field the operator no longer has: scality/zenko-operator#626 added it, scality/zenko-operator#633 reverted it right afterv1.8.16in favour of the genericbackbeat.configurationOverridesmap.The two spellings never coexist in a released operator:
backlogMetricsIntervalSecondsbackbeat.configurationOverridesv1.8.16ZenkoSpecSorbetv1.8.17So the config and the operator pin have to move together, and bumping the operator without this change fails the whole suite on a rejected field. Hence both in one commit.
KAFKA_BACKLOG_METRICS_INTERVALSis backbeat's declared env alias forkafka.backlogMetrics.intervalS(intervalS: joi.number().default(60).meta({ env: 'INTERVALS' })), so the value reaches the same key with the same unit — seconds — as the removed field did. It is set on the four consumers whose lag the lifecycle conductor waits on.Split out of #2532, which carries the same change but is blocked on a zenko-operator 1.9 PR and so cannot land on this timeline.
Issue: ZENKO-5359