SCC offers scalable concurrent containers written in the Rust language. The data structures in SCC are meant to be used by database management software running on a server, ane therefore they may not efficiently work with a small set of data.
scc::HashMap is a scalable in-memory unique key-value store that is targeted at highly concurrent heavy workloads. It does not distribute data to multiple shards as most concurrent hash maps do, instead only does it have a single array of entries and corresponding metadata cell array. The metadata management strategy is similar to that of Swisstable; a metadata cell which is separated from the key-value array, is a 64-byte data structure for managing consecutive sixteen entries in the key-value array. The metadata cell also has a linked list of entry arrays for hash collision resolution. scc::HashMap automatically enlarges and shrinks the capacity of its internal array, and resizing happens without blocking other operations and threads. In order to keep the predictable latency of each operation, it does not rehash every entry in the container at once when resizing, instead it distributes the resizing workload to future access to the data structure.
| | 11 threads | 22 threads | 44 threads | 88 threads | |--------|----------------|----------------|----------------|----------------| | Insert | 156.423361787s | 187.157442477s | 264.075874751s | 463.032489985s | | Read | 81.03393205s | 92.933046817s | 109.303575217s | 137.802145824s | | Remove | 85.563265194s | 102.896206291s | 117.072458551s | 167.450069665s |
| | 11 threads | 22 threads | 44 threads | 88 threads | |--------|----------------|----------------|----------------|----------------| | Insert | 272.420310927s | 314.424537182s | 432.493505328s | 772.267595819s | | Mixed | 326.767954659s | 350.603202721s | 375.987412301s | 433.899012681s | | Remove | 164.857461617s | 184.528933216s | 199.187884668s | 250.735616868s |
Work-in-progress - Known issues with TreeIndex::remove: #21, and #22 - Not fully validated - Not fully optimized
scc::TreeIndex is a B+-tree variant optimized for read operations. Locks are only acquired on structural changes, and read/scan operations are neither blocked nor interrupted by other threads. The semantics of each API is similar to the read-committed isolation level in terms of database management software, as readers may not see the snapshot of data that is newer than the read snapshot.
Stabilize TreeIndex::remove: #20 fixed
Stabilize TreeIndex::remove: #19 fixed
Change TreeIndex::export to TreeIndex::print
Stabilize TreeIndex::from and TreeIndex::export
Implement TreeIndex::clear and (WIP)TreeIndex::from / license changed from MIT -> Apache 2.0 to comply with the company policies (SAP)
Fix a data race between TreeIndex::remove and Scanner
Implement TreeIndex::Node memory reclamation
Fix a read-after-free problem
Implement TreeIndex::Leaf memory reclamation
Refine scc::TreeIndex APIs
API change: scc::HashMap::Scanner -> scc::HashMap::Cursor
Fix a data race between scc::TreeIndex::iter and scc::TreeIndex::insert
Implement scc::TreeIndex::remove (work-in-progress), and fix a data race issue
Implement scc::TreeIndex::iter
Make scc::TreeIndex::insert work correctly on aarch64
Fix a data race issue with scc::TreeIndex::insert
Implement scc::TreeIndex::insert and scc::TreeIndex::read
Make scc::HashMap pass Valgrind by deallocating arrays immediately on drop
APIs stabilized