Cliff Click
Company: CRATUS
H2O includes a distributed Key / Value store with exact (JMM volatile) semantics — instead of the more common lazy semantics. The DKV is very fast:
The DKV is well geared to support individual updates for H2O control logic, as well as bulk throughput for Big Data applications. Big Data streaming math operations can commonly include millions to billions of streaming key reads & writes, and this volume is handled fast and gracefully while maintaining exact semantics.
However, the best and fastest K/V operation is purely local. Thus the standard DKV hash function deterministically stripes the Big Data across the cluster, and the standard H2O work distribution sends the work to the data based on the hash function — and most work never requires a remote Key.
Company: CRATUS