Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.8.2] — 2026-09-16

### Performance

- **Opening a large agent turn, and the services topology graph, were spending
Expand All @@ -14,9 +16,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
many events match, so the no-JOIN read pattern — fetch the parent, then
`id IN (?, ?, …)` for its children — bought nothing from batching the ids into
one query and paid for every one of them serially. Measured on a production
instance: a 376-call turn took 15.7 s to open, of which 14.1 s was the single
bodies lookup; `/api/services/topology` took 6.0–6.5 s on **every** call, all
of it one `id IN (…)` carrying one term per turn in the window. The cost is
instance: opening an agent turn cost about 35 ms per call it contained, so the
largest turns of the day took 15 s, almost all of it the single bodies lookup;
`/api/services/topology` took 6.0–7.5 s on **every** call, all of it one
`id IN (…)` carrying one term per turn in the window. The cost is
not the payload — the same terms with `| stats count` and no rows returned
still took 12.8 s, while a term-free scan of the same window took 302 ms.

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.1
0.8.2
2 changes: 1 addition & 1 deletion console/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "console",
"private": true,
"version": "0.8.1",
"version": "0.8.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
30 changes: 15 additions & 15 deletions server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ exclude = ["h-ebpf-prog"]
resolver = "2"

[workspace.package]
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "Apache-2.0"

Expand Down
Loading