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
//! The cold tier: settled history, in Apache Iceberg.

pub mod catalog;
pub mod iceberg;
pub mod parquet;

pub use catalog::{ColdTier, IcebergSqlCatalog, WarehouseAuth};
pub use iceberg::IcebergCold;