meterstore 0.2.0

Hot/cold tiered store for metering time series — PostgreSQL for the recent window, Apache Iceberg for history.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Moving settled intervals from the hot store to the cold store.

pub mod archive;
#[cfg(feature = "cdc")]
pub mod source;
pub mod store;

pub use archive::{ArchivalOutcome, Archiver};
#[cfg(feature = "cdc")]
pub use source::{ChangeBatch, ChangeSource, Position};
pub use store::{ArchiveLease, ColdStore, HotStore, PartitionId, SnapshotInfo};