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

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

#[cfg(feature = "s3tables")]
pub use catalog::S3TablesCatalog;
pub use catalog::{ColdTier, IcebergSqlCatalog, WarehouseAuth};
pub use iceberg::IcebergCold;