micromegas-analytics 0.1.8

analytics module of micromegas
Documentation
/// Record batches + schema
pub mod answer;
/// Materialize views on a schedule based on the time data was received from the ingestion service
pub mod batch_update;
/// Specification for a view partition backed by a set of telemetry blocks which can be processed out of order
pub mod block_partition_spec;
/// Management of process-specific partitions built on demand
pub mod jit_partitions;
/// Implementation of `BlockProcessor` for log entries
pub mod log_block_processor;
/// Materializable view of log entries accessible through datafusion
pub mod log_view;
/// Merge consecutive parquet partitions into a single file
pub mod merge;
/// Implementation of `BlockProcessor` for measures
pub mod metrics_block_processor;
/// Materializable view of measures accessible through datafusion
pub mod metrics_view;
/// Maintenance of the postgresql tables and indices use to track the parquet files used to implement the views
pub mod migration;
/// Write & delete sections of views
pub mod partition;
/// Describes the event blocks backing a partition
pub mod partition_source_data;
/// Datafusion integration
pub mod query;
/// Tracking of expired partitions
pub mod temp;
/// Jit view of the call tree built from the thread events of a single stream
pub mod thread_spans_view;
/// Basic interface for a set of rows queryable and materializable
pub mod view;
/// Access to global or process-specific views
pub mod view_factory;