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
- Fix ETL coalescing race condition: use outer_steps_processed instead of
logical_steps_consumed for step limit check. Coalescing internally consumes
steps from future batches, inflating logical_steps_consumed and causing the
pipeline to stop one step early.
- Add missing pipeline.initialize() call in ADBC sink path, ensuring batch 0
is loaded for all tables before the pipeline run starts.
- Widen schema equivalence in checkpoint validation: allow Decimal128 with
same scale but different precision (DuckDB vs DataFusion), and add reverse
Decimal128 to Int64/Float64 matching.
- Measure checkpoint convergence latency from the first passing query rather
than from when the full validation sweep completes. The first pass
indicates when the data was correctly ingested; the remaining queries
confirm the result. Replace fixed 5s polling with watch channel
notification.
Checkpoint expected data in S3 regenerated for versions 1, 2, and 3.
0 commit comments