You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This tracker covers the internal row-binlog and Table Stream stack used by incremental computation, plus its MTMV integration. External CDC Streaming Jobs and general MTMV partition refresh or query-rewrite changes are out of scope unless they directly modify this stack.
The initial repository review covered 2026-04-09 through 2026-07-09. PR #61382 predates that window but is included because it is the Table Stream metadata and DDL foundation.
No PR implementing the row-level MTMV integration was identified as of 2026-07-09. The existing PartitionIncrementMaintainer supports partition-aware MTMV refresh analysis; it is not the row-level incremental-computation runtime tracked here.
Define supported MTMV query shapes and eligibility/fallback rules.
Derive delta plans from Table Streams, including snapshot sides for joins.
Define incremental semantics for projection, filter, join, union, aggregation, and supported expressions.
Integrate stream creation and lifecycle with MTMV creation, alteration, pause/resume, and drop.
Execute result changes and stream-offset advancement atomically.
Support full-refresh bootstrap/reset and fallback when incremental maintenance is not valid.
Define retry, idempotency, concurrent refresh, failover, and EditLog replay behavior.
Add observability for refresh mode, consumed offsets, lag, fallback reason, and failures.
Add FE and BE unit tests plus end-to-end regression tests for correctness and recovery.
Add user and operator documentation.
Correctness and compatibility checklist
DUP and supported UNIQUE KEY MOW table semantics are documented and tested.
Full update, partial update, delete, sequence column, hidden key, and schema-change paths are covered.
LSN/TSO ordering is deterministic across replicas and remains valid after clone and compaction.
Concurrent stream consumption either commits data and offsets together or fails without advancing offsets.
Snapshot, reset, and incremental reads agree at partition boundaries and after restart.
Binlog retention cannot silently invalidate an active stream or MTMV; stale state is observable and recoverable.
Unsupported plans fail clearly or use a documented full-refresh fallback.
Cloud-mode support or exclusion is explicit.
Upgrade, downgrade, rolling restart, backup/restore, and replication behavior is defined before general availability.
Overlapping or superseded PRs found during review
These PRs are relevant to the same row-binlog failure paths but are not separate remaining deliverables:
Description
This issue tracks the end-to-end incremental computation capability in Apache Doris.
The implementation is being built in three layers:
This tracker replaces the stale umbrella issue #57921 and incorporates the row-binlog foundation originally tracked by #61956.
Goals
Scope boundary
This tracker covers the internal row-binlog and Table Stream stack used by incremental computation, plus its MTMV integration. External CDC Streaming Jobs and general MTMV partition refresh or query-rewrite changes are out of scope unless they directly modify this stack.
The initial repository review covered 2026-04-09 through 2026-07-09. PR #61382 predates that window but is included because it is the Table Stream metadata and DDL foundation.
Progress
Row binlog foundation
Table Stream foundation
MTMV incremental maintenance
No PR implementing the row-level MTMV integration was identified as of 2026-07-09. The existing
PartitionIncrementMaintainersupports partition-aware MTMV refresh analysis; it is not the row-level incremental-computation runtime tracked here.Correctness and compatibility checklist
Overlapping or superseded PRs found during review
These PRs are relevant to the same row-binlog failure paths but are not separate remaining deliverables:
Exit criteria