Range Index
Range indexing allows user to get better performance for queries which involve filtering over a range. e.g.
SELECT COUNT(*) from baseballStats where hits > 11
Range index is just a variant of inverted index. Instead of creating mapping from values to columns, we create mapping of a range of values to columns. You can use the range index by setting the following config in the table config json.
Currently, range indexing is only supported for dictionary columns. Range indexing support for raw value columns is WIP.
Last updated