houseme
|
0a00d8d500
|
perf(server): lighten internode data-plane stack (#3735)
* refactor(server): split internode dispatch scaffold
* test(server): cover internode dispatch prefix split
* refactor(server): name internode stack boundaries
* perf(server): skip internode request logging layer
* perf(server): skip internode trace layer
* perf(server): use lite internode request context
* feat(metrics): track internode rpc duration
* feat(ecstore): add put object stage summary logs
* test(metrics): update internode descriptor expectations
* fix(server): tighten internode path matching
* fix(pr): address review follow-up comments
* style(ecstore): simplify commit tail duration field
* refactor(ecstore): group put stage summary fields
* refactor(ecstore): inline put stage summary log
* fix(s3): return storage class for object attributes
* merge: sync latest main and resolve object attributes conflict
* fmt
* fix(server): remove duplicate rpc imports
* build(deps): bump memmap2 for RUSTSEC-2026-0186
* fix(s3select): align object_store with datafusion
* chore(deps): prune workspace dependencies
* perf(fuzz): optimize CI runtime with build/run split and matrix parallelization
Separate fuzz harness compilation from execution to eliminate redundant
builds across targets. Introduce matrix-based parallel execution for
PR smoke and nightly fuzz jobs.
Changes:
- Split CI workflow into `fuzz-build` (compile once) and matrix run jobs
(`pr-fuzz-smoke`, `nightly-fuzz-corpus`) that execute targets in parallel
- Add `BUILD_ONLY` mode to run_ci_targets.sh / run_nightly_targets.sh
- Add run_single_target.sh for matrix jobs (no build phase)
- Optimize `local_metadata` fuzz target: reduce prefix iterations from
8-10 (4 functions each) to 5 critical prefixes (parser-only), cutting
per-iteration cost by ~3-5x
- Move archive path validation (`validate_extract_relative_path`,
`normalize_extract_entry_key`) from `rustfs` to `rustfs-utils::path`,
eliminating `rustfs` binary crate dependency from fuzz harness
- Remove `rustfs` from fuzz/Cargo.toml (drops significant transitive deps)
- Add unit tests for archive path validation in rustfs-utils
- Update fuzz/README.md with new workflow and script documentation
Expected CI improvement: PR smoke wall-clock from ~120min (frequent
timeout) to ~40min; nightly from ~180min to ~60min.
* refactor(fuzz): consolidate scripts and fix prefix test alignment
Replace three duplicated shell scripts (run_ci_targets.sh,
run_nightly_targets.sh, run_single_target.sh) with a single
parameterized run.sh that supports BUILD_ONLY, SKIP_BUILD, and
MAX_TOTAL_TIME environment variables.
Fix local_metadata fuzz target prefix testing: replace always-true
'len > 0' guard with lengths aligned to xl.meta binary layout
(4/5/8/12 bytes for magic+version+header fields). Remove redundant
empty-slice test.
Hoist RUSTFLAGS to workflow top-level env to eliminate per-job
duplication. Update README with unified script documentation.
Net: -118 lines, zero functionality loss.
* perf(fuzz): optimize CI runtime with build/run split and matrix parallelization
Restructure fuzz CI workflow to eliminate redundant compilation and
run targets in parallel via matrix strategy.
Workflow changes:
- Split into fuzz-build (compile once) and matrix run jobs
- PR smoke: 3 targets parallel, 60s each, timeout 30min (was 120min)
- Nightly: 3 targets parallel, 300s each, timeout 60min (was 180min)
- Pass compiled harness via actions/artifact between jobs
- Hoist RUSTFLAGS to workflow top-level env
Script consolidation:
- Replace 3 duplicated scripts with single parameterized run.sh
- Supports BUILD_ONLY, SKIP_BUILD, MAX_TOTAL_TIME env vars
Target optimizations:
- Remove rustfs binary crate from fuzz dependencies (was pulling
979 transitive deps); move archive path validation to rustfs-utils
- Optimize local_metadata: reduce prefix iterations from 8-10x4
calls to 5 prefixes with parser-only (no decompress), aligned
with xl.meta binary layout (4/5/8/12 bytes)
- Add unit tests for archive path validation in rustfs-utils
- Update fuzz/README.md with unified script documentation
Expected: PR smoke wall-clock from ~120min (frequent timeout)
to ~40min; nightly from ~180min to ~60min.
* fix(rpc): resolve internode metrics via app context
* fmt
* ci: speed up fuzz smoke artifact restore
---------
Signed-off-by: houseme <housemecn@gmail.com>
|
2026-06-23 21:36:39 +08:00 |
|
Zhengchao An
|
30559f7e1b
|
refactor: collapse test fuzz ecstore thin bridges (#3765)
|
2026-06-23 07:04:51 +08:00 |
|
Zhengchao An
|
198fd4f150
|
refactor(runtime): route RustFS runtime consumers through storage owner (#3756)
|
2026-06-23 05:17:56 +08:00 |
|
Zhengchao An
|
e0b79aa00c
|
refactor: expose test fuzz owner symbols (#3752)
|
2026-06-23 01:11:46 +08:00 |
|
Zhengchao An
|
88a87b3e8f
|
refactor: centralize external ECStore facade aliases (#3746)
|
2026-06-22 20:37:13 +08:00 |
|
Zhengchao An
|
b63b076275
|
refactor: remove remaining compatibility bridges (#3738)
|
2026-06-22 16:53:14 +08:00 |
|
安正超
|
599e3632d1
|
refactor: use relative fuzz compat consumers (#3736)
|
2026-06-22 15:44:59 +08:00 |
|
安正超
|
de158743c3
|
refactor: split compat facade imports (#3716)
|
2026-06-22 09:53:22 +08:00 |
|
安正超
|
d39815470e
|
refactor: prune consumer storage compat paths (#3704)
|
2026-06-22 02:31:30 +08:00 |
|
安正超
|
0cf9d07e40
|
refactor: prune test protocol compat aliases (#3693)
|
2026-06-21 18:09:39 +08:00 |
|
安正超
|
0985225448
|
refactor: consolidate ecstore public facade (#3678)
* refactor: expand ecstore compatibility facade
* test: enforce ecstore api facade imports
* refactor: hide legacy ecstore layout modules
* refactor: hide ecstore facade root modules
|
2026-06-21 09:09:11 +08:00 |
|
安正超
|
74571cc4ca
|
fix(format): remove whitespace regressions (#3675)
|
2026-06-21 08:39:26 +08:00 |
|
安正超
|
ada6f7587e
|
refactor: flatten test harness storage compat aliases (#3596)
* refactor: flatten test harness storage compat aliases
* refactor: flatten rustfs storage compat aliases (#3597)
* refactor: prune runtime storage compat surface (#3598)
* refactor: flatten runtime secondary storage compat (#3599)
* docs: add scheduler placement profiling baselines (#3600)
* feat: add observability topology capability contracts (#3601)
|
2026-06-19 08:30:47 +08:00 |
|
安正超
|
b1c6578df1
|
refactor: narrow test harness compatibility surfaces (#3592)
|
2026-06-19 07:10:52 +08:00 |
|
Henry Guo
|
80144ec886
|
feat(scanner): expose usage freshness status (#3577)
* feat(scanner): expose usage freshness status
* fix(scanner): reset dirty usage cycle state
---------
Co-authored-by: Henry Guo <marshawcoco@users.noreply.github.com>
|
2026-06-18 21:14:55 +08:00 |
|
安正超
|
7b0cb9e725
|
refactor: prune storage compatibility re-export allowances (#3579)
* refactor: prune storage compatibility re-export allowances
* fix: reject whitespace-padded dot path segments
|
2026-06-18 21:14:24 +08:00 |
|
安正超
|
08371a6e09
|
refactor: narrow storage compatibility exports (#3576)
|
2026-06-18 18:31:14 +08:00 |
|
安正超
|
c098184c49
|
refactor: clean runtime and test storage boundaries (#3573)
* refactor: clean runtime observability select boundaries
* refactor: clean test harness fuzz storage boundaries
|
2026-06-18 18:09:25 +08:00 |
|
houseme
|
32aca6d835
|
feat(fuzz): scaffold cargo-fuzz harness for smoke targets (#3537)
|
2026-06-18 11:02:56 +08:00 |
|