-
Notifications
You must be signed in to change notification settings - Fork 1
Module importers Roadmap
github-actions[bot] edited this page Aug 31, 2026
·
1 revision
Production importer runtime exists across relational/document/stream/file/object ingestion paths, schema/conflict/quality handling, and auditable post-processing support.
- benchmark stabilization for importer throughput and conflict-resolution hot paths (Delivered: Q3 2026)
- final integration testing for Phase 2-3 hardening delivery (Delivered: Q3 2026)
- tighten deterministic behavior under high-volume multi-connector ingestion loads (Target: Q4 2026)
- extend stress coverage for mixed schema drift and conflict strategy scenarios (Target: Q4 2026)
- improve operator-facing diagnostics for connector and validation failure incidents (Target: Q4 2026)
- re-baseline p95/p99 envelopes for parser/import/conflict pathways (Target: Q1 2027)
- broaden benchmark depth for CDC, stream, and quality/audit-intensive workflows (Target: Q1 2027)
- harden long-running reliability under sustained ingest pressure (Target: Q1 2027)
- freeze connector/schema/conflict/audit contracts for active major line (Delivered: Q3 2026)
- define explicit error taxonomy for validation, conflict, and connector capability classes (Delivered: Q3 2026)
- Contract header:
include/importers/importers_api_contract.h - Error codes: IMPORT_SCHEMA_MISMATCH, IMPORT_ROW_INVALID, IMPORT_DUPLICATE_KEY, IMPORT_FILE_NOT_FOUND, IMPORT_QUOTA_EXCEEDED, IMPORT_DUPLICATE_ID, IMPORT_TIMEOUT, IMPORT_CONNECTOR_UNAVAILABLE, IMPORT_ROLLBACK, INTERNAL_ERROR
- Contract header:
- complete hardening for connector import and schema/validation internals (Delivered: Q3 2026)
- T2.1 Part 1: PostgreSQL connector hardening (commit 01e331e7)
- T2.1 Part 2: MySQL/Oracle/SQLite connector hardening (commit 5646694c)
- T2.1 Part 3/4: MongoDB/Kafka/S3 connector hardening (Q3 2026)
- T2.2: Schema inference and validation hardening (commit 6d5e118c)
- align conflict/quality/audit behavior to bounded runtime contracts (Delivered: Q3 2026)
- T2.3: Conflict resolution determinism, quality scoring bounds, audit trail integration (commit fe2f4cfd)
- standardize fail-safe behavior for unsupported connector and malformed schema scenarios (Delivered: Q3 2026)
- T3.1.1: Connector capability fallback chain
- T3.1.2: Malformed schema detection & degradation (STRICT/LENIENT/AUTO_REPAIR levels)
- T3.1.3: Rollback & recovery audit trail with deterministic replay
- unify diagnostics across schema, conflict, and capability failure incidents (Delivered: Q3 2026)
- T3.2.1: Structured failure diagnostics (5 categories, root cause + remediation)
- T3.2.2: Diagnostic aggregation & reporting with top 5 root causes
- Commit: 8e36c2e6fe
- expand focused regressions for mixed connector/schema/conflict edge scenarios (Delivered: Q3 2026)
- extend deterministic stress fixtures for high-throughput import workloads (Delivered: Q3 2026)
- Test file:
tests/importers/test_importers_contract_hardening_focused.cpp - Test cases: IMCH-01..IMCH-16 (idempotency, schema evolution, error handling, large import)
- kImportersContractSeed = 42; all tests self-contained, no external I/O
- Test file:
- lock benchmark-backed release gates for importer hot paths (Delivered: Q3 2026)
- validate p95/p99 and throughput behavior against release baselines (Delivered: Q3 2026)
- Benchmark file:
benchmarks/importers/bench_importers_release_gates.cpp - Gates: IMRG-01..IMRG-06 (CSV parse ≥5M/s, schema ≤50µs, dedup ≤100µs, commit ≤5ms, quota ≤50µs, schema-evolution ≤200µs)
- kImportersCanonicalSeed = 42; Repetitions(5)
- Benchmark file:
- core importers module docs aligned to source-verifiable behavior
- roadmap/future planning separated from historical changelog entries
- Phase 1-6 Wave 3B Category-D closure delivered (Q3 2026)
- Contract header, 16 focused tests (IMCH-01..16), 6 release-gate benchmarks (IMRG-01..06)
- core importer surfaces documented and source-verified
- module-level security and failure behavior documented
- benchmark mapping documented in performance expectations
- remaining hardening tasks closed for connector/validation/conflict edge paths (Delivered: 2026-08-07)
- release benchmark stabilization complete (Delivered: 2026-08-07)
- Test files: 6 source files in
tests/importers/test_*.cpp - Registered targets:
module_importers_<stem>_focused(auto-discovered via glob) - Test registration:
themis_register_module_focused_test()in tests/importers/CMakeLists.txt - IMCH test cases: 16 focused unit tests (IMCH-01..IMCH-16) in test_importers_contract_hardening_focused.cpp
- Idempotency contract validation (IMCH-01..04)
- Schema evolution handling (IMCH-05..08)
- Error handling and rollback (IMCH-09..12)
- Large import and edge cases (IMCH-13..16)
- Tier: unit, Timeout: 120s per test, Label:
importers phase4
- Benchmark file:
benchmarks/importers/bench_importers_release_gates.cpp - Registered target:
bench_importers_release_gatesvia themis_add_standard_benchmark() - Release gates (IMRG-01..IMRG-06):
- IMRG-01: CSV parse ≥5M rows/s (GATE-IMRG-01)
- IMRG-02: Schema validation p99 ≤50µs (GATE-IMRG-02)
- IMRG-03: Dedup key check p99 ≤100µs (GATE-IMRG-03)
- IMRG-04: Row commit p99 ≤5ms RT (GATE-IMRG-04)
- IMRG-05: Import quota p99 ≤50µs (GATE-IMRG-05)
- IMRG-06: Schema evolution p99 ≤200µs (GATE-IMRG-06)
- Seed: kImportersCanonicalSeed = 42; Repetitions(5), WarmupIterations(200)
- Preset:
community-release-allow-missing-rocksdb(vcpkg fallback for Linux system packages) - Test framework: GoogleTest/GTest (auto-discovery via find_package)
- Benchmark framework: google-benchmark
- Configuration verified: 2026-08-02 (cmake --preset community-release-allow-missing-rocksdb successful)
- Build targets verified: test and benchmark registration confirmed in CMake configuration
- runtime behavior depends on connector availability and build/runtime feature flags.
- Q3 2026 Phase 2-3 hardening completed (commit log: 01e331e7, 5646694c, 6d5e118c, fe2f4cfd, 8e36c2e6).
- Phase 2 T2.1: Connector pooling/timeout/fallback/error mapping (4 parts)
- Phase 2 T2.2: Schema bounds/cycles/validation levels
- Phase 2 T2.3: Conflict determinism/quality scoring/audit schema
- Phase 3 T3.1: Capability fallback/schema degradation/rollback recovery
- Phase 3 T3.2: Structured diagnostics/aggregation
- 2026-08-07 Phase 2-3 Closure deliverables:
- Phase 2-3 integration test suite:
tests/importers/test_importers_phase2_phase3_integration_focused.cpp(IMPI-01..16) - Benchmark stabilization report:
benchmarks/importers/PHASE2_3_STABILIZATION.md - All six release gates (IMRG-01..06) validated and stabilized with <3% variance
- CI gate thresholds established and reproducible across environments
- Phase 2-3 integration test suite:
- benchmark breadth should continue expanding for advanced ingest workflows.
No breaking importer contract planned. Any contract-breaking change requires migration notes and changelog entry before merge.
This module is a contributing module in the program-level Wave A → B → C → D execution model.
It does not own a primary wave deliverable but must remain release_critical-green throughout all waves
and must deliver Wave D operability improvements in Q1 2027.
See [[../../ROADMAP.md|ROADMAP]] for the full wave model and exit criteria.
- Deliver or validate distributed tracing, high-cardinality stress coverage, exporter reliability, and operator remediation hints as applicable to this module (Target: Q1 2027)
- Contribute to or validate long-duration soak test coverage for this module's primary paths (Target: Q1 2027)
- Ensure runbook coverage for operator-critical scenarios in this module (Target: Q1 2027)
-
release_criticalCI must remain green ondevelopthroughout all waves (Target: ongoing) - p95/p99 benchmarks must be refreshed on representative hardware before Wave D sign-off (Target: Q1 2027)
- No behavioral regression may be introduced into modules in Wave A/B/C scope from changes in this module.
- This module's distributed/acceleration paths fail closed (Target: Q1 2027)
- Benchmark-backed p95/p99 baselines exist on representative hardware (Target: Q1 2027)
- Operator-critical paths have diagnostics, alerts, and runbooks (Target: Q1 2027)
- 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