Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions reference/analytics/operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,14 @@ Queries analytics data for a specific metric over a time range.
]
```

### Read behavior

`get_analytics` queries read against the latest committed data without holding a consistent read
snapshot open for the duration of the query. This minimizes the impact of long-running analytics
scans on the rest of the system — a query never pins a snapshot that would otherwise block storage
compaction for its duration. The trade-off is that results are not guaranteed to reflect a single point in
time: rows written while the query is iterating may be included.

## Related

- [Analytics Overview](./overview)
Expand Down