feat(cli): deployment-filtered status renders the data-plane apply id as APPLY ID - #1062
Draft
aparajon wants to merge 3 commits into
Draft
feat(cli): deployment-filtered status renders the data-plane apply id as APPLY ID#1062aparajon wants to merge 3 commits into
aparajon wants to merge 3 commits into
Conversation
… as APPLY ID A deployment-filtered status list is the deployment's view of each apply, and the handle its operator correlates with the data plane's own storage and logs is the data-plane apply id — not the control-plane identifier. The APPLY ID column now carries the deployment's data-plane apply id when one is recorded, falling back to the control-plane apply id when none is (not yet dispatched, locally driven, or omitted after divergence) so every row keeps a usable handle. The EXTERNAL OP ID column keeps the per-operation remote row id; outside deployment mode nothing changes. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
… into armand/deployment-apply-id-cli
… into armand/deployment-apply-id-cli
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.
Why this matters
An operator running a deployment-filtered status scan is asking the data plane's question: what is the control plane driving on my deployment? The handle they correlate with the data plane's own storage and logs is the data-plane apply id — but the list rendered only the control-plane identifier, forcing a detour through detail views (or the data plane's tables) to find it.
What it does
--deploymentmode theAPPLY IDcolumn renders the deployment's data-plane apply id when one is recorded — the id the read model now surfaces for both single-operation and folded per-shard rows.EXTERNAL OP IDcolumn is unchanged (per-operation remote row id), and nothing changes outside deployment mode.How it moves us toward the northstar
One data-plane apply per deployment; operations dispatch into it.
Opened by Claude (Fable 5).