You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(sql): show bridge badge for Iceberg-tiered topics before sync [UX-1330]
The SQL editor's "Bridge query" badge was gated on the presence of an
Iceberg lag metric series rather than on whether the queried topic is
actually Iceberg-tiered. A freshly-tiered topic that hasn't started
translating yet emits no `iceberg_topic_translation_lag` /
`iceberg_topic_commit_lag` series, so `bridge` resolved to undefined and
the query — every row served from the topic tail — looked like a plain
query.
Classify bridge-ness from the authoritative `redpanda.iceberg.mode`
config (via useTopicIcebergQuery, already used by the catalog tree),
independent of lag-metric availability. Lag values default to 0 when
their series is absent; the lag timeline stays hidden until real lag
appears, but the badge now shows for any tiered topic.
0 commit comments