jojochuang commented on code in PR #488:
URL: https://github.com/apache/ozone-site/pull/488#discussion_r3574366564


##########
blog/2026-06-27-ozone-s3-compatibility/index.md:
##########
@@ -0,0 +1,164 @@
+---
+title: "Making Apache Ozone’s S3 Compatibility Visible"
+date: 2026-06-27
+authors: ["peterxcli"]
+tags: [Ozone, S3, compatibility]
+---
+
+<!-- cspell:ignore peterxcli Xiangpeng ish laggy Zstd overclaim amz -->
+
+Recently I created 
[https://ozone.s3.peterxcli.dev/](https://ozone.s3.peterxcli.dev/), an 
automated update dashboard for Apache Ozone S3 compatibility. It runs Ozone 
against real S3 compatibility suites, publishes the result every day, and lets 
you search test cases, inspect failures, read source snippets, open logs, and 
check whether your PR really helps the compatibility story. It is fully open 
source at 
[https://github.com/peterxcli/ozone-s3-compatibility](https://github.com/peterxcli/ozone-s3-compatibility).
+
+<!-- truncate -->
+
+TL;DR:
+
+- This really helped me get promoted as a PMC member of the Apache Ozone 
project.
+- Overall, **7% (50/711)** compatibility improvement at the time that this 
article was written.
+- Parquet \+ search-index optimization made the Pages data **11.8x smaller**, 
yearly git growth **12x slower**, and search data **14x smaller**.
+- It runs Apache Ozone against 
[`ceph/s3-tests`](https://github.com/ceph/s3-tests) and 
[`minio/mint`](https://github.com/minio/mint), then publishes a GitHub Pages 
report.
+- It turns compatibility from “a few epic tickets and some memory in people’s 
heads” into a searchable, linkable, daily signal.
+- For users, it answers “does Ozone support this S3 behavior today?” For 
developers, it answers “which exact test is failing, why, and did my PR move 
it?”
+
+## Why did I create it?
+
+Before this dashboard was introduced, Apache Ozone already tried really hard 
to track the compatibility gap with a few epic issues, for example: [Ozone S3 
gateway Phase 4](https://issues.apache.org/jira/browse/HDDS-1186), [Ozone S3 
gateway (phase III)](https://issues.apache.org/jira/browse/HDDS-12716), and [S3 
API compatibility improvements and 
fixes](https://issues.apache.org/jira/browse/HDDS-8423).
+
+But I believe if you really click into the above links, you will quickly get 
lost among them. They are useful, but they are not a fresh report of what 
Apache Ozone’s S3 compatibility looks like today.
+
+Users don’t know whether Ozone really supports a specific S3 behavior. 
Developers don’t know whether a feature gap, implementation gap, or corner case 
is already handled correctly. And when a compatibility issue is fixed or newly 
introduced, there was no fresh source of truth to show that change.
+
+Also, when we develop S3 features, we often look at AWS S3 docs or source code 
from other open source S3-compatible systems, then infer how the implementation 
should behave and what test cases we should add. That works sometimes, but it 
is still mostly guessing. There was no easy harness to continuously test 
Ozone’s behavior against existing compatibility suites and make the result easy 
to inspect.
+
+So that’s why I wanted to create this dashboard.
+
+## How to use it?
+
+I usually think of the dashboard as having a few different modes.
+
+First, start from the latest run summary. The top cards show the current 
`s3-tests` and `mint` compatibility rate, eligible case count, pass/fail/error 
count, skipped count, and the delta compared with the previous run. This makes 
it easy to know whether today’s result is better, worse, or basically 
unchanged. One small detail here: the compatibility rate is `passed / (passed + 
failed + errored)`.
+
+![overview](overview.png)
+
+Second, use the search box as the main debugging entry point. You can search 
by suite, test name, run id, run date, source path, feature name, status, or 
failure text. For example, if you are working on object tagging, you can search 
for `tagging`; if you are looking at a specific failure from `s3-tests`, you 
can paste part of the error message. Search results show the matched fields, 
suite, run date, status, feature tags, and a short failure preview.
+![test-case-search](test-case-search.png)
+
+Third, click a search result. The modal shows the full failure detail, related 
metadata, a permalink, and the test code. For `s3-tests`, the dashboard can 
fetch the upstream source file and extract the Python test function, so you 
don’t need to jump between the report, GitHub, and your local checkout just to 
understand what the test is really asking for.
+
+![test-case-search-detail](test-case-search-detail.png)
+
+Fourth, open the current report detail. The page does not force-load all case 
details at the beginning. Instead, it loads summary first, then fetches the 
full run detail when you open the latest run or an archived run. Inside the run 
detail, you can inspect suites, feature summaries, individual failed cases, and 
log files.
+![run-overview](run-overview.png)
+![run-expanded](run-expanded.png)
+![run-detail](run-detail.png)
+
+Fifth, use the trend panel. The top-line trend is useful to see whether the 
overall compatibility is moving. The per-feature trend is even more useful 
because a single global number can hide what really changed. For example, a PR 
might only improve object tagging, bucket listing, copy object behavior, or 
some conditional-write corner case. Those changes are much easier to reason 
about feature by feature.
+
+![trend-panel](trend-panel.png)
+
+Sixth, use archived runs when you need history. Old runs are still there, but 
their details are loaded only when opened. This is helpful when you want to 
compare a failure today with an older run, or when a PR says “this test used to 
fail before the fix.”
+![archived-runs](archived-runs.png)
+
+Finally, the Parquet file inspector is there for people who want to inspect 
the published dataset itself. This is mostly for debugging the dashboard and 
data model, but it is surprisingly useful when you want to understand what 
files were generated, how many rows they contain, and whether the published 
data looks sane. Also thanks Xiangpeng for building the [Parquet 
Viewer](https://github.com/XiangpengHao/parquet-viewer), which let us inspect 
the parquet file content directly on the site.
+![parquet-file-inspector](parquet-file-inspector.png)
+![parquet-file-viewer](parquet-file-viewer.png)
+
+For PR authors, there is also a PR comparison workflow. It can run an Ozone PR 
head, compare it with the latest published main run, write a step summary, and 
optionally comment back on the Ozone PR. That is the part I like the most: 
compatibility is not just a dashboard to look at, but something you can wire 
into development review.
+
+## How is this built?
+
+For the very first version, I literally just prompted Codex with `gpt5.4 
xhigh`:
+
+:::info Prompt
+I want to create a repo that runs 
[https://github.com/ceph/s3-tests](https://github.com/ceph/s3-tests) and 
[https://github.com/minio/mint](https://github.com/minio/mint) on GitHub Action 
and generate the compatibility report page on GitHub Pages nightly. Make the 
page pretty. My desired steps that run in the GitHub Action are: clone the 
Ozone repo, pull latest master change, compile, start running cluster, run Mint 
and s3-tests to get result, compile result to be the page. We can show the 
compatibility rate of each feature for each test (`s3-tests`, `mint`) daily 
change as a chart at the page top, followed by the report page, then also 
include the old result expansion button to allow users to check a specific 
date’s running result. BTW I have the local clone of Ozone at 
`~/Documents/oss/apache/ozone`, you can look into it directly without searching 
the codebase on the website.
+:::
+
+Then it almost one-shotted this. Actually I still made some follow-ups on the 
result, like “attach `s3-tests` and `mint` as submodule” and “use `act` to test 
the GitHub Action really works locally within Docker”, but those were 
relatively minor compared with the first scaffold.
+
+The nightly workflow now does roughly this:
+
+1. Build the Vue/Vite report frontend.
+2. Clone Ozone and the upstream compatibility suites.
+3. Build an Ozone distribution.
+4. Start a packaged Ozone compose cluster.
+5. Run `s3-tests` and Mint against the S3 Gateway.
+6. Normalize the raw output into a run result.
+7. Build the static Pages output, including the historical data.
+8. Publish to `gh-pages` for scheduled runs.
+
+The frontend is Vue 3 \+ Vite. The backend-ish part is just scripts and GitHub 
Actions. The data processing is mostly Python. For the newer version, the 
published report data is JSON.

Review Comment:
   **Optional nit:** "backend-ish" reads informal.
   
   **Suggested:** "the automation layer" or "the non-frontend parts."



##########
blog/2026-06-27-ozone-s3-compatibility/index.md:
##########
@@ -0,0 +1,164 @@
+---
+title: "Making Apache Ozone’s S3 Compatibility Visible"
+date: 2026-06-27
+authors: ["peterxcli"]
+tags: [Ozone, S3, compatibility]
+---
+
+<!-- cspell:ignore peterxcli Xiangpeng ish laggy Zstd overclaim amz -->
+
+Recently I created 
[https://ozone.s3.peterxcli.dev/](https://ozone.s3.peterxcli.dev/), an 
automated update dashboard for Apache Ozone S3 compatibility. It runs Ozone 
against real S3 compatibility suites, publishes the result every day, and lets 
you search test cases, inspect failures, read source snippets, open logs, and 
check whether your PR really helps the compatibility story. It is fully open 
source at 
[https://github.com/peterxcli/ozone-s3-compatibility](https://github.com/peterxcli/ozone-s3-compatibility).
+
+<!-- truncate -->
+
+TL;DR:
+
+- This really helped me get promoted as a PMC member of the Apache Ozone 
project.
+- Overall, **7% (50/711)** compatibility improvement at the time that this 
article was written.
+- Parquet \+ search-index optimization made the Pages data **11.8x smaller**, 
yearly git growth **12x slower**, and search data **14x smaller**.
+- It runs Apache Ozone against 
[`ceph/s3-tests`](https://github.com/ceph/s3-tests) and 
[`minio/mint`](https://github.com/minio/mint), then publishes a GitHub Pages 
report.
+- It turns compatibility from “a few epic tickets and some memory in people’s 
heads” into a searchable, linkable, daily signal.
+- For users, it answers “does Ozone support this S3 behavior today?” For 
developers, it answers “which exact test is failing, why, and did my PR move 
it?”
+
+## Why did I create it?
+
+Before this dashboard was introduced, Apache Ozone already tried really hard 
to track the compatibility gap with a few epic issues, for example: [Ozone S3 
gateway Phase 4](https://issues.apache.org/jira/browse/HDDS-1186), [Ozone S3 
gateway (phase III)](https://issues.apache.org/jira/browse/HDDS-12716), and [S3 
API compatibility improvements and 
fixes](https://issues.apache.org/jira/browse/HDDS-8423).
+
+But I believe if you really click into the above links, you will quickly get 
lost among them. They are useful, but they are not a fresh report of what 
Apache Ozone’s S3 compatibility looks like today.
+
+Users don’t know whether Ozone really supports a specific S3 behavior. 
Developers don’t know whether a feature gap, implementation gap, or corner case 
is already handled correctly. And when a compatibility issue is fixed or newly 
introduced, there was no fresh source of truth to show that change.
+
+Also, when we develop S3 features, we often look at AWS S3 docs or source code 
from other open source S3-compatible systems, then infer how the implementation 
should behave and what test cases we should add. That works sometimes, but it 
is still mostly guessing. There was no easy harness to continuously test 
Ozone’s behavior against existing compatibility suites and make the result easy 
to inspect.
+
+So that’s why I wanted to create this dashboard.
+
+## How to use it?
+
+I usually think of the dashboard as having a few different modes.
+
+First, start from the latest run summary. The top cards show the current 
`s3-tests` and `mint` compatibility rate, eligible case count, pass/fail/error 
count, skipped count, and the delta compared with the previous run. This makes 
it easy to know whether today’s result is better, worse, or basically 
unchanged. One small detail here: the compatibility rate is `passed / (passed + 
failed + errored)`.
+
+![overview](overview.png)
+
+Second, use the search box as the main debugging entry point. You can search 
by suite, test name, run id, run date, source path, feature name, status, or 
failure text. For example, if you are working on object tagging, you can search 
for `tagging`; if you are looking at a specific failure from `s3-tests`, you 
can paste part of the error message. Search results show the matched fields, 
suite, run date, status, feature tags, and a short failure preview.
+![test-case-search](test-case-search.png)
+
+Third, click a search result. The modal shows the full failure detail, related 
metadata, a permalink, and the test code. For `s3-tests`, the dashboard can 
fetch the upstream source file and extract the Python test function, so you 
don’t need to jump between the report, GitHub, and your local checkout just to 
understand what the test is really asking for.
+
+![test-case-search-detail](test-case-search-detail.png)
+
+Fourth, open the current report detail. The page does not force-load all case 
details at the beginning. Instead, it loads summary first, then fetches the 
full run detail when you open the latest run or an archived run. Inside the run 
detail, you can inspect suites, feature summaries, individual failed cases, and 
log files.
+![run-overview](run-overview.png)
+![run-expanded](run-expanded.png)
+![run-detail](run-detail.png)
+
+Fifth, use the trend panel. The top-line trend is useful to see whether the 
overall compatibility is moving. The per-feature trend is even more useful 
because a single global number can hide what really changed. For example, a PR 
might only improve object tagging, bucket listing, copy object behavior, or 
some conditional-write corner case. Those changes are much easier to reason 
about feature by feature.
+
+![trend-panel](trend-panel.png)
+
+Sixth, use archived runs when you need history. Old runs are still there, but 
their details are loaded only when opened. This is helpful when you want to 
compare a failure today with an older run, or when a PR says “this test used to 
fail before the fix.”
+![archived-runs](archived-runs.png)
+
+Finally, the Parquet file inspector is there for people who want to inspect 
the published dataset itself. This is mostly for debugging the dashboard and 
data model, but it is surprisingly useful when you want to understand what 
files were generated, how many rows they contain, and whether the published 
data looks sane. Also thanks Xiangpeng for building the [Parquet 
Viewer](https://github.com/XiangpengHao/parquet-viewer), which let us inspect 
the parquet file content directly on the site.
+![parquet-file-inspector](parquet-file-inspector.png)
+![parquet-file-viewer](parquet-file-viewer.png)
+
+For PR authors, there is also a PR comparison workflow. It can run an Ozone PR 
head, compare it with the latest published main run, write a step summary, and 
optionally comment back on the Ozone PR. That is the part I like the most: 
compatibility is not just a dashboard to look at, but something you can wire 
into development review.
+
+## How is this built?
+
+For the very first version, I literally just prompted Codex with `gpt5.4 
xhigh`:
+
+:::info Prompt
+I want to create a repo that runs 
[https://github.com/ceph/s3-tests](https://github.com/ceph/s3-tests) and 
[https://github.com/minio/mint](https://github.com/minio/mint) on GitHub Action 
and generate the compatibility report page on GitHub Pages nightly. Make the 
page pretty. My desired steps that run in the GitHub Action are: clone the 
Ozone repo, pull latest master change, compile, start running cluster, run Mint 
and s3-tests to get result, compile result to be the page. We can show the 
compatibility rate of each feature for each test (`s3-tests`, `mint`) daily 
change as a chart at the page top, followed by the report page, then also 
include the old result expansion button to allow users to check a specific 
date’s running result. BTW I have the local clone of Ozone at 
`~/Documents/oss/apache/ozone`, you can look into it directly without searching 
the codebase on the website.
+:::
+
+Then it almost one-shotted this. Actually I still made some follow-ups on the 
result, like “attach `s3-tests` and `mint` as submodule” and “use `act` to test 
the GitHub Action really works locally within Docker”, but those were 
relatively minor compared with the first scaffold.

Review Comment:
   **Optional nit:** "one-shotted" is informal/slang.
   
   **Suggested:** "got most of it right on the first try" or "nailed the 
scaffold in one pass."



##########
blog/2026-06-27-ozone-s3-compatibility/index.md:
##########
@@ -0,0 +1,164 @@
+---
+title: "Making Apache Ozone’s S3 Compatibility Visible"
+date: 2026-06-27
+authors: ["peterxcli"]
+tags: [Ozone, S3, compatibility]
+---
+
+<!-- cspell:ignore peterxcli Xiangpeng ish laggy Zstd overclaim amz -->
+
+Recently I created 
[https://ozone.s3.peterxcli.dev/](https://ozone.s3.peterxcli.dev/), an 
automated update dashboard for Apache Ozone S3 compatibility. It runs Ozone 
against real S3 compatibility suites, publishes the result every day, and lets 
you search test cases, inspect failures, read source snippets, open logs, and 
check whether your PR really helps the compatibility story. It is fully open 
source at 
[https://github.com/peterxcli/ozone-s3-compatibility](https://github.com/peterxcli/ozone-s3-compatibility).
+
+<!-- truncate -->
+
+TL;DR:
+
+- This really helped me get promoted as a PMC member of the Apache Ozone 
project.
+- Overall, **7% (50/711)** compatibility improvement at the time that this 
article was written.
+- Parquet \+ search-index optimization made the Pages data **11.8x smaller**, 
yearly git growth **12x slower**, and search data **14x smaller**.
+- It runs Apache Ozone against 
[`ceph/s3-tests`](https://github.com/ceph/s3-tests) and 
[`minio/mint`](https://github.com/minio/mint), then publishes a GitHub Pages 
report.
+- It turns compatibility from “a few epic tickets and some memory in people’s 
heads” into a searchable, linkable, daily signal.
+- For users, it answers “does Ozone support this S3 behavior today?” For 
developers, it answers “which exact test is failing, why, and did my PR move 
it?”
+
+## Why did I create it?
+
+Before this dashboard was introduced, Apache Ozone already tried really hard 
to track the compatibility gap with a few epic issues, for example: [Ozone S3 
gateway Phase 4](https://issues.apache.org/jira/browse/HDDS-1186), [Ozone S3 
gateway (phase III)](https://issues.apache.org/jira/browse/HDDS-12716), and [S3 
API compatibility improvements and 
fixes](https://issues.apache.org/jira/browse/HDDS-8423).
+
+But I believe if you really click into the above links, you will quickly get 
lost among them. They are useful, but they are not a fresh report of what 
Apache Ozone’s S3 compatibility looks like today.
+
+Users don’t know whether Ozone really supports a specific S3 behavior. 
Developers don’t know whether a feature gap, implementation gap, or corner case 
is already handled correctly. And when a compatibility issue is fixed or newly 
introduced, there was no fresh source of truth to show that change.
+
+Also, when we develop S3 features, we often look at AWS S3 docs or source code 
from other open source S3-compatible systems, then infer how the implementation 
should behave and what test cases we should add. That works sometimes, but it 
is still mostly guessing. There was no easy harness to continuously test 
Ozone’s behavior against existing compatibility suites and make the result easy 
to inspect.
+
+So that’s why I wanted to create this dashboard.
+
+## How to use it?
+
+I usually think of the dashboard as having a few different modes.
+
+First, start from the latest run summary. The top cards show the current 
`s3-tests` and `mint` compatibility rate, eligible case count, pass/fail/error 
count, skipped count, and the delta compared with the previous run. This makes 
it easy to know whether today’s result is better, worse, or basically 
unchanged. One small detail here: the compatibility rate is `passed / (passed + 
failed + errored)`.
+
+![overview](overview.png)
+
+Second, use the search box as the main debugging entry point. You can search 
by suite, test name, run id, run date, source path, feature name, status, or 
failure text. For example, if you are working on object tagging, you can search 
for `tagging`; if you are looking at a specific failure from `s3-tests`, you 
can paste part of the error message. Search results show the matched fields, 
suite, run date, status, feature tags, and a short failure preview.
+![test-case-search](test-case-search.png)
+
+Third, click a search result. The modal shows the full failure detail, related 
metadata, a permalink, and the test code. For `s3-tests`, the dashboard can 
fetch the upstream source file and extract the Python test function, so you 
don’t need to jump between the report, GitHub, and your local checkout just to 
understand what the test is really asking for.
+
+![test-case-search-detail](test-case-search-detail.png)
+
+Fourth, open the current report detail. The page does not force-load all case 
details at the beginning. Instead, it loads summary first, then fetches the 
full run detail when you open the latest run or an archived run. Inside the run 
detail, you can inspect suites, feature summaries, individual failed cases, and 
log files.
+![run-overview](run-overview.png)
+![run-expanded](run-expanded.png)
+![run-detail](run-detail.png)
+
+Fifth, use the trend panel. The top-line trend is useful to see whether the 
overall compatibility is moving. The per-feature trend is even more useful 
because a single global number can hide what really changed. For example, a PR 
might only improve object tagging, bucket listing, copy object behavior, or 
some conditional-write corner case. Those changes are much easier to reason 
about feature by feature.
+
+![trend-panel](trend-panel.png)
+
+Sixth, use archived runs when you need history. Old runs are still there, but 
their details are loaded only when opened. This is helpful when you want to 
compare a failure today with an older run, or when a PR says “this test used to 
fail before the fix.”
+![archived-runs](archived-runs.png)
+
+Finally, the Parquet file inspector is there for people who want to inspect 
the published dataset itself. This is mostly for debugging the dashboard and 
data model, but it is surprisingly useful when you want to understand what 
files were generated, how many rows they contain, and whether the published 
data looks sane. Also thanks Xiangpeng for building the [Parquet 
Viewer](https://github.com/XiangpengHao/parquet-viewer), which let us inspect 
the parquet file content directly on the site.
+![parquet-file-inspector](parquet-file-inspector.png)
+![parquet-file-viewer](parquet-file-viewer.png)
+
+For PR authors, there is also a PR comparison workflow. It can run an Ozone PR 
head, compare it with the latest published main run, write a step summary, and 
optionally comment back on the Ozone PR. That is the part I like the most: 
compatibility is not just a dashboard to look at, but something you can wire 
into development review.
+
+## How is this built?
+
+For the very first version, I literally just prompted Codex with `gpt5.4 
xhigh`:
+
+:::info Prompt
+I want to create a repo that runs 
[https://github.com/ceph/s3-tests](https://github.com/ceph/s3-tests) and 
[https://github.com/minio/mint](https://github.com/minio/mint) on GitHub Action 
and generate the compatibility report page on GitHub Pages nightly. Make the 
page pretty. My desired steps that run in the GitHub Action are: clone the 
Ozone repo, pull latest master change, compile, start running cluster, run Mint 
and s3-tests to get result, compile result to be the page. We can show the 
compatibility rate of each feature for each test (`s3-tests`, `mint`) daily 
change as a chart at the page top, followed by the report page, then also 
include the old result expansion button to allow users to check a specific 
date’s running result. BTW I have the local clone of Ozone at 
`~/Documents/oss/apache/ozone`, you can look into it directly without searching 
the codebase on the website.
+:::
+
+Then it almost one-shotted this. Actually I still made some follow-ups on the 
result, like “attach `s3-tests` and `mint` as submodule” and “use `act` to test 
the GitHub Action really works locally within Docker”, but those were 
relatively minor compared with the first scaffold.
+
+The nightly workflow now does roughly this:
+
+1. Build the Vue/Vite report frontend.
+2. Clone Ozone and the upstream compatibility suites.
+3. Build an Ozone distribution.
+4. Start a packaged Ozone compose cluster.
+5. Run `s3-tests` and Mint against the S3 Gateway.
+6. Normalize the raw output into a run result.
+7. Build the static Pages output, including the historical data.
+8. Publish to `gh-pages` for scheduled runs.
+
+The frontend is Vue 3 \+ Vite. The backend-ish part is just scripts and GitHub 
Actions. The data processing is mostly Python. For the newer version, the 
published report data is JSON.
+
+### Optimization
+
+After a few runs, I started to notice that the dashboard was becoming laggy. 
After some inspection, I found a few reasons.

Review Comment:
   **Optional nit:** "laggy" is fine for informal tone; for a more formal ASF 
blog voice, consider "sluggish" or "slow."



##########
blog/2026-06-27-ozone-s3-compatibility/index.md:
##########
@@ -0,0 +1,164 @@
+---
+title: "Making Apache Ozone’s S3 Compatibility Visible"
+date: 2026-06-27
+authors: ["peterxcli"]
+tags: [Ozone, S3, compatibility]
+---
+
+<!-- cspell:ignore peterxcli Xiangpeng ish laggy Zstd overclaim amz -->
+
+Recently I created 
[https://ozone.s3.peterxcli.dev/](https://ozone.s3.peterxcli.dev/), an 
automated update dashboard for Apache Ozone S3 compatibility. It runs Ozone 
against real S3 compatibility suites, publishes the result every day, and lets 
you search test cases, inspect failures, read source snippets, open logs, and 
check whether your PR really helps the compatibility story. It is fully open 
source at 
[https://github.com/peterxcli/ozone-s3-compatibility](https://github.com/peterxcli/ozone-s3-compatibility).
+
+<!-- truncate -->
+
+TL;DR:
+
+- This really helped me get promoted as a PMC member of the Apache Ozone 
project.
+- Overall, **7% (50/711)** compatibility improvement at the time that this 
article was written.
+- Parquet \+ search-index optimization made the Pages data **11.8x smaller**, 
yearly git growth **12x slower**, and search data **14x smaller**.
+- It runs Apache Ozone against 
[`ceph/s3-tests`](https://github.com/ceph/s3-tests) and 
[`minio/mint`](https://github.com/minio/mint), then publishes a GitHub Pages 
report.
+- It turns compatibility from “a few epic tickets and some memory in people’s 
heads” into a searchable, linkable, daily signal.
+- For users, it answers “does Ozone support this S3 behavior today?” For 
developers, it answers “which exact test is failing, why, and did my PR move 
it?”
+
+## Why did I create it?
+
+Before this dashboard was introduced, Apache Ozone already tried really hard 
to track the compatibility gap with a few epic issues, for example: [Ozone S3 
gateway Phase 4](https://issues.apache.org/jira/browse/HDDS-1186), [Ozone S3 
gateway (phase III)](https://issues.apache.org/jira/browse/HDDS-12716), and [S3 
API compatibility improvements and 
fixes](https://issues.apache.org/jira/browse/HDDS-8423).
+
+But I believe if you really click into the above links, you will quickly get 
lost among them. They are useful, but they are not a fresh report of what 
Apache Ozone’s S3 compatibility looks like today.
+
+Users don’t know whether Ozone really supports a specific S3 behavior. 
Developers don’t know whether a feature gap, implementation gap, or corner case 
is already handled correctly. And when a compatibility issue is fixed or newly 
introduced, there was no fresh source of truth to show that change.
+
+Also, when we develop S3 features, we often look at AWS S3 docs or source code 
from other open source S3-compatible systems, then infer how the implementation 
should behave and what test cases we should add. That works sometimes, but it 
is still mostly guessing. There was no easy harness to continuously test 
Ozone’s behavior against existing compatibility suites and make the result easy 
to inspect.
+
+So that’s why I wanted to create this dashboard.
+
+## How to use it?
+
+I usually think of the dashboard as having a few different modes.
+
+First, start from the latest run summary. The top cards show the current 
`s3-tests` and `mint` compatibility rate, eligible case count, pass/fail/error 
count, skipped count, and the delta compared with the previous run. This makes 
it easy to know whether today’s result is better, worse, or basically 
unchanged. One small detail here: the compatibility rate is `passed / (passed + 
failed + errored)`.
+
+![overview](overview.png)
+
+Second, use the search box as the main debugging entry point. You can search 
by suite, test name, run id, run date, source path, feature name, status, or 
failure text. For example, if you are working on object tagging, you can search 
for `tagging`; if you are looking at a specific failure from `s3-tests`, you 
can paste part of the error message. Search results show the matched fields, 
suite, run date, status, feature tags, and a short failure preview.
+![test-case-search](test-case-search.png)
+
+Third, click a search result. The modal shows the full failure detail, related 
metadata, a permalink, and the test code. For `s3-tests`, the dashboard can 
fetch the upstream source file and extract the Python test function, so you 
don’t need to jump between the report, GitHub, and your local checkout just to 
understand what the test is really asking for.
+
+![test-case-search-detail](test-case-search-detail.png)
+
+Fourth, open the current report detail. The page does not force-load all case 
details at the beginning. Instead, it loads summary first, then fetches the 
full run detail when you open the latest run or an archived run. Inside the run 
detail, you can inspect suites, feature summaries, individual failed cases, and 
log files.
+![run-overview](run-overview.png)
+![run-expanded](run-expanded.png)
+![run-detail](run-detail.png)
+
+Fifth, use the trend panel. The top-line trend is useful to see whether the 
overall compatibility is moving. The per-feature trend is even more useful 
because a single global number can hide what really changed. For example, a PR 
might only improve object tagging, bucket listing, copy object behavior, or 
some conditional-write corner case. Those changes are much easier to reason 
about feature by feature.
+
+![trend-panel](trend-panel.png)
+
+Sixth, use archived runs when you need history. Old runs are still there, but 
their details are loaded only when opened. This is helpful when you want to 
compare a failure today with an older run, or when a PR says “this test used to 
fail before the fix.”
+![archived-runs](archived-runs.png)
+
+Finally, the Parquet file inspector is there for people who want to inspect 
the published dataset itself. This is mostly for debugging the dashboard and 
data model, but it is surprisingly useful when you want to understand what 
files were generated, how many rows they contain, and whether the published 
data looks sane. Also thanks Xiangpeng for building the [Parquet 
Viewer](https://github.com/XiangpengHao/parquet-viewer), which let us inspect 
the parquet file content directly on the site.
+![parquet-file-inspector](parquet-file-inspector.png)
+![parquet-file-viewer](parquet-file-viewer.png)
+
+For PR authors, there is also a PR comparison workflow. It can run an Ozone PR 
head, compare it with the latest published main run, write a step summary, and 
optionally comment back on the Ozone PR. That is the part I like the most: 
compatibility is not just a dashboard to look at, but something you can wire 
into development review.
+
+## How is this built?
+
+For the very first version, I literally just prompted Codex with `gpt5.4 
xhigh`:
+
+:::info Prompt
+I want to create a repo that runs 
[https://github.com/ceph/s3-tests](https://github.com/ceph/s3-tests) and 
[https://github.com/minio/mint](https://github.com/minio/mint) on GitHub Action 
and generate the compatibility report page on GitHub Pages nightly. Make the 
page pretty. My desired steps that run in the GitHub Action are: clone the 
Ozone repo, pull latest master change, compile, start running cluster, run Mint 
and s3-tests to get result, compile result to be the page. We can show the 
compatibility rate of each feature for each test (`s3-tests`, `mint`) daily 
change as a chart at the page top, followed by the report page, then also 
include the old result expansion button to allow users to check a specific 
date’s running result. BTW I have the local clone of Ozone at 
`~/Documents/oss/apache/ozone`, you can look into it directly without searching 
the codebase on the website.
+:::
+
+Then it almost one-shotted this. Actually I still made some follow-ups on the 
result, like “attach `s3-tests` and `mint` as submodule” and “use `act` to test 
the GitHub Action really works locally within Docker”, but those were 
relatively minor compared with the first scaffold.
+
+The nightly workflow now does roughly this:
+
+1. Build the Vue/Vite report frontend.
+2. Clone Ozone and the upstream compatibility suites.
+3. Build an Ozone distribution.
+4. Start a packaged Ozone compose cluster.
+5. Run `s3-tests` and Mint against the S3 Gateway.
+6. Normalize the raw output into a run result.
+7. Build the static Pages output, including the historical data.
+8. Publish to `gh-pages` for scheduled runs.
+
+The frontend is Vue 3 \+ Vite. The backend-ish part is just scripts and GitHub 
Actions. The data processing is mostly Python. For the newer version, the 
published report data is JSON.
+
+### Optimization
+
+After a few runs, I started to notice that the dashboard was becoming laggy. 
After some inspection, I found a few reasons.
+
+1. First, we originally used one JSON file to represent one run result. Each 
latest run was about 0.236 MiB. This sounds small, but the problem is that we 
did not lazy load these files at the beginning. Every time the page refreshed, 
even if some files might already be cached by the browser, the TypeScript data 
structure still ended up holding too much content from too many files. That is 
very memory-consuming.
+
+2. Second, the JSON data had a ton of room to compress. The data shape is very 
repetitive: `run_id`, `suite_key`, `status`, feature names, source paths, class 
names, test names, and similar object keys appear again and again. JSON stores 
all of that as repeated text and nested objects. Even if HTTP compression helps 
over the network, the browser still has to parse it into JavaScript objects, 
and Git still stores changed blobs. This kind of data is much closer to a table 
than a document, so a columnar format makes more sense.
+
+3. Finally, the search index data was not normalized correctly. The index 
repeated run metadata and case metadata too much, and it grew quickly. For Git 
history, this is especially bad because every new run changes a large generated 
file again.
+
+So then I basically applied three optimizations: lazy loading, Parquet 
compression, and search/index normalization.
+
+1. **Lazy loading.** The page now loads the light catalog/index first. Full 
run details are fetched only when you open the latest run or expand an archived 
run. Search index loading is also delayed until you actually search, and the 
browser can keep the FlexSearch index in IndexedDB. Logs are fetched only when 
you open a log modal. Source snippets are fetched only when you open a case. 
This makes the first page load much cheaper.
+2. **Compress data as Parquet.** Instead of treating every run as one large 
JSON document, the report data is split into Parquet tables: catalog runs, 
suites, features, per-run metadata, per-run cases, search rows, log files, and 
log lines. The Parquet writer uses Zstd compression and dictionary encoding, 
which is a much better fit for repeated values like suite names, statuses, 
feature tags, and source paths. The frontend then queries these Parquet files 
in the browser through DuckDB-Wasm.
+3. **Index file optimization.** The search rows now contain normalized fields 
and a short `detail_preview`, while the full case detail can be hydrated from 
the per-run case Parquet file when needed. For JSON fallback, the index and 
search data are partitioned into smaller shards. For the normal Parquet path, 
the global search index is a compressed Parquet file. The search index also has 
a stable `index_id`, so the browser can reuse the IndexedDB cache when the data 
has not changed.
+
+Result is crazy:
+
+1. Parquet data now:
+   1. search rows: 7.64 MiB, 33,876 rows, growing about 0.142-0.147 MiB/run
+   2. run case/detail data excluding search: 4.92 MiB across 52 runs, growing 
about 0.093 MiB/run
+   3. catalog/index data: 0.03 MiB now, growing less than 1 KiB/run
+   4. total Pages data: 12.59 MiB across 52 runs
+   5. latest run data: 246,696 bytes \= 0.235 MiB
+2. Projection at the current rate:
+   1. about \+0.236 MiB/run
+   2. about \+7.1 MiB/month
+   3. about \+86 MiB/year
+2. Compared with the JSON baseline:
+   1. current data size: 149.11 MiB \-\> 12.59 MiB, about 11.8x smaller
+   2. yearly growth: \~1.0 GiB/year \-\> \~86 MiB/year, about 12x slower
+   3. search data: 107.09 MiB \-\> 7.64 MiB, about 14x smaller
+
+## Current Effect
+
+Ozone has already improved since the dashboard was released.
+![s3-tests-compatibility-rate](s3-tests-compatibility-rate.png)
+
+I don’t want to overclaim that every improvement below was caused only by this 
dashboard, but I do think the dashboard changed the workflow. It gives us 
concrete failing cases, links that can be pasted into PRs, and an easy way to 
check whether the gap is still there after a patch.

Review Comment:
   **Optional nit:** "overclaim" is non-standard.
   
   **Suggested:** "overstate" or "attribute every improvement solely to this 
dashboard."



##########
blog/2026-07-08-ozone-s3-conditional-request/index.md:
##########
@@ -0,0 +1,417 @@
+---
+title: "Fast Optimistic Concurrency Control with Apache Ozone S3 Conditional 
Requests"
+date: 2026-07-08
+authors: ["peterxcli"]
+tags: [Ozone, S3, concurrency, conditional-requests]
+---
+
+<!-- cspell:ignore peterxcli RDBMS LSN CAS amaliujia Turbopuffer MVCC -->
+
+:::note
+Apache Ozone will support conditional `PutObject`, `GetObject`, `HeadObject`, 
`CopyObject`, and `CompleteMultipartUpload` in the upcoming [2.2 
release](https://github.com/apache/ozone/releases/tag/ozone-2.2.0-RC0) (RC0 is 
currently under a 
[vote](https://lists.apache.org/thread/gz567ljydh4ht63h6c9pjfclrbrrr9z7)), and 
will add conditional `DeleteObject` and `DeleteObjects` support in 2.3.
+:::
+
+More database systems are moving their underlying storage to S3 in 
shared-everything architectures to reduce cost, dependencies, and operational 
complexity. In the Hadoop 🐘 era, we typically used ZooKeeper and HDFS as the 
control plane and data plane. Modern systems are moving the control plane to 
self-managed consensus groups or RDBMS-backed catalogs, while moving the data 
plane onto AWS S3 or S3-compatible storage.
+
+Shared-everything systems usually have two pain points: communication overhead 
and coordination. To reduce write latency, systems often use inline data 
writes, background flush, and LSN-based union reads. To reduce read latency, 
they add multi-layer caches, such as self-managed or OS-managed in-memory 
caches and on-disk caches. Coordination is harder: multiple clients may read 
the same metadata, make decisions locally, and then try to update the same 
object. Without a storage-level compare-and-set primitive, applications often 
need an external lock service, catalog database, or consensus system just to 
avoid lost updates.
+
+Because Apache Ozone exposes S3, HCFS, HttpFS, and Java APIs as part of its 
multi-protocol story, conditional requests have become increasingly important. 
This work is now nearly complete.
+
+<!-- truncate -->
+
+## TL;DR
+
+Apache Ozone is adding S3 conditional request support for operations such as 
`PutObject`, `GetObject`, `HeadObject`, `CopyObject`, `DeleteObject`, and 
`CompleteMultipartUpload`. This allows applications to perform an operation 
only when the object state matches expected conditions, such as “create this 
object only if it does not already exist” or “overwrite this object only if the 
current ETag still matches.”
+
+Under the hood, Ozone reuses its atomic rewrite path. For conditional writes, 
the S3 Gateway passes the caller’s expected ETag to Ozone Manager (OM). OM 
validates it near the metadata write path, stores the matched generation in the 
open key, and revalidates it during commit. This keeps the ETag check close to 
the place where the object state changes, so Ozone can provide a distributed 
CAS-style primitive without adding an extra gateway-side metadata read on the 
successful path.
+
+This unlocks safer optimistic concurrency control for data systems built on 
top of object storage, including metadata catalogs, WAL-like workflows, 
leader-election patterns, queues, model-serving caches, and object-store-backed 
databases.
+
+## What is an S3 conditional request?
+
+:::note
+You can use conditional requests to add preconditions to your S3 operations. 
To use conditional requests, you add an additional header to your Amazon S3 API 
operation. This header specifies a condition that, if not met, will result in 
the S3 operation failing.
+
+Source: [Amazon S3 conditional 
requests](https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html)
+:::
+
+Conditional requests allow atomic CAS operations on target objects: clients 
can coordinate through S3 objects instead of asking external arbiters. Using S3 
conditional requests is like moving part of the coordination logic into storage.
+
+AWS also noted that conditional requests [let customers remove workaround code 
and simplify their 
systems](https://www.allthingsdistributed.com/2025/03/in-s3-simplicity-is-table-stakes.html#:~:text=When%20we%20moved%20S3%20to,similar%20reaction).
 The same storage-level feature also [powers S3 
Tables](https://www.allthingsdistributed.com/2025/03/in-s3-simplicity-is-table-stakes.html#:~:text=they%20involve%20a%20complex,storage%2Dlevel%20features),
 which manages tabular data on S3.
+
+Common conditional request patterns include:
+
+- **Conditional `PUT`**
+  - Use `If-None-Match: *` to create an object only if it does not already 
exist.
+  - Use `If-Match: <etag>` to overwrite an object only if the current ETag is 
still the one the client observed.
+  - Use case: metadata commits, manifest updates, distributed lock files, and 
create-only log chunks.
+- **Conditional `GET`**
+  - Use `If-None-Match: <etag>` or date-based conditions to download the 
object only when it has changed.
+  - Use case: cache validation, dynamic model reloading, config refresh, and 
avoiding repeated downloads of large objects.
+- **Conditional `HEAD`**
+  - Same idea as conditional `GET`, but metadata-only.
+  - Use case: checking whether an object is still current without fetching the 
body.
+- **Conditional `POST` / `CompleteMultipartUpload`**
+  - Multipart upload writes data in parts, but the destination object becomes 
visible only when `CompleteMultipartUpload` succeeds.
+  - Conditional completion lets the client say: “complete this large object 
only if the destination still does not exist” or “only if the destination still 
matches this ETag.”
+  - Use case: large object writes where the final commit still needs 
create-only or compare-and-swap semantics.
+- **Conditional `COPY`**
+  - Source-side conditions make sure the source object is the version the 
client expects.
+  - Destination-side conditions make sure the copy does not overwrite 
unexpected data.
+  - Use case: snapshot promotion, clone/copy workflows, and metadata copy 
where both source and destination need validation.
+- **Conditional `DELETE`**
+  - Use `If-Match: <etag>` to delete only if the object is still unchanged.
+  - Use `If-Match: *` to delete only if the object exists.
+  - Use case: preventing a client from deleting an object that another writer 
has already replaced.
+
+For more advanced usage, let’s look at how modern systems use these APIs.

Review Comment:
   **Optional nit:**
   
   **Suggested:** "To see this in practice, let's look at how modern systems 
use these APIs."



##########
blog/2026-06-27-ozone-s3-compatibility/index.md:
##########
@@ -0,0 +1,164 @@
+---
+title: "Making Apache Ozone’s S3 Compatibility Visible"
+date: 2026-06-27
+authors: ["peterxcli"]
+tags: [Ozone, S3, compatibility]
+---
+
+<!-- cspell:ignore peterxcli Xiangpeng ish laggy Zstd overclaim amz -->
+
+Recently I created 
[https://ozone.s3.peterxcli.dev/](https://ozone.s3.peterxcli.dev/), an 
automated update dashboard for Apache Ozone S3 compatibility. It runs Ozone 
against real S3 compatibility suites, publishes the result every day, and lets 
you search test cases, inspect failures, read source snippets, open logs, and 
check whether your PR really helps the compatibility story. It is fully open 
source at 
[https://github.com/peterxcli/ozone-s3-compatibility](https://github.com/peterxcli/ozone-s3-compatibility).
+
+<!-- truncate -->
+
+TL;DR:
+
+- This really helped me get promoted as a PMC member of the Apache Ozone 
project.
+- Overall, **7% (50/711)** compatibility improvement at the time that this 
article was written.
+- Parquet \+ search-index optimization made the Pages data **11.8x smaller**, 
yearly git growth **12x slower**, and search data **14x smaller**.
+- It runs Apache Ozone against 
[`ceph/s3-tests`](https://github.com/ceph/s3-tests) and 
[`minio/mint`](https://github.com/minio/mint), then publishes a GitHub Pages 
report.
+- It turns compatibility from “a few epic tickets and some memory in people’s 
heads” into a searchable, linkable, daily signal.
+- For users, it answers “does Ozone support this S3 behavior today?” For 
developers, it answers “which exact test is failing, why, and did my PR move 
it?”
+
+## Why did I create it?
+
+Before this dashboard was introduced, Apache Ozone already tried really hard 
to track the compatibility gap with a few epic issues, for example: [Ozone S3 
gateway Phase 4](https://issues.apache.org/jira/browse/HDDS-1186), [Ozone S3 
gateway (phase III)](https://issues.apache.org/jira/browse/HDDS-12716), and [S3 
API compatibility improvements and 
fixes](https://issues.apache.org/jira/browse/HDDS-8423).
+
+But I believe if you really click into the above links, you will quickly get 
lost among them. They are useful, but they are not a fresh report of what 
Apache Ozone’s S3 compatibility looks like today.
+
+Users don’t know whether Ozone really supports a specific S3 behavior. 
Developers don’t know whether a feature gap, implementation gap, or corner case 
is already handled correctly. And when a compatibility issue is fixed or newly 
introduced, there was no fresh source of truth to show that change.
+
+Also, when we develop S3 features, we often look at AWS S3 docs or source code 
from other open source S3-compatible systems, then infer how the implementation 
should behave and what test cases we should add. That works sometimes, but it 
is still mostly guessing. There was no easy harness to continuously test 
Ozone’s behavior against existing compatibility suites and make the result easy 
to inspect.
+
+So that’s why I wanted to create this dashboard.
+
+## How to use it?
+
+I usually think of the dashboard as having a few different modes.
+
+First, start from the latest run summary. The top cards show the current 
`s3-tests` and `mint` compatibility rate, eligible case count, pass/fail/error 
count, skipped count, and the delta compared with the previous run. This makes 
it easy to know whether today’s result is better, worse, or basically 
unchanged. One small detail here: the compatibility rate is `passed / (passed + 
failed + errored)`.
+
+![overview](overview.png)
+
+Second, use the search box as the main debugging entry point. You can search 
by suite, test name, run id, run date, source path, feature name, status, or 
failure text. For example, if you are working on object tagging, you can search 
for `tagging`; if you are looking at a specific failure from `s3-tests`, you 
can paste part of the error message. Search results show the matched fields, 
suite, run date, status, feature tags, and a short failure preview.
+![test-case-search](test-case-search.png)
+
+Third, click a search result. The modal shows the full failure detail, related 
metadata, a permalink, and the test code. For `s3-tests`, the dashboard can 
fetch the upstream source file and extract the Python test function, so you 
don’t need to jump between the report, GitHub, and your local checkout just to 
understand what the test is really asking for.
+
+![test-case-search-detail](test-case-search-detail.png)
+
+Fourth, open the current report detail. The page does not force-load all case 
details at the beginning. Instead, it loads summary first, then fetches the 
full run detail when you open the latest run or an archived run. Inside the run 
detail, you can inspect suites, feature summaries, individual failed cases, and 
log files.
+![run-overview](run-overview.png)
+![run-expanded](run-expanded.png)
+![run-detail](run-detail.png)
+
+Fifth, use the trend panel. The top-line trend is useful to see whether the 
overall compatibility is moving. The per-feature trend is even more useful 
because a single global number can hide what really changed. For example, a PR 
might only improve object tagging, bucket listing, copy object behavior, or 
some conditional-write corner case. Those changes are much easier to reason 
about feature by feature.
+
+![trend-panel](trend-panel.png)
+
+Sixth, use archived runs when you need history. Old runs are still there, but 
their details are loaded only when opened. This is helpful when you want to 
compare a failure today with an older run, or when a PR says “this test used to 
fail before the fix.”
+![archived-runs](archived-runs.png)
+
+Finally, the Parquet file inspector is there for people who want to inspect 
the published dataset itself. This is mostly for debugging the dashboard and 
data model, but it is surprisingly useful when you want to understand what 
files were generated, how many rows they contain, and whether the published 
data looks sane. Also thanks Xiangpeng for building the [Parquet 
Viewer](https://github.com/XiangpengHao/parquet-viewer), which let us inspect 
the parquet file content directly on the site.
+![parquet-file-inspector](parquet-file-inspector.png)
+![parquet-file-viewer](parquet-file-viewer.png)
+
+For PR authors, there is also a PR comparison workflow. It can run an Ozone PR 
head, compare it with the latest published main run, write a step summary, and 
optionally comment back on the Ozone PR. That is the part I like the most: 
compatibility is not just a dashboard to look at, but something you can wire 
into development review.
+
+## How is this built?
+
+For the very first version, I literally just prompted Codex with `gpt5.4 
xhigh`:
+
+:::info Prompt
+I want to create a repo that runs 
[https://github.com/ceph/s3-tests](https://github.com/ceph/s3-tests) and 
[https://github.com/minio/mint](https://github.com/minio/mint) on GitHub Action 
and generate the compatibility report page on GitHub Pages nightly. Make the 
page pretty. My desired steps that run in the GitHub Action are: clone the 
Ozone repo, pull latest master change, compile, start running cluster, run Mint 
and s3-tests to get result, compile result to be the page. We can show the 
compatibility rate of each feature for each test (`s3-tests`, `mint`) daily 
change as a chart at the page top, followed by the report page, then also 
include the old result expansion button to allow users to check a specific 
date’s running result. BTW I have the local clone of Ozone at 
`~/Documents/oss/apache/ozone`, you can look into it directly without searching 
the codebase on the website.
+:::
+
+Then it almost one-shotted this. Actually I still made some follow-ups on the 
result, like “attach `s3-tests` and `mint` as submodule” and “use `act` to test 
the GitHub Action really works locally within Docker”, but those were 
relatively minor compared with the first scaffold.
+
+The nightly workflow now does roughly this:
+
+1. Build the Vue/Vite report frontend.
+2. Clone Ozone and the upstream compatibility suites.
+3. Build an Ozone distribution.
+4. Start a packaged Ozone compose cluster.
+5. Run `s3-tests` and Mint against the S3 Gateway.
+6. Normalize the raw output into a run result.
+7. Build the static Pages output, including the historical data.
+8. Publish to `gh-pages` for scheduled runs.
+
+The frontend is Vue 3 \+ Vite. The backend-ish part is just scripts and GitHub 
Actions. The data processing is mostly Python. For the newer version, the 
published report data is JSON.
+
+### Optimization
+
+After a few runs, I started to notice that the dashboard was becoming laggy. 
After some inspection, I found a few reasons.
+
+1. First, we originally used one JSON file to represent one run result. Each 
latest run was about 0.236 MiB. This sounds small, but the problem is that we 
did not lazy load these files at the beginning. Every time the page refreshed, 
even if some files might already be cached by the browser, the TypeScript data 
structure still ended up holding too much content from too many files. That is 
very memory-consuming.
+
+2. Second, the JSON data had a ton of room to compress. The data shape is very 
repetitive: `run_id`, `suite_key`, `status`, feature names, source paths, class 
names, test names, and similar object keys appear again and again. JSON stores 
all of that as repeated text and nested objects. Even if HTTP compression helps 
over the network, the browser still has to parse it into JavaScript objects, 
and Git still stores changed blobs. This kind of data is much closer to a table 
than a document, so a columnar format makes more sense.
+
+3. Finally, the search index data was not normalized correctly. The index 
repeated run metadata and case metadata too much, and it grew quickly. For Git 
history, this is especially bad because every new run changes a large generated 
file again.
+
+So then I basically applied three optimizations: lazy loading, Parquet 
compression, and search/index normalization.
+
+1. **Lazy loading.** The page now loads the light catalog/index first. Full 
run details are fetched only when you open the latest run or expand an archived 
run. Search index loading is also delayed until you actually search, and the 
browser can keep the FlexSearch index in IndexedDB. Logs are fetched only when 
you open a log modal. Source snippets are fetched only when you open a case. 
This makes the first page load much cheaper.
+2. **Compress data as Parquet.** Instead of treating every run as one large 
JSON document, the report data is split into Parquet tables: catalog runs, 
suites, features, per-run metadata, per-run cases, search rows, log files, and 
log lines. The Parquet writer uses Zstd compression and dictionary encoding, 
which is a much better fit for repeated values like suite names, statuses, 
feature tags, and source paths. The frontend then queries these Parquet files 
in the browser through DuckDB-Wasm.
+3. **Index file optimization.** The search rows now contain normalized fields 
and a short `detail_preview`, while the full case detail can be hydrated from 
the per-run case Parquet file when needed. For JSON fallback, the index and 
search data are partitioned into smaller shards. For the normal Parquet path, 
the global search index is a compressed Parquet file. The search index also has 
a stable `index_id`, so the browser can reuse the IndexedDB cache when the data 
has not changed.
+
+Result is crazy:
+
+1. Parquet data now:
+   1. search rows: 7.64 MiB, 33,876 rows, growing about 0.142-0.147 MiB/run
+   2. run case/detail data excluding search: 4.92 MiB across 52 runs, growing 
about 0.093 MiB/run
+   3. catalog/index data: 0.03 MiB now, growing less than 1 KiB/run
+   4. total Pages data: 12.59 MiB across 52 runs
+   5. latest run data: 246,696 bytes \= 0.235 MiB
+2. Projection at the current rate:
+   1. about \+0.236 MiB/run
+   2. about \+7.1 MiB/month
+   3. about \+86 MiB/year
+2. Compared with the JSON baseline:
+   1. current data size: 149.11 MiB \-\> 12.59 MiB, about 11.8x smaller
+   2. yearly growth: \~1.0 GiB/year \-\> \~86 MiB/year, about 12x slower
+   3. search data: 107.09 MiB \-\> 7.64 MiB, about 14x smaller
+
+## Current Effect
+
+Ozone has already improved since the dashboard was released.
+![s3-tests-compatibility-rate](s3-tests-compatibility-rate.png)
+
+I don’t want to overclaim that every improvement below was caused only by this 
dashboard, but I do think the dashboard changed the workflow. It gives us 
concrete failing cases, links that can be pasted into PRs, and an easy way to 
check whether the gap is still there after a patch.
+
+There are already quite a few PRs and designs which aim to fix compatibility 
gaps discovered or made easier to discuss by the dashboard:
+
+- Object tagging and bucket tagging:
+  - [HDDS-15258. Include x-amz-tagging-count header in HEAD object tagging 
responses](https://github.com/apache/ozone/pull/10265)
+  - [HDDS-15283. GetObjectTagging should return TagSet in sorted order of 
key](https://github.com/apache/ozone/pull/10277)
+  - [HDDS-15259. PutObject should treat null tag value for x-amz-tagging 
header as empty tag value](https://github.com/apache/ozone/pull/10299)
+  - [HDDS-15510. Implement OM read/write paths for bucket tagging with audit 
and metrics](https://github.com/apache/ozone/pull/10498)
+  - [Proposal: S3 Bucket Tagging in Apache 
Ozone](https://docs.google.com/document/d/1jq1JOatCrUpD7k3PutfkGrZ7nFC1C69BkMoMWcRWaw4/edit?tab=t.0#heading=h.rs6cprl5cddi)
+- Bucket listing and directory bucket behavior:
+  - [HDDS-15302. Throw S3 InvalidArgument for RequestParameters getInt if 
parsing error](https://github.com/apache/ozone/pull/10297)
+  - [HDDS-15303. Enable prefix filter for 
OBS](https://github.com/apache/ozone/pull/10298)
+  - [HDDS-15450. Implement ListDirectoryBuckets S3 API for Directory Buckets 
support](https://github.com/apache/ozone/pull/10408)
+- Other compatibility-related correctness work:
+  - [HDDS-15515. Support object Content-Type end-to-end in S3 
Gateway](https://github.com/apache/ozone/pull/10472)
+
+The most useful effect is not just that the percentage moved. It is that the 
compatibility gap became much more concrete. A failed test can now become a 
dashboard link, then a JIRA, then a PR, then a nightly result showing whether 
it really passed.
+
+## Insight
+
+1. The main reason this really got adopted by other community members is that 
I posted it at the first time after I thought it could really work: 
[\[DISCUSS\] Nightly Ozone S3 compatibility 
report](https://lists.apache.org/thread/2td4jt8r26pwph5lwq3ncbnv97n27d5w). It 
was not perfect yet, but it was already useful enough for people to try. I 
think posting early was important.
+2. This also really helped me get promoted as a PMC member of the Apache Ozone 
project. Not because the dashboard itself is magical, but because it made a 
long-standing problem visible and gave the community a practical tool to keep 
improving it.

Review Comment:
   **Optional nit:** This repeats the PMC-promotion point from the TL;DR (line 
16). Consider keeping only one mention unless both are intentional.



##########
blog/2026-07-08-ozone-s3-conditional-request/index.md:
##########
@@ -0,0 +1,417 @@
+---
+title: "Fast Optimistic Concurrency Control with Apache Ozone S3 Conditional 
Requests"
+date: 2026-07-08
+authors: ["peterxcli"]
+tags: [Ozone, S3, concurrency, conditional-requests]
+---
+
+<!-- cspell:ignore peterxcli RDBMS LSN CAS amaliujia Turbopuffer MVCC -->
+
+:::note
+Apache Ozone will support conditional `PutObject`, `GetObject`, `HeadObject`, 
`CopyObject`, and `CompleteMultipartUpload` in the upcoming [2.2 
release](https://github.com/apache/ozone/releases/tag/ozone-2.2.0-RC0) (RC0 is 
currently under a 
[vote](https://lists.apache.org/thread/gz567ljydh4ht63h6c9pjfclrbrrr9z7)), and 
will add conditional `DeleteObject` and `DeleteObjects` support in 2.3.
+:::
+
+More database systems are moving their underlying storage to S3 in 
shared-everything architectures to reduce cost, dependencies, and operational 
complexity. In the Hadoop 🐘 era, we typically used ZooKeeper and HDFS as the 
control plane and data plane. Modern systems are moving the control plane to 
self-managed consensus groups or RDBMS-backed catalogs, while moving the data 
plane onto AWS S3 or S3-compatible storage.
+
+Shared-everything systems usually have two pain points: communication overhead 
and coordination. To reduce write latency, systems often use inline data 
writes, background flush, and LSN-based union reads. To reduce read latency, 
they add multi-layer caches, such as self-managed or OS-managed in-memory 
caches and on-disk caches. Coordination is harder: multiple clients may read 
the same metadata, make decisions locally, and then try to update the same 
object. Without a storage-level compare-and-set primitive, applications often 
need an external lock service, catalog database, or consensus system just to 
avoid lost updates.
+
+Because Apache Ozone exposes S3, HCFS, HttpFS, and Java APIs as part of its 
multi-protocol story, conditional requests have become increasingly important. 
This work is now nearly complete.
+
+<!-- truncate -->
+
+## TL;DR
+
+Apache Ozone is adding S3 conditional request support for operations such as 
`PutObject`, `GetObject`, `HeadObject`, `CopyObject`, `DeleteObject`, and 
`CompleteMultipartUpload`. This allows applications to perform an operation 
only when the object state matches expected conditions, such as “create this 
object only if it does not already exist” or “overwrite this object only if the 
current ETag still matches.”
+
+Under the hood, Ozone reuses its atomic rewrite path. For conditional writes, 
the S3 Gateway passes the caller’s expected ETag to Ozone Manager (OM). OM 
validates it near the metadata write path, stores the matched generation in the 
open key, and revalidates it during commit. This keeps the ETag check close to 
the place where the object state changes, so Ozone can provide a distributed 
CAS-style primitive without adding an extra gateway-side metadata read on the 
successful path.
+
+This unlocks safer optimistic concurrency control for data systems built on 
top of object storage, including metadata catalogs, WAL-like workflows, 
leader-election patterns, queues, model-serving caches, and object-store-backed 
databases.
+
+## What is an S3 conditional request?
+
+:::note
+You can use conditional requests to add preconditions to your S3 operations. 
To use conditional requests, you add an additional header to your Amazon S3 API 
operation. This header specifies a condition that, if not met, will result in 
the S3 operation failing.
+
+Source: [Amazon S3 conditional 
requests](https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html)
+:::
+
+Conditional requests allow atomic CAS operations on target objects: clients 
can coordinate through S3 objects instead of asking external arbiters. Using S3 
conditional requests is like moving part of the coordination logic into storage.
+
+AWS also noted that conditional requests [let customers remove workaround code 
and simplify their 
systems](https://www.allthingsdistributed.com/2025/03/in-s3-simplicity-is-table-stakes.html#:~:text=When%20we%20moved%20S3%20to,similar%20reaction).
 The same storage-level feature also [powers S3 
Tables](https://www.allthingsdistributed.com/2025/03/in-s3-simplicity-is-table-stakes.html#:~:text=they%20involve%20a%20complex,storage%2Dlevel%20features),
 which manages tabular data on S3.
+
+Common conditional request patterns include:
+
+- **Conditional `PUT`**
+  - Use `If-None-Match: *` to create an object only if it does not already 
exist.
+  - Use `If-Match: <etag>` to overwrite an object only if the current ETag is 
still the one the client observed.
+  - Use case: metadata commits, manifest updates, distributed lock files, and 
create-only log chunks.
+- **Conditional `GET`**
+  - Use `If-None-Match: <etag>` or date-based conditions to download the 
object only when it has changed.
+  - Use case: cache validation, dynamic model reloading, config refresh, and 
avoiding repeated downloads of large objects.
+- **Conditional `HEAD`**
+  - Same idea as conditional `GET`, but metadata-only.
+  - Use case: checking whether an object is still current without fetching the 
body.
+- **Conditional `POST` / `CompleteMultipartUpload`**
+  - Multipart upload writes data in parts, but the destination object becomes 
visible only when `CompleteMultipartUpload` succeeds.
+  - Conditional completion lets the client say: “complete this large object 
only if the destination still does not exist” or “only if the destination still 
matches this ETag.”
+  - Use case: large object writes where the final commit still needs 
create-only or compare-and-swap semantics.
+- **Conditional `COPY`**
+  - Source-side conditions make sure the source object is the version the 
client expects.
+  - Destination-side conditions make sure the copy does not overwrite 
unexpected data.
+  - Use case: snapshot promotion, clone/copy workflows, and metadata copy 
where both source and destination need validation.
+- **Conditional `DELETE`**
+  - Use `If-Match: <etag>` to delete only if the object is still unchanged.
+  - Use `If-Match: *` to delete only if the object exists.
+  - Use case: preventing a client from deleting an object that another writer 
has already replaced.
+
+For more advanced usage, let’s look at how modern systems use these APIs.
+
+## Application use cases
+
+So who exactly can use this?
+
+### Dynamic AI model reloading
+
+Advanced inference servers often cache massive model weights on local NVMe 
drives. To keep these models updated without constantly re-downloading them 
every few minutes, they can use S3 conditional requests. For example, the 
inference server can send a `GET` request with `If-None-Match` and the ETag of 
the model it already has.
+
+If the ETag still matches, Ozone can return `304 Not Modified`, so the server 
keeps using the local cached model and skips the download. If the ETag does not 
match, the model has been updated, so the server downloads the newest model and 
stores the new ETag for the next check. Thanks to 
[@amaliujia](https://github.com/amaliujia) for the example.
+
+![Dynamic model reloading with S3 ETag validation](model-reload.png)
+
+*Figure 1. An inference server uses `If-None-Match` to avoid re-downloading 
unchanged model weights.*
+
+### Turbopuffer
+
+Turbopuffer’s object-storage queue is a great example of using a small 
metadata object to coordinate larger data work. In the simple version, a pusher 
reads `queue.json`, appends a job, and writes it back with CAS. A worker does 
the same thing to claim the next job. The CAS write only succeeds if 
`queue.json` has not changed since the client read it; otherwise the client 
reads the new queue and retries.
+
+This design is simple, but many clients can contend on one queue object. 
Turbopuffer improves it by batching updates with group commit, then moving the 
object-storage interaction behind a stateless broker. Clients talk to the 
broker, the broker performs one group-commit loop, and it only acknowledges 
work after the updated queue is durably committed.
+
+![Object-storage queue coordinated through compare-and-swap 
updates](object-queue.png)
+
+*Figure 2. Turbopuffer’s object-storage queue batches contended CAS updates 
behind a broker. Source: [Turbopuffer object storage 
queue](https://turbopuffer.com/blog/object-storage-queue).*
+
+### SlateDB
+
+SlateDB is an embedded LSM-tree storage engine built for object storage. It 
stores durable state as object-store files: WAL SSTs, compacted SSTs, and 
manifest files. Like other LSM engines, it relies on immutable files for most 
data movement, but it still needs a safe coordination point to decide which 
writer owns the next part of the log.
+
+Conditional object creation is useful here because SlateDB can use object 
names as fencing points. Instead of overwriting a shared file, the writer 
creates the next manifest or WAL object with `If-None-Match: *`. The write 
succeeds only if that object does not already exist.
+
+![SlateDB writer claiming the next object with create-if-absent 
semantics](slatedb-writer.png)
+
+*Figure 3. A SlateDB writer uses conditional object creation as a fencing 
point for object-store state.*
+
+### Iceberg file catalog
+
+Iceberg is another natural fit for this style of coordination. Iceberg table 
state is maintained in metadata files, and each commit creates a new metadata 
file. The commit succeeds by atomically swapping the table metadata pointer 
from the old metadata file to the new one. If another writer commits first, the 
swap fails, and the writer retries against the new table state.
+
+For an Iceberg-style file catalog on object storage, conditional requests can 
provide the missing compare-and-swap primitive. The catalog can store a small 
pointer object, such as `current.json`, that points to the latest table 
metadata file. A writer first writes the new metadata file using a unique name, 
then updates the current metadata pointer only if its ETag still matches the 
ETag that the writer read.
+
+![Iceberg catalog pointer update protected by ETag 
comparison](iceberg-catalog.png)
+
+*Figure 4. An Iceberg-style file catalog updates a small metadata pointer only 
if its ETag still matches.*
+
+### Leader election
+
+Leader election can also be built on top of conditional writes. The basic idea 
is to have all nodes compete to create the next lock file, such as 
`lock-0000000002.json`, using `If-None-Match: *`. Only one node can create the 
file successfully. That node becomes the leader for that epoch; the others 
receive a precondition failure and keep watching.
+
+![Leader election through conditional lock-file creation](leader-election.png)
+
+*Figure 5. Nodes compete to create the next epoch lock file; only one writer 
succeeds.*
+
+Leader election by itself is not enough. A paused old leader can come back and 
still believe it owns the lock. This is the “zombie leader” problem. The fix is 
to use the leader epoch as a fencing token. Every request made by the leader 
includes the epoch, and downstream systems reject requests with an older epoch 
than the highest one they have already seen.
+
+![Fencing zombie leaders with monotonically increasing 
epochs](leader-fencing.png)
+
+*Figure 6. Epoch fencing prevents an old paused leader from writing after a 
newer leader takes over.*
+
+The leader should periodically update the lock file it acquired to signal 
liveness. Other nodes can poll the lock and check whether the lock was released 
or expired by looking at `Last-Modified`, which S3 exposes as standard object 
metadata.
+
+### WAL write/get with OSWALD
+
+OSWALD, the Object Storage Write-Ahead Log Device, shows how to build a WAL 
directly on object storage primitives. The design has three object types: a 
manifest object, snapshots, and log chunks. The manifest tracks the latest 
checkpoint and garbage collection progress; chunks hold the log content.
+
+Appending to the WAL can be done with conditional object creation. A writer 
creates the next chunk with `PUT If-None-Match`. If another writer already 
created that chunk for the same LSN, the write fails and the writer catches up 
by tailing the log. After creating a chunk, the writer also checks the manifest 
with `GET If-None-Match` to make sure garbage collection has not moved past its 
LSN before acknowledging the write.
+
+![OSWALD write-ahead log built on manifest, snapshot, and chunk 
objects](oswald-wal.png)
+
+*Figure 7. OSWALD uses manifest, snapshot, and chunk objects to build a WAL on 
object storage. Source: [OSWALD](https://github.com/nvartolomei/oswald).*
+
+Now let’s look at how Ozone keeps S3 conditional requests—the CAS 
primitive—fast.

Review Comment:
   **Optional nit:**
   
   **Suggested:** "Now let's look at how Ozone implements S3 conditional 
requests efficiently." (instead of "keeps … fast").



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to