We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
(mentioned by @jondo2010 during retro)
Compact sparse index buckets (because they were filled on a per-component basis rather than multiple components at a time).
Basically automatically going from this
┌──────┬───────────┬───────┬───────────┐ │ time ┆ instances ┆ rects ┆ positions │ │ --- ┆ --- ┆ --- ┆ --- │ │ str ┆ u64 ┆ u64 ┆ u64 │ ╞══════╪═══════════╪═══════╪═══════════╡ │ #42 ┆ null ┆ 1 ┆ null │ ├╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤ │ #42 ┆ 3 ┆ null ┆ null │ ├╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌┼╌╌╌╌╌╌╌╌╌╌╌┤ │ #42 ┆ null ┆ null ┆ 2 │ └──────┴───────────┴───────┴───────────┘
to this
┌──────┬───────────┬───────┬───────────┐ │ time ┆ instances ┆ rects ┆ positions │ │ --- ┆ --- ┆ --- ┆ --- │ │ str ┆ u64 ┆ u64 ┆ u64 │ ╞══════╪═══════════╪═══════╪═══════════╡ │ #42 ┆ 3 ┆ 1 ┆ 2 │ └──────┴───────────┴───────┴───────────┘
TODO:
The text was updated successfully, but these errors were encountered:
rerun.log
Doesn't make much sense in the new chunk based model.
It does make sense to do in the range cache, but it is in fact already done there.
Sorry, something went wrong.
No branches or pull requests
(mentioned by @jondo2010 during retro)
Compact sparse index buckets (because they were filled on a per-component basis rather than multiple components at a time).
Basically automatically going from this
to this
TODO:
The text was updated successfully, but these errors were encountered: