micromegas-analytics 0.2.0

analytics module of micromegas
Documentation
/// Record batches + schema
pub mod answer;
/// Write parquet in object store
pub mod async_parquet_writer;
/// 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;
/// Replicated view of the `blocks` table of the postgresql metadata database.
pub mod blocks_view;
/// 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;
/// Specification for a view partition backed by a table in the postgresql metadata database.
pub mod metadata_partition_spec;
/// 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;
/// In-memory copy of a subnet of the list of the partitions in the db
pub mod partition_cache;
/// Describes the event blocks backing a partition
pub mod partition_source_data;
/// Replicated view of the `processes` table of the postgresql metadata database.
pub mod processes_view;
/// Datafusion integration
pub mod query;
/// Wrapper around ParquetObjectreader to provide ParquetMetaData without hitting the ObjectStore
pub mod reader_factory;
/// Replicated view of the `streams` table of the postgresql metadata database.
pub mod streams_view;
/// TableProvider implementation for the lakehouse
pub mod table_provider;
/// Rewrite table scans to take the query range into account
pub mod table_scan_rewrite;
/// 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;
pub mod view_factory;
/// Table function to query process-specific views
pub mod view_instance_table_function;
/// Add or remove view partitions
pub mod write_partition;