meterstore 0.12.0

Hot/cold tiered store for metering time series — PostgreSQL for the recent window, Apache Iceberg for history.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The cold tier: settled history, in Apache Iceberg.

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

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