Data Grid
Replicate or partition your data in memory within the cluster.
This is a legacy Apache Ignite documentation
The new documentation is hosted here: https://ignite.apache.org/docs/latest/
Ignite in-memory data grid has been built from the ground up with a notion of horizontal scale and the ability to add nodes on demand in real time; it has been designed to linearly scale to hundreds of nodes with strong semantics for data locality and affinity data routing to reduce redundant data noise.
Ignite data grid is an in-memory distributed key-value store
that can be viewed as a distributed partitioned hash map with every cluster node owning a portion of the overall data. This way the more cluster (server) nodes we add, the more data we can cache.

Unlike other key-value stores, Ignite determines data locality using a pluggable hashing algorithm. Every client can determine which node a key belongs to by plugging it into a hashing function, without a need for any special mapping servers or name nodes.
Ignite data grid supports local, replicated, and partitioned data sets and supports freely cross querying between these data sets using standard SQL syntax. Ignite supports standard SQL for querying data including support for distributed SQL joins.
Ignite data grid is lightning fast and is one of the fastest implementations of transactional or atomic data in a cluster today.
Data Consistency
As long as your cluster is alive, Ignite will guarantee that the data between different cluster nodes will always remain consistent regardless of crashes or topology changes.
JCache (JSR 107)
Ignite Data Grid implements JCache (JSR 107) specification.
Features
Updated 2 months ago