proto: add dataplane v1alpha3 IcebergService - #2590
Open
Mateoc wants to merge 1 commit into
Open
Conversation
Adds the public, read-only IcebergService to the dataplane v1alpha3 API with a single GetIcebergStatus RPC reporting Iceberg catalog reachability and per-topic/partition translated/committed offsets and commit lag. Includes generated Go/TS code and OpenAPI specs. The implementation lives in console-enterprise and proxies the Redpanda Admin API v2 IcebergService. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Contributor
|
The latest Buf updates on your PR. Results from workflow Buf CI / validate (pull_request).
|
Contributor
✅ Clean — no registry drift, off-token colours, or ad-hoc classesApp:
Generated by lookout audit-changes. |
r-vasquez
approved these changes
Aug 4, 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.
Summary
Adds the public, read-only
IcebergServiceto the dataplane v1alpha3 API:GetIcebergStatus(GET /v1/iceberg) reporting Iceberg catalog reachability and, per Iceberg topic, the per-partition translated/committed offsets and commit lag. Supports an optionaltopics_filter.PERMISSION_ADMIN/API_REDPANDA_ADMIN(enforced declaratively by the enterprise policy engine).Translation lag (live-log HWM minus translated offset) is deliberately not returned — it is a client-side join with the Kafka API.
The service implementation lives in console-enterprise (companion PR on the same branch name) and proxies the Redpanda Admin API v2
IcebergService.Testing
GET /v1/icebergroute through to the broker's admin v2 API.🤖 Generated with Claude Code