Skip to content

Commit 754c2e8

Browse files
Version Packages
1 parent c259e7b commit 754c2e8

8 files changed

Lines changed: 25 additions & 18 deletions

File tree

.changeset/drop-empty-response-spans.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/wal-write-path-perf-and-recovery-fixes.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

packages/durable-streams-rust/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @electric-ax/durable-streams-server-rust
22

3+
## 0.1.4
4+
5+
### Patch Changes
6+
7+
- 640509c: Write-path performance overhaul plus three crash-recovery correctness fixes.
8+
9+
Performance: removed the WAL group-commit coordination ceiling (+55–60% saturated write throughput, p99 41→12 ms), fixed the 200k–1M stream-cardinality write cliff (1M streams now sustains 1.11M ops/s on 16 vCPU), and made `--durability memory` the buffered append path (4× faster, no longer Linux-only). New flags: `--wal-stats <secs>` and `--worker-threads <n>`.
10+
11+
Fixes (found by the new seeded crash/fault simulation): multi-segment WAL recovery no longer drops acked records after the first segment; a torn, never-acked tail on a quiet stream is truncated instead of becoming reader-visible; an acked DELETE is now durable before the 204.
12+
313
## 0.1.3
414

515
### Patch Changes

packages/durable-streams-rust/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@electric-ax/durable-streams-server-rust",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "High-performance Durable Streams server (Rust) — native binary distributed via npm.",
55
"license": "Apache-2.0",
66
"type": "module",

packages/electric-telemetry/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @core/electric-telemetry
22

3+
## 0.3.3
4+
5+
### Patch Changes
6+
7+
- c259e7b: Tail-drop the OpenTelemetry spans of empty/up-to-date shape-GET responses at export time to cut trace volume. Disabled by default; set `ELECTRIC_DROP_EMPTY_RESPONSE_SPANS=true` to enable the drop. Error (5xx) and SSE responses are never dropped.
8+
39
## 0.3.2
410

511
### Patch Changes
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@core/electric-telemetry",
33
"private": true,
4-
"version": "0.3.2"
4+
"version": "0.3.3"
55
}

packages/sync-service/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @core/sync-service
22

3+
## 1.7.7
4+
5+
### Patch Changes
6+
7+
- c259e7b: Tail-drop the OpenTelemetry spans of empty/up-to-date shape-GET responses at export time to cut trace volume. Disabled by default; set `ELECTRIC_DROP_EMPTY_RESPONSE_SPANS=true` to enable the drop. Error (5xx) and SSE responses are never dropped.
8+
39
## 1.7.6
410

511
### Patch Changes

packages/sync-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@core/sync-service",
33
"private": true,
4-
"version": "1.7.6",
4+
"version": "1.7.7",
55
"scripts": {
66
"publish:hex": "../../scripts/publish_hex.sh electric",
77
"changeset": "pushd ../..; pnpm changeset; popd"

0 commit comments

Comments
 (0)