27 releases
new 0.19.1 | Nov 5, 2024 |
---|---|
0.19.1-rc.6 | Nov 4, 2024 |
0.19.0 | Oct 17, 2024 |
0.18.2 | Aug 29, 2024 |
#976 in Database interfaces
16,317 downloads per month
Used in 33 crates
(20 directly)
1MB
22K
SLoC
Rerun chunk store
Part of the rerun
family of crates.
Apache Arrow is a language-independent columnar memory format for arbitrary data.
The re_chunk_store
crate is an in-memory time series database for Rerun log data. It is indexed by Entity path, component, timeline, and time. It supports out-of-order insertions, and fast O(log(N))
queries.
lib.rs
:
The Rerun chunk store, implemented on top of Apache Arrow
using the arrow2
crate.
This crate is an in-memory time series database for Rerun log data.
It is indexed by Entity path, component, timeline, and time.
It supports out-of-order insertions, and fast O(log(N))
queries.
- See
ChunkStore
for an overview of the core data structures. - See
ChunkStore::latest_at_relevant_chunks
andChunkStore::range_relevant_chunks
for the documentation of the public read APIs. - See
ChunkStore::insert_chunk
for the documentation of the public write APIs.
Feature flags
Dependencies
~16–26MB
~402K SLoC