Skip to content

Support building indices for custom time ranges #15

@Max-Meldrum

Description

@Max-Meldrum

Right now, it is only possible to build wheel indices across all the data in a TableProvider. Provide an option to allow the building of wheels for partial ranges. For instance, instead of building for the whole month of 2024-07, instead build for the days that are frequently queried.

 // Default across whole data
 let builder = IndexBuilder::with_col_and_aggregate("col", AggregateType::Sum);
 // Across partial range
 let builder = IndexBuilder::with_col_and_aggregate("col", AggregateType::Sum)
     .with_time_range("2024-07-01 00:00:00", "2024-07-10 00:00:00");

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions