SoCC Reproducibility
Use this before submission and again before camera-ready. SoCC — the joint SIGMOD+SIGOPS cloud
symposium — is read by reviewers who expect an inspectable measurement trail: the SIGOPS half wants
to believe the system runs, and the SIGMOD half wants to believe the numbers. The goal is that a
competent reader with a comparable testbed could rebuild your evidence and reach your conclusions —
including the tail latency and cost, not just the average.
Evidence map
- Map each cloud claim and reported number to a verifiable location — a paper section, a figure
generated from logged runs, or a script in the artifact.
- For systems, give enough of the mechanism, configuration, and testbed (node counts, instance
types, OS/kernel, network) that a reader could re-deploy and re-measure.
- For measurement/trace studies, report the trace provenance, extraction date, filtering, the
workload replay, metrics, and the analysis scripts.
- Reproduce tail and cost: percentiles (p95/p99/p99.9), the pricing model behind any cost claim,
and the number of runs and variance — the mean alone is not a cloud result.
- Keep the paper and the artifact consistent: a number in the PDF that no script regenerates is
the contradiction reviewers read as carelessness.
Reproducibility statement audit
| Claim in the paper |
Weak answer |
SoCC-ready answer |
| "We evaluate on a production trace" |
"Trace available on request" |
Anonymized (then released) trace + the replay harness and extraction date |
| "Our system improves throughput" |
"Code will be released" |
Anonymized, runnable system with a testbed description and a small demo |
| "We cut cost by X" |
A single cost number |
The pricing model, the instance-seconds logged, and the script that computes it |
| "p99 stays within target" |
Mean latency only |
Per-run tail percentiles with variance and run count |
| "Scales to N nodes" |
One large run |
A scaled reproduction path plus the full-scale logs |
"Available on request" is treated as not available; convert every such line into a concrete,
anonymized (then released) artifact or an explicit, justified exception (e.g., a confidential
production trace, with a synthetic generator provided instead).
Provenance pinning
[Measurement] pin commit SHAs; record trace extraction dates; archive the replayed trace or a
faithful generator, not just a query or a pointer
[Testbed] record node counts, instance types, OS/kernel versions, network, and the run count;
a cloud result that cannot be re-deployed cannot be reproduced
[Cost] state the pricing model and the source of every cost figure so a reader can recompute
[Tail] log per-request or per-run latency distributions, not only aggregates
[Randomness] log seeds for stochastic components; say what is and is not deterministic
Degrees of reproducibility (state the one you achieved)
- Turnkey: one documented command regenerates each figure (including tail and cost) from logged
runs, at least at reduced scale.
- Scripted: scripts exist but require a specific testbed, documented manual steps, or restricted
trace access.
- Descriptive: prose and configuration detailed enough that a competent reader could rebuild the
deployment and measurement pipeline.
For SoCC, aim turnkey for anything an evaluator could rerun at small scale (a short trace replay, a
tail/cost plot from logged runs); full-cluster or proprietary-trace results may stay scripted with
access clearly documented. Stating the achieved level honestly beats promising turnkey behavior that
fails on someone else's testbed.
Vignette: a scheduling measurement paper
Consider a paper measuring a new scheduler on a replayed production trace. Its reproducibility spine:
the scheduler code with pinned SHAs; the replay harness and the (anonymized, then released) trace
with its extraction date; the testbed description (nodes, instance types, kernel); the measurement
scripts that turn raw logs into the throughput, p99, and cost figures; the run count and variance;
and one honest sentence about the parts (a confidential production trace, the full cluster) that
cannot be shared and what synthetic or scaled substitute is provided.
Consistency and camera-ready pass
- Before submission: every reported number traces to the artifact; the reproducibility statement
matches reality; the artifact is anonymized (no cluster names, provider hints, or trace
provenance that reveals identity).
- Before camera-ready: swap anonymized links for permanent, DOI-issuing archives, and align the
statement with the ACM badges you are pursuing if the edition offers evaluation
(
socc-artifact-evaluation).
Output format
[Claim inventory] <claim -> evidence location>
[Reproducibility statement] concrete / vague / missing
[Provenance gaps] <trace SHAs+dates / testbed description / cost model / tail logging / seeds>
[Tail + cost] reproducible, not just the mean? yes/no
[Reproducibility level] turnkey / scripted / descriptive, stated honestly
[Paper fixes] <must appear in the PDF>
[Artifact fixes] <additions before upload>
Source: brycewang-stanford/Awesome-Journal-Skills → SoCC-Skills/skills/socc-reproducibility/SKILL.md
1---2name: socc-reproducibility3description: Use when strengthening ACM SoCC reproducibility, covering the testbed and workload description, released code and traces, provenance pinning for measurement studies, reproducing tail-latency and cost (not just the mean), claim-to-evidence mapping, honest degrees of reproducibility, and consistency between what the paper reports and what the artifact regenerates.4---567# SoCC Reproducibility89Use this before submission and again before camera-ready. SoCC — the joint SIGMOD+SIGOPS cloud10symposium — is read by reviewers who expect an inspectable measurement trail: the SIGOPS half wants11to believe the system runs, and the SIGMOD half wants to believe the numbers. The goal is that a12competent reader with a comparable testbed could rebuild your evidence and reach your conclusions —13including the **tail latency and cost**, not just the average.1415## Evidence map1617- Map each cloud claim and reported number to a **verifiable location** — a paper section, a figure18 generated from logged runs, or a script in the artifact.19- For systems, give enough of the mechanism, configuration, and **testbed** (node counts, instance20 types, OS/kernel, network) that a reader could re-deploy and re-measure.21- For measurement/trace studies, report the trace provenance, extraction date, filtering, the22 workload replay, metrics, and the analysis scripts.23- Reproduce **tail and cost**: percentiles (p95/p99/p99.9), the pricing model behind any cost claim,24 and the number of runs and variance — the mean alone is not a cloud result.25- Keep the paper and the artifact **consistent**: a number in the PDF that no script regenerates is26 the contradiction reviewers read as carelessness.2728## Reproducibility statement audit2930| Claim in the paper | Weak answer | SoCC-ready answer |31|---|---|---|32| "We evaluate on a production trace" | "Trace available on request" | Anonymized (then released) trace + the replay harness and extraction date |33| "Our system improves throughput" | "Code will be released" | Anonymized, runnable system with a testbed description and a small demo |34| "We cut cost by X" | A single cost number | The pricing model, the instance-seconds logged, and the script that computes it |35| "p99 stays within target" | Mean latency only | Per-run tail percentiles with variance and run count |36| "Scales to N nodes" | One large run | A scaled reproduction path plus the full-scale logs |3738"Available on request" is treated as *not available*; convert every such line into a concrete,39anonymized (then released) artifact or an explicit, justified exception (e.g., a confidential40production trace, with a synthetic generator provided instead).4142## Provenance pinning4344```text45[Measurement] pin commit SHAs; record trace extraction dates; archive the replayed trace or a46 faithful generator, not just a query or a pointer47[Testbed] record node counts, instance types, OS/kernel versions, network, and the run count;48 a cloud result that cannot be re-deployed cannot be reproduced49[Cost] state the pricing model and the source of every cost figure so a reader can recompute50[Tail] log per-request or per-run latency distributions, not only aggregates51[Randomness] log seeds for stochastic components; say what is and is not deterministic52```5354## Degrees of reproducibility (state the one you achieved)5556- **Turnkey:** one documented command regenerates each figure (including tail and cost) from logged57 runs, at least at reduced scale.58- **Scripted:** scripts exist but require a specific testbed, documented manual steps, or restricted59 trace access.60- **Descriptive:** prose and configuration detailed enough that a competent reader could rebuild the61 deployment and measurement pipeline.6263For SoCC, aim turnkey for anything an evaluator could rerun at small scale (a short trace replay, a64tail/cost plot from logged runs); full-cluster or proprietary-trace results may stay scripted with65access clearly documented. Stating the achieved level honestly beats promising turnkey behavior that66fails on someone else's testbed.6768## Vignette: a scheduling measurement paper6970Consider a paper measuring a new scheduler on a replayed production trace. Its reproducibility spine:71the scheduler code with pinned SHAs; the replay harness and the (anonymized, then released) trace72with its extraction date; the testbed description (nodes, instance types, kernel); the measurement73scripts that turn raw logs into the throughput, p99, and cost figures; the run count and variance;74and one honest sentence about the parts (a confidential production trace, the full cluster) that75cannot be shared and what synthetic or scaled substitute is provided.7677## Consistency and camera-ready pass7879- Before submission: every reported number traces to the artifact; the reproducibility statement80 matches reality; the artifact is anonymized (no cluster names, provider hints, or trace81 provenance that reveals identity).82- Before camera-ready: swap anonymized links for permanent, DOI-issuing archives, and align the83 statement with the ACM badges you are pursuing if the edition offers evaluation84 (`socc-artifact-evaluation`).8586## Output format8788```text89[Claim inventory] <claim -> evidence location>90[Reproducibility statement] concrete / vague / missing91[Provenance gaps] <trace SHAs+dates / testbed description / cost model / tail logging / seeds>92[Tail + cost] reproducible, not just the mean? yes/no93[Reproducibility level] turnkey / scripted / descriptive, stated honestly94[Paper fixes] <must appear in the PDF>95[Artifact fixes] <additions before upload>96```9798---99100**Source:** [`brycewang-stanford/Awesome-Journal-Skills`](https://github.com/brycewang-stanford/Awesome-Journal-Skills) → `SoCC-Skills/skills/socc-reproducibility/SKILL.md`