#key-value-store #bloom-filter #table #checksum #string #sorting #immutability

sstable

Sorted String Tables, an on-disk format for storing immutable maps consisting of string,string pairs, and retrieving values by key efficiently. This crate also features bloom filters, checksums and skipping bad blocks. It is based on the code implemented for the rusty_leveldb crate.

29 releases

0.11.1 Apr 22, 2023
0.10.0 Dec 29, 2021
0.9.0 Nov 16, 2021
0.8.2 Apr 26, 2020
0.3.1 Nov 23, 2016

#32 in Database implementations

Download history 22/week @ 2023-12-13 27/week @ 2023-12-20 17/week @ 2023-12-27 28/week @ 2024-01-03 85/week @ 2024-01-10 27/week @ 2024-01-17 10/week @ 2024-01-24 49/week @ 2024-01-31 41/week @ 2024-02-07 97/week @ 2024-02-14 110/week @ 2024-02-21 144/week @ 2024-02-28 44/week @ 2024-03-06 75/week @ 2024-03-13 179/week @ 2024-03-20 119/week @ 2024-03-27

421 downloads per month
Used in 7 crates (via graphannis-core)

MIT license

115KB
2.5K SLoC

sstable

crates.io Travis CI

Documentation

What

This crate provides an API to work with immutable (string -> string) maps stored on disk. The main access method are iterators, but there's a simpler API, too.

The general process is

  • Writing a table, using TableBuilder. The entries have to be added in sorted order. The data doesn't have to be written to disk; any type implementing Write works.
  • Reading a table, using Table. Again, the source is generic; any type implementing Read + Seek can be used.

Note that the tables and some other structures are generic over the ordering of keys; usually you can just use StandardComparator, though.

With Options, you can influence some details of how tables are laid out on disk. Usually, you don't need to; just use the Options::default() value.

If there's data corruption in the files on disk, defective blocks will be skipped. How many entries a single block contains depends on the block size, which can be set in the Options struct.

Why

This crate reuses code originally written for the persistence part of rusty-leveldb, a reimplementation of Google's LevelDB in Rust. That's the reason for the code being a bit more complicated than needed at some points.

Performance

With no compression on a tmpfs volume running on an idle Intel(R) Xeon(R) CPU E5-1650 v2 @ 3.50GHz processor, the benchmark shows that in tables of 10'000 entries of each 16 key bytes and 16 value bytes, this crate will

  • read 5.3 million entries per second
  • write 1.2 million entries per second

The performance for tables of different sizes may differ.

Corruption and errors

Checksum verification failures often stem from either corruption (obviously) or incompletely written or half-overwritten SSTable files.

Contribute

Contributions are very welcome! Feel free to send pull requests.

Dependencies

~245KB