-
Notifications
You must be signed in to change notification settings - Fork 1
Module transaction Roadmap
Roadmap-Hinweis: Vage Bullets ohne Akzeptanzkriterien in Checkbox-Tasks ueberfuehren. Format:
- [ ] <Task> (Target: <Q/Jahr>).
Production-grade transaction stack with ACID lifecycle management, MVCC integration, savepoints, distributed coordination paths, and audit/batching utilities in active use.
- [~] Transaction hardening wave for distributed safety, timeout semantics, and recovery guarantees (Target: Q3 2026)
-
ITransactionCoordinatorunified interface for all commit protocols (2PC, 3PC, SAGA, Percolator, Calvin) — Issue #5374 - [~] Complete remaining cross-shard failure-injection coverage for coordinator and participant transitions (Target: Q3 2026)
- Phase 1 test suites complete: Lifecycle, Isolation Contention, Error Path Determinism (33 tests)
- [~] Tighten timeout and rollback determinism under sustained contention and mixed workloads (Target: Q3 2026)
- Phase 1: Timeout determinism tests with contention loads (10 tests)
- [~] Phase 2: Distributed coordinator timeout/retry hardening — tests implemented, build verification pending (Target: Q3 2026)
- [~] Build verification for Phase 2+3 test files (Target: Q3 2026):
-
test_transaction_distributed_phase2.cpp— 9 tests (AC-4/5/6) — file present; build + run confirmation tracked separately (Target: Q3 2026) -
test_transaction_saga_compensation_phase2.cpp— 12 tests (AC-8/9/10) — file present; build + run confirmation tracked separately (Target: Q3 2026) -
test_transaction_fault_injection_phase3.cpp— 14 tests (AC-11/12/13) — file present; build + run confirmation tracked separately (Target: Q3 2026)
-
- Coordinator crash-recovery validation: in-doubt reconciliation via WAL replay (AC-6) under chaos scenarios; deterministic rollback under ≥30s contention without data loss (Target: Q3 2026)
- SAGA orchestration hardening: partial remote failure scenarios, retry storm suppression with circuit breaker (AC-9/AC-10); compensation idempotency under concurrent retries (Target: Q3 2026)
- Timeout semantics: distributed coordinator timeout/retry with exponential backoff within deterministic bounds (AC-5) (Target: Q3 2026)
-
Source: gap-verifier subagent triage 2026-08-25 · 43 claimed gaps → 3 verified real HIGH + 2 MEDIUM
FP confirmed closed: LM C=2 stale metadata (iterator_invalidation FPs verified Wave-A)
FP confirmed closed:saga_orchestrator.cppH=10 — Kahn's algorithm cycle-return and circuit breaker FSM states are correct patterns; no unimplemented paths
FP confirmed closed:global_transaction_manager.cppH=22 —scope_mismatch× 1413 +circular_lock_orderingFPs on correct mutex usage
- T1 — stub #279 STUB NOTE (
distributed_transaction_manager.cpp:67,91): RPC Phase-1/Phase-2 bridges are pure injection points; add// STUB/SIMULATION NOTEdocumenting mandatory transport injection requirement; add entry toPRODUCTION_REQUIREMENTS.md; fail-fast guards already in place at lines 220–235 and 293–315 — Done 2026-08-26- Files:
src/transaction/distributed_transaction_manager.cpp - Tests: verify
commit()with participants and no transport returnsERR_NO_TRANSPORT
- Files:
- T2 — Upgrade Deadlock (
lock_manager.cpp:258-265): two transactions both holding SHARED on keykcallupgradeLock(k)→ both enqueue exclusive waiter → mutual block until timeout; add mutual-upgrade cycle detection before enqueuing OR wireDeadlockPredictorinto the upgrade-wait path — Done 2026-08-26- Files:
src/transaction/lock_manager.cpp - Tests:
upgradeLockunder concurrent same-key shared holders → one succeeds, one gets deadlock error promptly
- Files:
- T3 — Phase-2 Under Global Lock (
global_transaction_manager.cpp:248-252):runPhase2()called insidestd::lock_guard<mutex_>, blocking all GTM operations during Phase-2 delivery; apply snapshot-then-release pattern: snapshot participant list under lock → release → deliver Phase-2 → re-acquire to mark COMPLETED (mirrorsDistributedTransactionManager::runPhase1Unlocked) — Done 2026-08-26- Files:
src/transaction/global_transaction_manager.cpp - Also apply to
abort()(L306) andrecoverInDoubtTransactions()(L415) - Tests: concurrent
beginTransactionnot blocked during slow Phase-2 delivery
- Files:
- T4 — Silent Predicate Lock Drop (
lock_manager.cpp:530-538): capacity-basedreturn falsehas no log/counter; SSI false-positive abort rate invisible to operators; addTHEMIS_WARN+ metric counter onmax_lockscapacity reject (MEDIUM) — Done 2026-08-26 -
Regression tests:
tests/transaction/test_wave4c_transaction_hardening.cpp
-
[~] Coordinator crash-recovery (AC-6): WAL replay must resolve all in-doubt transactions within 5s of coordinator restart; deterministic rollback under ≥30s sustained contention without data loss. Unit/integration coverage exists; chaos/restart validation still pending.
- Inputs: WAL segment with 100 in-flight transactions; forced coordinator crash at prepare phase.
- Expected: all transactions resolved (committed or rolled-back); no orphaned locks; WAL replay idempotent.
- Tests:
TXN-RECOVERY-01(clean restart),TXN-RECOVERY-02(crash during 2PC prepare),TXN-RECOVERY-03(crash during 3PC pre-commit),TXN-RECOVERY-04(cascading coordinator+participant crash). (Target: Q3 2026)
-
[~] SAGA orchestration hardening (AC-9/AC-10): circuit breaker activates after 5 consecutive remote failures; compensation idempotency under 10 concurrent retries (same compensation step called multiple times → same committed state). Unit/integration coverage exists; chaos/retry-storm validation still pending.
- Tests:
TXN-SAGA-HARDENING-01(circuit breaker trip),TXN-SAGA-HARDENING-02(idempotent compensation under storm),TXN-SAGA-HARDENING-03(partial failure ordering),TXN-SAGA-HARDENING-04(retry storm with bounded backoff). (Target: Q3 2026)
- Tests:
-
[~] Timeout semantics (AC-5): exponential backoff with base 100ms, factor 2×, jitter ±20%, max 3 retries; error codes consistent across coordinator restart; no silent deadline extension. Unit/integration coverage exists; production-style timeout validation still pending.
- Tests:
TXN-TIMEOUT-01(backoff schedule validation),TXN-TIMEOUT-02(error consistency after restart),TXN-TIMEOUT-03(jitter bounds). (Target: Q3 2026)
- Tests:
-
[~] Cross-shard failure injection: coordinator crash at prepare, follower crash at commit, network partition during 2PC — all three scenarios covered with automated fault injection; zero data inconsistency across 100 runs. Unit/integration coverage exists; repeated chaos-run confirmation still pending. (Target: Q3 2026)
-
Harden coordinator crash-recovery and in-doubt transaction reconciliation policies (Target: Q4 2026)
-
Expand transaction diagnostics and explainability for lock/queue/latency bottlenecks (Target: Q4 2026)
-
Strengthen SAGA orchestration safeguards for partial remote failures and retries (Target: Q4 2026)
- Advance distributed transaction throughput hardening without weakening safety invariants (Target: Q1 2027)
- Extend OCC and serializable conflict telemetry to improve operator tuning loops (Target: Q1 2027)
- Expand audit/export integration hardening for large retention windows (Target: Q1 2027)
Status: Tests Implemented (Build & Execution Verification Pending) Target: Q3 2026 Evidence: src/transaction/PHASE_1_ACCEPTANCE_CHECKLIST.md
Completed Deliverables:
-
test_transaction_lifecycle_phase1.cpp— 12 focused tests validating AC-1, AC-2, AC-3 -
test_transaction_isolation_contention_phase1.cpp— 10 focused tests validating AC-3, AC-7 -
test_transaction_error_path_determinism_phase1.cpp— 11 focused tests validating AC-2, AC-7 - CMakeLists.txt test registration with proper macro pattern
- Acceptance criteria documentation and verification checklist
Acceptance Criteria Coverage:
- AC-1: ACID Lifecycle Isolation Enforcement (concurrent transactions)
- AC-2: Begin/Prepare/Commit/Abort State Machine Correctness (guard and recovery)
- AC-3: Isolation Level Behavior (READ_COMMITTED, SNAPSHOT, SERIALIZABLE)
- AC-7: Timeout Semantics and Deterministic Rollback (consistency under contention)
Next: Build verification and test execution (scheduled immediately)
Status: Tests Implemented — Build & Execution Verification In Progress (Target: Q3 2026) Evidence: src/transaction/PHASE_2_ACCEPTANCE_CHECKLIST.md
Completed Deliverables:
-
test_transaction_distributed_phase2.cpp— 9 focused tests validating AC-4, AC-5, AC-6 -
test_transaction_saga_compensation_phase2.cpp— 12 focused tests validating AC-8, AC-9, AC-10 - CMakeLists.txt test registration with proper macro pattern
- Acceptance criteria documentation and verification checklist
Acceptance Criteria Coverage:
- AC-4: Distributed Coordinator Failure Handling (2PC/3PC, participant crashes)
- AC-5: Timeout and Retry Determinism (exponential backoff, error consistency)
- AC-6: In-Doubt Transaction Reconciliation (recovery, WAL replay)
- AC-8: Compensation Idempotency (single/multi-step, retry storms)
- AC-9: SAGA Orchestration Under Failures (partial failures, network degradation)
- AC-10: Recovery and Retry Storm Handling (bounded retries, circuit breaker)
Q3 2026 Hardening Tasks:
- [~] Build verification:
cmake --preset community-release && cmake --build --target test_transaction_distributed_phase2returns exit 0 — test file exists; CI run confirmation pending (Target: Q3 2026) - [~] Run verification: all 9 tests in
test_transaction_distributed_phase2.cppgreen — test file exists; CI run confirmation pending (Target: Q3 2026) - [~] Run verification: all 12 tests in
test_transaction_saga_compensation_phase2.cppgreen — test file exists; CI run confirmation pending (Target: Q3 2026) - Coordinator crash-recovery: WAL replay scenario with simulated coordinator crash mid-prepare; verify in-doubt resolution completes within 5s (AC-6) (Target: Q3 2026)
- SAGA compensation idempotency: inject concurrent retry storm (≥10 concurrent retries); verify exactly-once compensation outcome (AC-8/AC-10) (Target: Q3 2026)
- Circuit breaker validation: after 5 consecutive SAGA step failures, circuit opens and no further retries are attempted (AC-10) (Target: Q3 2026)
Next: Build verification and test execution (scheduled Q3 2026)
Status: Tests Implemented — Build & Execution Verification In Progress (Target: Q3 2026) Evidence: src/transaction/PHASE_3_ACCEPTANCE_CHECKLIST.md
Completed Deliverables:
-
test_transaction_fault_injection_phase3.cpp— 14 focused tests validating AC-11, AC-12, AC-13 - CMakeLists.txt test registration with proper macro pattern
- Acceptance criteria documentation and verification checklist
- Fault injection patterns: Random, Cascading, Simultaneous, Network, Slow, Byzantine
Acceptance Criteria Coverage:
- AC-11: Extended Fault Injection Coverage (cross-shard, participant recovery)
- AC-12: Chaos Engineering Validation (simultaneous crashes, network partitions, Byzantine)
- AC-13: Recovery from Cascading Failures (multi-level, sequential crashes)
Cumulative Tests: 73 tests across Phases 1-3 (33+26+14)
Q3 2026 Hardening Tasks:
- [~] Build verification: all 14 tests in
test_transaction_fault_injection_phase3.cppbuild and run green oncommunity-releasepreset — test file exists; CI run confirmation pending (Target: Q3 2026) - Byzantine failure scenario: inject conflicting prepare-votes from ≥2 participants; verify coordinator rolls back deterministically (AC-12) (Target: Q3 2026)
- Cross-shard failure injection: all coordinator + participant state transitions covered (AC-11); confirm transition graph is complete with no uncovered edge (Target: Q3 2026)
- Cascading failure: simulate 3-level coordinator chain failure during distributed commit; verify recovery without data loss (AC-13) (Target: Q3 2026)
Next: Build verification and test execution (scheduled Q3 2026)
Status: Benchmarks Implemented (Build & Baseline Collection In Progress) Target: Q4 2026 Evidence: src/transaction/PHASE_4_ACCEPTANCE_CHECKLIST.md
Completed Deliverables:
-
benchmarks/transaction/bench_transaction_phase4.cpp— 13 benchmarks validating AC-14 through AC-18 - Throughput baselines (single-thread, multi-thread, distributed)
- Tail-latency analysis (p99, p999, contention-induced spikes)
- Audit overhead measurement benchmarks
- Batching efficiency benchmarks (various batch sizes)
- Recovery performance validation benchmarks
- Performance gate definitions (THP-01 through REC-01)
Acceptance Criteria Coverage:
- AC-14: Throughput Baseline (10K+ txns/sec local, 5K+ distributed)
- AC-15: Latency Tail (p99 < 50ms, p999 < 200ms)
- AC-16: Audit Overhead (< 5% regression)
- AC-17: Batching Efficiency (50%+ throughput improvement)
- AC-18: Recovery Performance (< 5s for 10K transactions)
Q4 2026 Benchmark Execution Gates:
- Execute
bench_transaction_phase4oncommunity-releasepreset; gateTHP-01(≥10K txns/sec local) MUST be green (Target: Q4 2026) - Execute
bench_transaction_phase4; gateREC-01(recovery <5s for 10K transactions) MUST be green (Target: Q4 2026) - Save baseline JSON (
phase4_baseline.json) and commit tobenchmarks/transaction/baselines/(Target: Q4 2026) - Audit overhead gate AC-16: confirm <5% regression vs no-audit baseline (Target: Q4 2026)
Next: Build verification and baseline collection (scheduled Q4 2026)
Status: Documentation Framework Complete (Build & Verification Concurrent) Target: Ongoing (Q3 2026 onwards) Evidence: src/transaction/PHASE_5_ACCEPTANCE_CHECKLIST.md
Completed Deliverables:
- PHASE_4_ACCEPTANCE_CHECKLIST.md — Performance gates and benchmark documentation
- PHASE_5_ACCEPTANCE_CHECKLIST.md — Release readiness framework
- Documentation verification checklist (ROADMAP, ARCHITECTURE, README, etc.)
- Changelog consolidation framework
- Build verification and test execution (in progress)
- Performance baseline validation (in progress)
- Documentation synchronization (in progress)
Release Readiness Tasks:
- Build verification: cmake --preset community-release && cmake --build --preset community-release
- Test execution: ctest --preset community-release --label "transaction;phase-*" -V
- Benchmark execution: bench_transaction_phase4 --benchmark_format=json
- Performance gate validation (THP-01 through REC-01)
- Documentation audit and synchronization
- Changelog finalization with release version
Next: Complete build verification and baseline collection immediately
- Status: Phases 1-4 Complete (Verification In Progress); Phase 5 Documentation (In Progress)
- Core Acceptance Criteria: AC-1 through AC-18 (All implemented)
- Evidence:
- 33 Phase 1 focused tests (lifecycle, isolation, contention, error paths)
- 26 Phase 2 focused tests (distributed coordination, SAGA, compensation)
- 14 Phase 3 focused tests (fault injection, chaos engineering, cascading failures)
- 73 total focused tests across all phases
- 19 Phase 4 benchmarks (throughput, latency, audit overhead, batching, recovery)
- [~] Build verification and execution evidence (in progress)
- Distributed transaction coordinator interface finalized
- In-doubt reconciliation tested (Phase 2)
- SAGA compensation idempotency validated (Phase 2-3)
- [~] Performance baseline and operational limits (Phase 4, baseline collection in progress)
- [~] Documentation synchronization (Phase 5, in progress)
- Hinweis: Abgeschlossene Arbeit wird ausschliesslich in CHANGELOG dokumentiert.
- Build configuration dependent on system packages (librocksdb-dev, libspdlog-dev, libfmt-dev, nlohmann-json3-dev, libbenchmark-dev)
- Phase 4 performance baselines pending collection from build verification
- Phase 5 documentation synchronization deferred to release cycle
- Some edge cases in Byzantine failure handling may require additional testing
# Configure
cmake --preset community-release
# Build transaction module and tests
cmake --build --preset community-release --parallel 16# Execute Phase 1 tests
ctest --preset community-release --label "transaction;phase-1" -V
# Execute Phase 2 tests
ctest --preset community-release --label "transaction;phase-2" -V
# Execute Phase 3 tests
ctest --preset community-release --label "transaction;phase-3" -V
# Execute all transaction phase tests
ctest --preset community-release --label "transaction;phase-*" -V --output-on-failure# Build benchmarks
cmake --build --preset community-release --target bench_transaction_phase4
# Execute Phase 4 benchmarks
./build-community-release/benchmarks/transaction/bench_transaction_phase4 \
--benchmark_format=json \
--benchmark_out=phase4_baseline.json- Transaction public APIs in active major lines remain additive-first.
- Any future behavioral changes requiring migration must be versioned and documented in changelog/migration notes.
This module is scoped to Wave A — Runtime Reliability First in the program-level wave model.
See [[../../ROADMAP.md|ROADMAP]] for the full Wave A → B → C → D gate model and exit criteria.
- [~] Transaction: test files for crash-recovery chaos validation, timeout determinism, SAGA retry-storm control, and Byzantine/cascading-failure validation implemented and registered in CMakeLists.txt; build/run verification pending representative-hardware CI access (Target: Q3–Q4 2026)
- Deterministic chaos evidence complete for recovery and failover paths (Target: Q4 2026)
- Fail-closed behavior verified for all distributed/acceleration paths in scope (Target: Q4 2026)
-
release_criticalCI green ondevelop(Target: Q4 2026) - Representative-hardware p95/p99 baselines refreshed (Target: Q4 2026)
- Focused regression closure: 83 focused tests delivered across lifecycle (Phase 1), distributed coordination (Phase 2), fault-injection (Phase 3), and Wave A closure batch (2026-08-19). See
WAVE_A_CLOSURE_EVIDENCE_BUNDLE.md. - Chaos/fault-injection evidence: TXN-RECOVERY-01..04, TXN-SAGA-HARDENING-01..04, TXN-BYZANTINE-01..02, TXN-XSHARD-01..02 delivered in
test_transaction_wave_a_closure.cpp(15 tests, registeredrelease_critical). - Fail-closed verification: coordinator crash-recovery (WAL replay idempotent), SAGA circuit-breaker (threshold enforcement), Byzantine-vote forced ABORT, cross-shard partition TIMEOUT surfacing — all verified by dedicated test cases.
- [~] Build/run confirmation note (2026-08-18): sandbox configure remains blocked by missing RocksDB/fmt packages; CI lane execution still pending.
- Representative-hardware p95/p99 baselines:
benchmarks/transaction/bench_transaction_phase4.cppexists; baseline capture and gate refresh remain open. -
release_criticalCI green ondevelop: all 83 tests registeredrelease_critical; execution evidence pending. - Next closure item: complete configure/build/test verification on CI and record gate execution evidence.
- Wave B performance consolidation depends on Wave A gate closure.
- Wave C security validation depends on stable Wave A runtime behavior.
- Wave D operability hardening depends on all prior waves being gate-complete.
Added: 2026-08-26
Wire real gRPC transport into the DistributedTransactionManager static
injection points (setRpcPhase1Fn / setRpcPhase2Fn) so distributed
transactions drive actual network calls instead of falling back to the
in-process simulation.
| Item | Description | Status |
|---|---|---|
| [x] W9-7 |
GrpcRpcPhase1Adapter — Phase-1 PREPARE gRPC adapter |
Done 2026-08-26 |
| [x] W9-8 |
GrpcRpcPhase2Adapter — Phase-2 COMMIT/ABORT gRPC adapter with 3-attempt exp-backoff |
Done 2026-08-26 |
| [x] W9-9 | Wire adapters in DI root (src/main.cpp) behind THEMIS_HAS_CORE_GRPC guard |
Done 2026-08-26 |
| File | Role |
|---|---|
include/transaction/grpc_rpc_adapter.h |
Public API — GrpcRpcPhase1Adapter::make(), GrpcRpcPhase2Adapter::make()
|
src/transaction/grpc_rpc_adapter.cpp |
Implementation; all gRPC code in #ifdef THEMIS_HAS_CORE_GRPC
|
tests/transaction/test_grpc_rpc_adapter.cpp |
15 tests (GRPC-P1-01..05, GRPC-P2-01..05, GRPC-DTM-01..03, GRPC-CONTENTION-01, GRPC-WAL-01) |
ThemisCoreService::BeginTransaction (with options["2pc_prepare"]="1") is
used as a Phase-1 PREPARE proxy because the current proto schema has no
dedicated PrepareTransaction RPC. This is intentional for the W9 bridge;
when the schema is extended a first-class Prepare RPC should replace it.
- STUB #279 Phase-1 transport bridge — resolved;
GrpcRpcPhase1Adapterwired - STUB #279 Phase-2 transport bridge — resolved;
GrpcRpcPhase2Adapterwired - Retry-with-backoff (3 attempts: 100 ms / 200 ms / 400 ms) for Phase-2
-
THEMIS_HAS_CORE_GRPCcompile guard — non-gRPC builds compile cleanly - Fail-closed stubs in non-gRPC path (vote ABORT / throw)
- 15 tests registered
release_criticalintests/transaction/CMakeLists.txt
Added: 2026-08-27
Replace the InsecureChannelCredentials() TODO in both adapter make()
factories with real mTLS (grpc::SslCredentials) support; preserve an
insecure fallback for dev/test environments.
| Item | Description | Status |
|---|---|---|
| [x] W10-A |
MtlsConfig struct in include/transaction/grpc_rpc_adapter.h
|
Done 2026-08-27 |
| [x] W10-A |
GrpcRpcPhase1Adapter::make() accepts std::optional<MtlsConfig>
|
Done 2026-08-27 |
| [x] W10-A |
GrpcRpcPhase2Adapter::make() accepts std::optional<MtlsConfig>
|
Done 2026-08-27 |
| [x] W10-A |
src/main.cpp reads THEMIS_GRPC_CA_CERT / THEMIS_GRPC_CLIENT_CERT / THEMIS_GRPC_CLIENT_KEY
|
Done 2026-08-27 |
| [x] W10-A | MTLS-01: construction with all PEM fields populated does not throw | Done 2026-08-27 |
| [x] W10-A | MTLS-02: nullopt falls back to insecure credentials without throwing |
Done 2026-08-27 |
| File | Change |
|---|---|
include/transaction/grpc_rpc_adapter.h |
MtlsConfig struct; [[nodiscard]] + optional param on make()
|
src/transaction/grpc_rpc_adapter.cpp |
makeChannelCredentials / makeChannelArguments helpers; grpc::CreateCustomChannel
|
src/main.cpp |
Env-var reading block; pass mtls_cfg to both adapters |
tests/transaction/test_grpc_rpc_adapter.cpp |
MTLS-01, MTLS-02 tests |
-
MtlsConfigstruct with Doxygen docs in public header -
SslCredentialsused when all three PEM fields are non-empty -
InsecureChannelCredentials()fallback withspdlog::warnwhen any PEM field absent ormtls = nullopt -
target_name_overridewired viagrpc::ChannelArguments::SetSslTargetNameOverride - No raw
new/delete;grpc::SslCredentialsOptionsused directly -
make()marked[[nodiscard]] -
THEMIS_GRPC_CA_CERT,THEMIS_GRPC_CLIENT_CERT,THEMIS_GRPC_CLIENT_KEYenv vars read insrc/main.cpp - 2 new tests (MTLS-01, MTLS-02) in
tests/transaction/test_grpc_rpc_adapter.cpp
- Architecture-ACCESS-MODEL-IMPLEMENTATION-SUMMARY
- Architecture-ADR-003-pg-dump-sql-parser
- Architecture-BASEENTITY-PRINCIPLE
- Architecture-CACHE-STORAGE-INTEGRATION
- Architecture-CMAKE-ARCHITECTURE
- Architecture-CMAKE-FLAGS-REFERENCE
- Architecture-CMAKE-MODULAR-ARCHITECTURE
- Architecture-CONCERNS-ARCHITECTURE-DIAGRAM
- Architecture-CONCERNS-IMPLEMENTATION-SUMMARY
- Architecture-CONTENT-MODEL
- Architecture-COPILOT-THEMISDB-GRAPH-RAG-BACKEND-ARCHITECTURE
- Architecture-CRYPTO-AND-KEYS
- Architecture-FEATURE-FLAGS-REFERENCE
- Architecture-GPU-ARCHITECTURE-REVIEW-TEMPLATE
- Architecture-HTTP-SHUTDOWN-HARDENING
- Architecture-MIGRATION-GUIDE-CONCERNS
- Architecture-MIGRATION-GUIDE-v13-v14
- Architecture-MODULARIZATION-GUIDE
- Architecture-MODULAR-ARCHITECTURE-ROADMAP
- Architecture-MODULE-ARCHITECTURE-INDEX
- Architecture-P1D01-ISSMPLUGIN-DESIGN-REVIEW
- Architecture-P1-D01-ISSMPLUGIN-DESIGN-REVIEW
- Architecture-P1-D08-MAMBA-GOVERNANCE-CONTRACT
- Architecture-P1-P2-IMPLEMENTATION-COMPLETION-INDEX
- Architecture-PHASE0-COMPLETION-ASSESSMENT
- Architecture-PHASE3-QUERYENGINE-DI-ARCHITECTURE
- Architecture-PHASE4-INDEX-MANAGER-DI
- Architecture-POSTGRESQL-WIRE-PROTOCOL
- Architecture-QUERYENGINE-IMPLEMENTATION-GUIDE
- Architecture-QUERY-SCHEDULING
- Architecture-RAFT-CONSENSUS-DESIGN
- Architecture-README
- Architecture-README-SSM-HYBRID-IMPLEMENTATION
- Architecture-REFACTORING-SUMMARY
- Architecture-RESOURCE-POOLING
- Architecture-SOURCE-DIRECTORY-GUIDE
- Architecture-THEMIS-CORE-GUIDE
- Architecture-UNIFIED-ACCESS-MODEL
- Architecture-WAL-GRPC-MTLS-CONFIGURATION
- Architecture-WIRE-PROTOCOL-RETRY
- Architecture-boltzmann-observability-draft
- Architecture-experimental-logarithmic-vector-storage
- Architecture-llm-wiki-mvp-adr
- Architecture-rewrite-engine-architecture
- Architecture-rope-api-architecture
- Architecture-ssm-gguf-mamba-status
- Architecture-ssm-hybrid-analysis
- Architecture-ssm-hybrid-rollout-plan
- Architecture-ssm-plugin-interface-design-review
- Architecture-transaction-coordinators
- Architecture-wiki-secondary-index
- Architecture-wire-protocol
- Governance-DISABLED-STUB-POLICY
- Governance-DOCS-PR-POLICY
- Governance-GA-PROMOTION-SIGN-OFF
- Governance-GITHUB-MILESTONES-SETUP
- Governance-MATURITY-CLAIM-VERIFICATION-CHECKLIST
- Governance-MATURITY-EVIDENCE-REGISTRY
- Governance-MERGE-GATE-BOT-CONFIG
- Governance-MERGE-GATE-STATUS-LIVE
- Governance-PHASE3-ENFORCEMENT-RUNBOOK
- Governance-PHASE-1-CLOSURE-REPORT
- Governance-PHASE-CLOSURE-POLICY
- Governance-PHASE-DEPENDENCY-GRAPH
- Governance-PLUGIN-SUBMODULE-ROLLBACK
- Governance-PRODUCTION-READY-2026-DELIVERY-PLAN
- Governance-PR-VERSION-TARGETING
- Governance-PR-VERSION-TARGETING-BACKFILL
- Governance-QUERY-MODULE-STATUS
- Governance-README
- Governance-RELEASE-PROMOTION-GATE-POLICY
- Governance-RELEASE-VALIDATION-CHECKLIST
- Governance-SECURITY-MODULE-5671-EVIDENCE-SUMMARY
- Governance-SHARDING-P6-RESIDUAL-RISK-ACCEPTANCE
- Governance-SOURCECODE-COMPLIANCE-GOVERNANCE
- Governance-UPDATES-DEVELOPMENT-STATUS-SIGN-OFF
- Governance-WAVE-C-IMPLEMENTATION-COMPLETE
- Module-acceleration-Roadmap
- Module-access-model-Roadmap
- Module-ai-Roadmap
- Module-analytics-Roadmap
- Module-api-Roadmap
- Module-aql-Roadmap
- Module-auth-Roadmap
- Module-base-Roadmap
- Module-cache-Roadmap
- Module-cdc-Roadmap
- Module-chaos-Roadmap
- Module-chimera-Roadmap
- Module-config-Roadmap
- Module-content-Roadmap
- Module-core-Roadmap
- Module-distributed-knowledge-Roadmap
- Module-distributed-tensor-Roadmap
- Module-document-Roadmap
- Module-ethics-ai-Roadmap
- Module-evaluation-Roadmap
- Module-execution-Roadmap
- Module-exporters-Roadmap
- Module-failover-Roadmap
- Module-geo-Roadmap
- Module-governance-Roadmap
- Module-gpu-Roadmap
- Module-graph-Roadmap
- Module-image-analysis-Roadmap
- Module-importers-Roadmap
- Module-index-Roadmap
- Module-ingestion-Roadmap
- Module-llama-cpp-Roadmap
- Module-llm-Roadmap
- Module-llm-streaming-Roadmap
- Module-llm-wiki-Roadmap
- Module-maintenance-Roadmap
- Module-metadata-Roadmap
- Module-network-Roadmap
- Module-observability-Roadmap
- Module-onnx-clip-Roadmap
- Module-performance-Roadmap
- Module-plugins-Roadmap
- Module-process-Roadmap
- Module-projects-Roadmap
- Module-prompt-engineering-Roadmap
- Module-query-Roadmap
- Module-rag-Roadmap
- Module-replication-Roadmap
- Module-retrieval-Roadmap
- Module-rpc-grpc-Roadmap
- Module-scheduler-Roadmap
- Module-scraper-Roadmap
- Module-search-Roadmap
- Module-security-Roadmap
- Module-server-Roadmap
- Module-sharding-Roadmap
- Module-stable-diffusion-Roadmap
- Module-storage-Roadmap
- Module-temporal-Roadmap
- Module-tensor-Roadmap
- Module-themis-Roadmap
- Module-timeseries-Roadmap
- Module-toolbox-Roadmap
- Module-training-Roadmap
- Module-transaction-Roadmap
- Module-updates-Roadmap
- Module-user-storage-encrypted-Roadmap
- Module-utils-Roadmap
- Module-vector-search-Roadmap
- Module-voice-Roadmap
- Module-whisper-Roadmap