mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-26 08:18:18 +00:00
5.7 KiB
5.7 KiB
Architecture Migration Progress
Status values: [ ] not started, [~] in progress, [x] complete, [!] blocked.
Current Context
- Issue:
rustfs/backlog#660 - Branch:
overtrue/arch-admin-route-matrix-guard - Baseline:
upstream/mainatdee550a831cbfc24aa5cecd60f6f3a4cfe1a2e30 - PR type for this branch:
test-only - Runtime behavior changes: none
- Rust code changes: add test-only admin route matrix coverage, test-only registered route tracking, and a private shared admin route registration helper so tests exercise the production registration sequence.
- CI/script changes: none
- Docs changes: record the route matrix guard handoff.
Phase 0 Tasks
G-001Refreshmainand record baseline.- Acceptance: baseline commit, title, and branch are recorded.
- Verification:
git fetch upstream main --prune;git rev-parse upstream/main.
G-002Create migration tracking checklist.- Acceptance: this file records task state, context, verification, and handoff.
G-003Classify PR types.- Acceptance:
crate-boundaries.mdlists exactly one allowed PR type per PR.
- Acceptance:
G-004Define re-export and wrapper policy.- Acceptance: temporary compatibility code must use
RUSTFS_COMPAT_TODO.
- Acceptance: temporary compatibility code must use
G-005Add dependency direction guard.- Acceptance:
./scripts/check_layer_dependencies.shpasses on currentupstream/mainwhile still rejecting new unaccepted layer dependencies.
- Acceptance:
- [~]
G-006Create migration loss-prevention checks.- Current branch: add a mechanical admin route matrix guard from
admin-route-action-snapshot.mdandrustfs/src/admin/route_registration_test.rs. - Remaining follow-up: add checks for public re-export and storage trait coverage before pure moves.
- Current branch: add a mechanical admin route matrix guard from
G-007Create startup timeline table.- Acceptance:
startup-timeline.mdrecords current binary startup order, side effects, fatal boundaries, and readiness stages.
- Acceptance:
G-008Capture admin route-action snapshot.- Acceptance:
admin-route-action-snapshot.mdrecords current route families, handler ownership, authorization actions, public exceptions, table-catalog routes, and/minio/admincompatibility alias behavior.
- Acceptance:
G-009Enforce pre-push three-expert review.- Acceptance:
crate-boundaries.mdrequires quality/architecture, migration-preservation, and testing/verification review before push.
- Acceptance:
G-010Inventoryecstore::config::{Config, KV, KVS}consumers.- Acceptance:
ecstore-config-consumer-inventory.mdrecords the current model definitions, global accessors, persistence helpers, consumer groups, migration risks, and do-not-change contract.
- Acceptance:
TEST-PRTYPE-001Check PR type enum consistency.- Acceptance:
./scripts/check_architecture_migration_rules.shparses the allowed PR types fromcrate-boundaries.mdand fails whenARCHITECTURE.mdor architecture docs reference an unknown PR type.
- Acceptance:
COMPAT-REG-001Check temporary compatibility cleanup consistency.- Acceptance:
./scripts/check_architecture_migration_rules.shfails when a sourceRUSTFS_COMPAT_TODO(<task-id>)marker lacks a cleanup-register entry, when a register entry lacks a source marker, or when a source marker omits a removal condition.
- Acceptance:
Next PRs
contract: define the config-model contract surface while preserving the existingConfig,KV, andKVSbehavior.ci-gate: add focused checks for public re-export and storage trait coverage before pure moves.
Pre-Push Review Log
| Expert | Status | Notes |
|---|---|---|
| Quality/architecture | pass | Confirmed the matrix helpers keep the snapshot explicit, S3Router instrumentation is fully cfg(test), the production registration order is shared through one private helper, and the non-test insertion path keeps existing route construction/insert behavior |
| Migration preservation | pass | Confirmed this remains test-only in effect: no route handler/auth/alias semantics changed, no storage hot-path/global-state/crate-split changes, and MinIO admin alias coverage is expanded across all admin-prefix matrix entries |
| Testing/verification | pass | Confirmed focused route tests pin ENV_HEALTH_ENDPOINT_ENABLE=true, use the production registration helper, and pass with formatting, non-test cargo check, migration guard scripts, diff check, full make pre-commit, and temporary unaccounted-route negative coverage |
Verification Notes
Passed:
cargo fmt --all --checkcargo check -p rustfs --libcargo test -p rustfs admin::route_registration_test -- --nocapture./scripts/check_architecture_migration_rules.sh./scripts/check_layer_dependencies.sh./scripts/check_metrics_migration_refs.shgit diff --check- temporary negative check for an unaccounted admin route registration
make pre-commit
Handoff Notes
- Keep Phase 0 PRs small. Do not move Config, Storage API, Runtime, or ECStore
code inside this
test-onlybranch. - Route matrix instrumentation must remain test-only and must not alter dispatch or auth behavior.
- Do not add temporary compatibility code without a matching
RUSTFS_COMPAT_TODO(<task-id>)marker and cleanup-register entry. - The next config-model PR must preserve the current tuple-struct shapes and persistence behavior before introducing narrower provider contracts.
- Do not move
config::comuntil a dedicated helper-user inventory covers ECStore-internal persistence paths as well as adjacent non-model users.