SCC: Scalable Concurrent Containers

Work-in-progress

SCC offers scalable concurrent containers written in the Rust language. The data structures in SCC assume to be used by a database management software running on a server, ane therefore they may not efficiently work with a small set of data.

scc::HashMap

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.

Changelog

0.2.11

0.2.10

0.2.8

0.2.7

Performance

Test setup.

Test data.

Test workload: local.

| | 11 threads | 22 threads | 44 threads | 88 threads | |--------|----------------|----------------|----------------|----------------| | Insert | 153.725430095s | 181.501483645s | 258.285511858s | 462.73899472s | | Read | 79.495212025s | 90.859734163s | 106.374841654s | 137.359072343s | | Remove | 88.457419533s | 103.189953895s | 118.811285809s | 142.061171296s |

Test workload: local-remote.

| | 11 threads | 22 threads | 44 threads | 88 threads | |--------|----------------|----------------|----------------|----------------| | Insert | 266.724033515s | 309.213404015s | 424.906462015s | 773.520934754s | | Mixed | 327.811948114s | 351.511457701s | 378.930084569s | 436.735096193s | | Remove | 167.174273401s | 186.59768589s | 209.027055204s | 254.330255812s |

Milestones

Milestones