1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/// Record batches + schema
/// Write parquet in object store
/// Materialize views on a schedule based on the time data was received from the ingestion service
/// Specification for a view partition backed by a set of telemetry blocks which can be processed out of order
/// Replicated view of the `blocks` table of the postgresql metadata database.
/// Management of process-specific partitions built on demand
/// Implementation of `BlockProcessor` for log entries
/// Materializable view of log entries accessible through datafusion
/// Merge consecutive parquet partitions into a single file
/// Specification for a view partition backed by a table in the postgresql metadata database.
/// Implementation of `BlockProcessor` for measures
/// Materializable view of measures accessible through datafusion
/// Maintenance of the postgresql tables and indices use to track the parquet files used to implement the views
/// Write & delete sections of views
/// In-memory copy of a subnet of the list of the partitions in the db
/// Describes the event blocks backing a partition
/// Replicated view of the `processes` table of the postgresql metadata database.
/// Datafusion integration
/// Wrapper around ParquetObjectreader to provide ParquetMetaData without hitting the ObjectStore
/// Replicated view of the `streams` table of the postgresql metadata database.
/// TableProvider implementation for the lakehouse
/// Rewrite table scans to take the query range into account
/// Tracking of expired partitions
/// Jit view of the call tree built from the thread events of a single stream
/// Basic interface for a set of rows queryable and materializable
/// Table function to query process-specific views
/// Add or remove view partitions