nodedb-columnar 0.1.1

Columnar segment format and memtable for NodeDB analytical storage
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: Apache-2.0

//! Segment writer: drains a memtable into a compressed columnar segment.

mod block;
mod encode;
mod segment_writer;
mod stats;

pub use segment_writer::{
    PROFILE_PLAIN, PROFILE_SPATIAL, PROFILE_TIMESERIES, SegmentWriter, select_codec_for_profile,
};