-
Notifications
You must be signed in to change notification settings - Fork 4.1k
storage: include range key info in ScanStats #93326
Copy link
Copy link
Closed
Labels
A-storageRelating to our storage engine (Pebble) on-disk storage.Relating to our storage engine (Pebble) on-disk storage.C-enhancementSolution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)T-storageStorage TeamStorage Team
Description
The roachpb.ScanStats struct contains scan statistics that are attached to BatchResponses for observability purposes. This should include information about range keys as well, which will require corresponding changes to pebble.IteratorStats.
Lines 3556 to 3559 in 19f2fad
| KeyBytes: stats.InternalStats.KeyBytes, | |
| ValueBytes: stats.InternalStats.ValueBytes, | |
| PointCount: stats.InternalStats.PointCount, | |
| PointsCoveredByRangeTombstones: stats.InternalStats.PointsCoveredByRangeTombstones, |
Jira issue: CRDB-22275
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
A-storageRelating to our storage engine (Pebble) on-disk storage.Relating to our storage engine (Pebble) on-disk storage.C-enhancementSolution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)Solution expected to add code/behavior + preserve backward-compat (pg compat issues are exception)T-storageStorage TeamStorage Team