Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ysimonson/binlog
A rust library for creating and managing logs of arbitrary binary data.
https://github.com/ysimonson/binlog
database library log python rust
Last synced: 3 days ago
JSON representation
A rust library for creating and managing logs of arbitrary binary data.
- Host: GitHub
- URL: https://github.com/ysimonson/binlog
- Owner: ysimonson
- License: agpl-3.0
- Created: 2022-04-01T01:03:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-09T02:52:46.000Z (over 2 years ago)
- Last Synced: 2024-04-29T23:00:37.376Z (8 months ago)
- Topics: database, library, log, python, rust
- Language: Rust
- Homepage:
- Size: 139 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# binlog
[![Test](https://github.com/ysimonson/binlog/actions/workflows/test.yml/badge.svg)](https://github.com/ysimonson/binlog/actions/workflows/test.yml)
[![crates.io](https://img.shields.io/crates/v/binlog.svg)](https://crates.io/crates/binlog)
[![API docs](https://docs.rs/binlog/badge.svg)](https://docs.rs/binlog)A rust library for creating and managing logs of arbitrary binary data. Presently it's used to collect sensor data. But it should generally be helpful in cases where you need to store timeseries data, in a nearly (but not strictly) append-only fashion.
The underlying storage of logs are pluggable via a few [traits](https://github.com/ysimonson/binlog/blob/main/src/stores/traits.rs). Binlog includes built-in implementations via sqlite, redis, and in-memory-only. Additionally, python bindings allow you to use (a subset of) binlog from python.
## Usage
### From Rust
A small example:
```rust
use binlog::{Entry, Error, Range, RangeableStore, SqliteStore, Store};
use std::borrow::Cow;
use string_cache::Atom;/// Demonstrates the sqlite store, with results in `example.db`. You may want to delete that before
/// running this to see the results of this on an empty database.
fn main() -> Result<(), Error> {
// Create a new datastore with sqlite backing. The result will be stored in example.db, with
// default compression options. In-memory is also possible via
// `binlog::MemoryStore::default()`.
let store = SqliteStore::new("example.db", None)?;// Add 10 entries.
for i in 1..11u8 {
let entry = Entry::new_with_timestamp(i as i64, Atom::from("sqlite_example"), vec![i]);
store.push(Cow::Owned(entry))?;
}// Queries are done via `range`. Here we grab entries with any timestamp and any name.
let range = store.range(.., Option::::None)?;
// Count the number of entries.
println!("initial count: {}", range.count()?);
// We can also iterate on the entries.
for entry in range.iter()? {
println!("entry: {:?}", entry?);
}// Remove the entries with 4 <= ts <= 6 and with the name `sqlite_example`.
store.range(4..=6, Some(Atom::from("sqlite_example")))?.remove()?;// Now get the range of entries with 5 <= ts and with the name `sqlite_example`.
let range = store.range(5.., Some(Atom::from("sqlite_example")))?;
println!("count after range deletion: {}", range.count()?);
for entry in range.iter()? {
println!("entry: {:?}", entry?);
}Ok(())
}
```### From Python
A small example:
```python
from binlog import binlog
store = binlog.SqliteStore("example.db")
store.push(binlog.Entry(1, "pytest_push", [1, 2, 3]))
```## Stores
Stores implement the [`Store` trait, and zero or more optional extensions](https://github.com/ysimonson/binlog/blob/main/src/stores/traits.rs) depending on their supported functionality. A few stores implementations are built-in to `binlog`:
### In-memory-only
The in-memory-only store has no means of persistence, but offers the full log functionality. This is also used internally for fuzzing other implementations against.
### Redis
The redis implementation is enableable via the `redis-store` feature. Under the hood, it uses redis streams. It supports subscriptions, but not ranges.
### Sqlite
The sqlite implementation is enableable via the `sqlite-store` feature. It supports ranges, but not subscriptions.
## Testing
### Unit tests
Tests can be run via `make test`. This will also be run in CI.
### Benchmarks
Benchmarks can be run via `make bench`.
### Fuzzing
A fuzzer is available, ensuring the the sqlite and in-memory datastores operate identically. Run it via `make fuzz`.
### Checks
Lint and formatting checks can be run via `make check`. Equivalent checks will also run in CI.