A lock-free, eventually consistent, concurrent multi-value map.
This map implementation allows reads and writes to execute entirely in parallel, with no
implicit synchronization overhead. Reads never take locks on their critical path, and neither
do writes assuming there is a single writer (multi-writer is possible using a Mutex
), which
significantly improves performance under contention.
The trade-off exposed by this module is one of eventual consistency: writes are not visible to
readers except following explicit synchronization. Specifically, readers only see the
operations that preceeded the last call to WriteHandle::refresh
by a writer. This lets
writers decide how stale they are willing to let reads get. They can refresh the map after
every write to emulate a regular concurrent HashMap
, or they can refresh only occasionally to
reduce the synchronization overhead at the cost of stale reads.
For read-heavy workloads, the scheme used by this module is particularly useful. Writers can afford to refresh after every write, which provides up-to-date reads, and readers remain fast as they do not need to ever take locks.
The map is multi-value, meaning that every key maps to a collection of values. This
introduces some memory cost by adding a layer of indirection through a Vec
for each value,
but enables more advanced use. This choice was made as it would not be possible to emulate such
functionality on top of the semantics of this map (think about it -- what would the operational
log contain?).
To faciliate more advanced use-cases, each of the two maps also carry some customizeable meta-information. The writers may update this at will, and when a refresh happens, the current meta will also be made visible to readers. This could be useful, for example, to indicate what time the refresh happened.
Single-reader, single-writer
```rust // new will use the default HashMap hasher, and a meta of () // note that we get separate read and write handles // the read handle can be cloned to have more readers let (bookreviewsr, mut bookreviewsw) = evmap::new();
// review some books. bookreviewsw.insert("Adventures of Huckleberry Finn", "My favorite book."); bookreviewsw.insert("Grimms' Fairy Tales", "Masterpiece."); bookreviewsw.insert("Pride and Prejudice", "Very enjoyable."); bookreviewsw.insert("The Adventures of Sherlock Holmes", "Eye lyked it alot.");
// at this point, reads from bookreviewsr will not see any of the reviews! asserteq!(bookreviewsr.len(), 0); // we need to refresh first to make the writes visible bookreviewsw.refresh(); asserteq!(bookreviewsr.len(), 4); // reads will now return Some() because the map has been initialized asserteq!(bookreviewsr.getand("Grimms' Fairy Tales", |rs| rs.len()), Some(1));
// remember, this is a multi-value map, so we can have many reviews bookreviewsw.insert("Grimms' Fairy Tales", "Eh, the title seemed weird."); bookreviewsw.insert("Pride and Prejudice", "Too many words.");
// but again, new writes are not yet visible asserteq!(bookreviewsr.getand("Grimms' Fairy Tales", |rs| rs.len()), Some(1));
// we need to refresh first bookreviewsw.refresh(); asserteq!(bookreviewsr.getand("Grimms' Fairy Tales", |rs| rs.len()), Some(2));
// oops, this review has a lot of spelling mistakes, let's delete it. // empty deletes all reviews (though in this case, just one) bookreviewsw.empty("The Adventures of Sherlock Holmes"); // but again, it's not visible to readers until we refresh asserteq!(bookreviewsr.getand("The Adventures of Sherlock Holmes", |rs| rs.len()), Some(1)); bookreviewsw.refresh(); asserteq!(bookreviewsr.getand("The Adventures of Sherlock Holmes", |rs| rs.len()), None);
// look up the values associated with some keys. let tofind = ["Pride and Prejudice", "Alice's Adventure in Wonderland"]; for book in &tofind { let reviewed = bookreviewsr.getand(book, |reviews| { for review in reviews { println!("{}: {}", book, review); } }); if reviewed.isnone() { println!("{} is unreviewed.", book); } }
// iterate over everything. bookreviewsr.for_each(|book, reviews| { for review in reviews { println!("{}: \"{}\"", book, review); } }); ```
Reads from multiple threads are possible by cloning the ReadHandle
.
```rust use std::thread; let (bookreviewsr, mut bookreviewsw) = evmap::new();
// start some readers let readers: Vec<_> = (0..4).map(|| { let r = bookreviewsr.clone(); thread::spawn(move || { loop { let l = r.len(); if l == 0 { thread::yieldnow(); } else { // the reader will either see all the reviews, // or none of them, since refresh() is atomic. assert_eq!(l, 4); break; } } }) }).collect();
// do some writes bookreviewsw.insert("Adventures of Huckleberry Finn", "My favorite book."); bookreviewsw.insert("Grimms' Fairy Tales", "Masterpiece."); bookreviewsw.insert("Pride and Prejudice", "Very enjoyable."); bookreviewsw.insert("The Adventures of Sherlock Holmes", "Eye lyked it alot."); // expose the writes bookreviewsw.refresh();
// the original read handle still works too asserteq!(bookreviews_r.len(), 4);
// all the threads should eventually see .len() == 4 for r in readers.intoiter() { assert!(r.join().isok()); } ```
If multiple writers are needed, the WriteHandle
must be protected by a Mutex
.
```rust use std::thread; use std::sync::{Arc, Mutex}; let (bookreviewsr, mut bookreviewsw) = evmap::new();
// start some writers. // since evmap does not support concurrent writes, we need // to protect the write handle by a mutex. let w = Arc::new(Mutex::new(bookreviewsw)); let writers: Vec<_> = (0..4).map(|i| { let w = w.clone(); thread::spawn(move || { let mut w = w.lock().unwrap(); w.insert(i, true); w.refresh(); }) }).collect();
// eventually we should see all the writes while bookreviewsr.len() < 4 { thread::yield_now(); };
// all the threads should eventually finish writing for w in writers.intoiter() { assert!(w.join().isok()); } ```
Under the hood, the map is implemented using two regular HashMap
s, an operational log,
epoch counting, and some pointer magic. There is a single pointer through which all readers
go. It points to a HashMap
, which the readers access in order to read data. Every time a read
has accessed the pointer, they increment a local epoch counter, and they update it again when
they have finished the read (see #3 for more information). When a write occurs, the writer
updates the other HashMap
(for which there are no readers), and also stores a copy of the
change in a log (hence the need for Clone
on the keys and values). When
WriteHandle::refresh
is called, the writer, atomically swaps the reader pointer to point to
the other map. It then waits for the epochs of all current readers to change, and then replays
the operational log to bring the stale map up to date.
Since the implementation uses regular HashMap
s under the hood, table resizing is fully
supported. It does, however, also mean that the memory usage of this implementation is
approximately twice of that of a regular HashMap
, and more if writes rarely refresh after
writing.
I've run some benchmarks of evmap against a standard Rust HashMap
protected
by a reader-writer
lock, as well as
against chashmap — a crate which provides
"concurrent hash maps, based on bucket-level multi-reader locks". The
benchmarks were run using the binary in benchmark/ on
a 48-core machine.
The benchmark runs a number of reader and writer threads in tight loops, each of which does a read or write to a random key in the map respectively. Results for both uniform and skewed distributions are provided below. The benchmark measures the average number of reads and writes per second as the number of readers and writers increases.
Preliminary results show that evmap
performs well under contention,
especially on the read side. This benchmark represents the worst-case usage of
evmap
in which every write also does a refresh
. If the map was refreshed
less often, performance would increase.