Document rebuild coalesced_events in client-perf-diagnosis skill#5605
Open
habdelra wants to merge 1 commit into
Open
Document rebuild coalesced_events in client-perf-diagnosis skill#5605habdelra wants to merge 1 commit into
habdelra wants to merge 1 commit into
Conversation
The rebuild telemetry carries coalesced_events — the count of incremental index events that collapsed into one rebuild. Add it to the rebuild event field table and to Mode E, with how to read it: 1 is an isolated edit, >1 is a write burst absorbed into a single rebuild, so a burst shows as few rebuild events with high coalesced_events rather than one per event. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: e3d2b22280
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
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.
The
rebuildclient-perf telemetry event carries acoalesced_eventsfield — the number of incremental index events that collapsed into a single loader/store rebuild. This documents it in theclient-perf-diagnosisskill so the field is usable when reading the dashboard.coalesced_eventsto therebuildrow of the event-field table.coalesced_events= 1 is an isolated edit (one event, one rebuild);> 1is a write burst absorbed into a single rebuild. The burst signature is therefore fewrebuildevents with highcoalesced_events, not onerebuildperrealm-event. A LogQL snippet unwrapscoalesced_eventsat p95, and the paragraph distinguishes real coalescing from events simply arriving slower than a rebuild completes.Stacked on the
client-perf-diagnosisskill branch; retarget tomainonce that lands.🤖 Generated with Claude Code