Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
7d4b0f5
Add first draft of operator-focused benchmarking post
SamBarker May 1, 2026
62f0c57
Add first draft of engineering deep-dive benchmarking post
SamBarker May 1, 2026
2f7aac9
Add performance reference page and update overview
SamBarker May 1, 2026
ab9f8f3
Update benchmarking posts with validated coefficient and corrected fr…
SamBarker May 15, 2026
b15db46
Strengthen flamegraph narrative with selective L7 proxy story
SamBarker May 15, 2026
df31c82
Tone pass on Post 1 and performance reference page
SamBarker May 15, 2026
1fb3455
WIP: Redrafting the engineering deep dive
SamBarker May 15, 2026
0f7f712
Tone pass and narrative restructure on engineering post
SamBarker May 17, 2026
781a6f6
Standardise on msg/s throughout (was mixed msg/s and msg/sec)
SamBarker May 18, 2026
dddfd9b
Rewrite workload design section with context and reasoning
SamBarker May 18, 2026
38d47fd
Voice consistency pass on engineering post
SamBarker May 18, 2026
23dde0f
Strengthen passthrough proxy section with L7 and contention insights
SamBarker May 19, 2026
87b4605
Rewrite False summit section as detective story
SamBarker May 19, 2026
6a5b4d3
Update benchmark numbers to 8-node reference cluster
SamBarker May 20, 2026
775a40f
Humanise flamegraph section and add OSS data sharing to run it yourself
SamBarker May 20, 2026
5c5524f
Polish voice, fix typos, and mark stale flamegraph references
SamBarker May 20, 2026
0bda448
Add TL;DR, fix opening sentence, and address Bob's review suggestions
SamBarker May 21, 2026
4e603e1
Add runtime estimate, gist link, and fix em dash in post 2
SamBarker May 21, 2026
b9864ed
Add statistical significance narrative to coefficient section
SamBarker May 21, 2026
2a18c22
Address claude.ai review suggestions for post 1
SamBarker May 21, 2026
02fc451
Remove post_url links to companion post pending its publish date
SamBarker May 21, 2026
2986991
Address showuon review comments on post 1
SamBarker May 21, 2026
d36cad2
Reschedule posts to 26 May and 2 June
SamBarker May 21, 2026
77351b7
Fix typo, gitignore DS_Store and .op, remove accidentally tracked files
SamBarker May 21, 2026
2f0571d
Remove locally-generated SNAPSHOT files from tracking
SamBarker May 21, 2026
b6073cb
Update Post 1 with final benchmark data and significance results
SamBarker May 25, 2026
6a239cf
Label all companion post references as "coming soon"
SamBarker May 27, 2026
fc4e2cb
Address Paul's wording suggestions in Post 1
SamBarker May 27, 2026
b0e5033
Address showuon's latency and memory comments
SamBarker May 27, 2026
d01cad4
Update sizing formula with measured coefficient and clearer structure
SamBarker May 28, 2026
095be15
Drop ceiling table from Post 1 — data doesn't support it
SamBarker May 28, 2026
3663c6b
Remove Post 2 from PR — moving to separate PR
SamBarker May 28, 2026
5e1df87
Update Post 1 publication date to 2026-05-28 14:30 NZT
SamBarker May 28, 2026
de36657
Fix encryption latency claim in TL;DR to match actual data
SamBarker May 28, 2026
203a308
Correct and expand test environment section
SamBarker May 28, 2026
61bd80b
Fix test environment accuracy and add table styling for posts
SamBarker May 28, 2026
7529e22
Restructure passthrough latency section and fix several inaccuracies
SamBarker May 28, 2026
dae74a5
Add 1-topic passthrough table and verify sub-saturation data
SamBarker May 28, 2026
b4ea408
Explain millicores unit and add bare-metal conversion note
SamBarker May 28, 2026
62eca46
Strengthen caveats section with sub-saturation and scope fixes
SamBarker May 28, 2026
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
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ vendor
*.iml
*/bootstrap/
_config-overrides.yml
.ruby-version
.ruby-version
.DS_Store
.op/
_data/documentation/*-SNAPSHOT.yaml
_data/release/*-SNAPSHOT.yaml
download/*-SNAPSHOT/
195 changes: 195 additions & 0 deletions _posts/2026-05-28-benchmarking-the-proxy.md

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions _sass/kroxylicious.scss
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,25 @@ b.conum * {
margin-bottom: calc(var(--#{$prefix}card-title-spacer-y) / 2);
}

.card-text {
table {
width: auto;
max-width: 100%;
margin-bottom: 1rem;
border-collapse: collapse;

th, td {
padding: 0.5rem 1.25rem;
border: 1px solid var(--bs-border-color);
}

thead tr {
border-bottom: 2px solid var(--bs-border-color);
background-color: var(--bs-tertiary-bg);
}
}
}

// Documentation page filtering
.doc-filters {
display: flex;
Expand Down
Loading
Loading