-
Notifications
You must be signed in to change notification settings - Fork 576
feat(container-runtime): enable batchId tracking by default with kill-switch and perf telemetry #27262
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
Merged
Merged
feat(container-runtime): enable batchId tracking by default with kill-switch and perf telemetry #27262
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
9d2af54
enable batchId tracking by default
danyymad 446452d
Update packages/runtime/container-runtime/src/test/containerRuntime.s…
dannimad 1050c3d
lint
danyymad f674df1
test fixes
danyymad a08023a
update snapshot validation
danyymad b29d0ff
format
danyymad 031056a
comments
danyymad 90edb00
Merge branch 'main' into dbd-default
anthony-murphy 9d5b32f
disable batch id tracking when grouped batching is disabled
dannimad 2f3c6a8
Merge remote-tracking branch 'origin/main' into dbd-default
dannimad File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Deep Review: Confirming this concern — independent analysis landed on the same finding. The PR's own added comment at
containerRuntime.ts:1893declares the intent: "Offline Load requires both prerequisites, so a consumer that opts into it without them gets an explicit UsageError rather than silent degradation." The constructor enforces that for the FlushMode and grouped-batching prereqs (the two existingif (offlineLoadRequested && ...) throw new UsageError(...)checks at lines ~1916), but not for the new kill-switch.When a host sets
enableOfflineFull=trueand an operator flipsDisableBatchIdTracking=true(the most likely path during an incident),batchIdTrackingEnabledbecomesfalse, noDuplicateBatchDetectoris constructed, batchIds stop being stamped on resubmits (the same flag also gates the metadata path atcontainerRuntime.ts:4995-4999), and anyrecentBatchInfoblob loaded from a prior snapshot is silently dropped on the next summary. Offline resubmission semantics break with no error or telemetry.Suggested fix — add a third precondition check immediately after the existing two:
Or make
offlineLoadRequestedoverridedisableBatchIdTrackingand emit a logged warning. Either choice restores the contract for all three preconditions. Add a unit test parallel to the two existing prereq-error tests incontainerRuntime.spec.ts.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.
enableOfflineFull will be removed in a follow up PR. For know we just wanted to remove the batch id tracking flag safely and eventually just have one feature flag for all offline features.