meterstore 0.4.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
//! Moving settled intervals from the hot store to the cold store.

pub mod archive;
pub mod source;
pub mod store;

pub use archive::{ArchivalOutcome, Archiver};
pub use source::{ChangeBatch, ChangeSource, Position};
pub use store::{ArchiveLease, ColdStore, HotStore, PartitionId, SnapshotInfo};