Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch to sparse collection for histogram (#1898)
* switch to sparse collection for histogram Replaces histogram vec collection with a hashmap. This approach works much better for sparse data and enables use cases like drill downs (filter + small interval). It is slower for dense cases (1.3x-2x slower). This can be alleviated with a specialized hashmap in the future. closes #1704 closes #1370 * refactor, clippy * fix bucket_pos overflow issue
- Loading branch information