Expand description
The TRACE face of the columnar subsystem: the columnar data arranged as a differential-dataflow trace.
Under the hood this is a Chunk implementation
(ColChunk, an UpdatesTyped trie, resident or paged), plugged into the
generic chunk harness. The exported names are the BATCH/TRACE vocabulary DD
arranges with — Spine, Batcher, Builder, Chunker — so callers
work in trace terms, not chunk-implementation terms.
chunk—ColChunk: theChunkimpl (cursor + merge/extract/advance/settle).chunker— meldsRecordedUpdatesstreams intoColChunkbatches.spill— per-worker page-out control (Chunk::settle’s spill hook).
Re-exports§
pub use chunk::ColChunk;
Modules§
- chunk
- A worked
Chunk: the columnarUpdatesTyped<U>trie, resident or paged. - chunker
- The container→batch chunker for the columnar trace.
- spill
- Per-worker spill control for the columnar
Chunktrace.