Adding LevelDB store for your In-Memory Cache?
Join the DZone community and get the full member experience.
Join For FreeRecently, at one of the customer meetings, I was asked whether GridGain comes with its own database. Naturally my reaction was - why?!? GridGain easily integrates pretty much with any persistent store you wish, including any RDBMS, NoSql, or HDFS stores. However, then I thought, why not? We already have cache swap space (disk overflow) storage based on Google LevelDB key-value database implementation, so why not have the same for data store.
Here is how easy it was to add LevelDB based data store implementation for GridGain cache - literally took me 20 minutes to do, including unit tests. The store is based on GridGain swap space, but since swap space is based on LevelDB, you essentially get LevelDB local store for your cached data.
public class GridCacheSwapSpaceStore<K, V> extends GridCacheStoreAdapter<K, V> { // Default class loader. private ClassLoader dfltLdr = getClass().getClassLoader(); @GridInstanceResource private Grid g; // Auto-injected grid instance @Override public V load(String cacheName, GridCacheTx tx, K key) throws GridException { return g.readFromSwap(spaceName(cacheName), key, classLoader(key)); } @Override public void put(String cacheName, GridCacheTx tx, K key, V val) throws GridException { g.writeToSwap(spaceName(cacheName), key, val, classLoader(val, key)); } @Override public void remove(String cacheName, GridCacheTx tx, K key) throws GridException { g.removeFromSwap(spaceName(cacheName), key, null, classLoader(key)); } private String spaceName(String cacheName) { return cacheName == null ? "gg-spacestore-default" : "gg-spacestore-" + cacheName; } private ClassLoader classLoader(Object... objs) { ClassLoader ldr = null; for (Object o : objs) { if (o != null) { // Detect class loader for given object. ldr = U.detectClassLoader(o.getClass()); if (ldr != dfltLdr) break; } } return ldr; } }
Quite easily done in my view. It will become part of next release of
GridGain, so you will have local persistent store out-of-the-box if
needed.
Plenty of more examples of different GridGain cache store implementations can be found on GitHub here.
Published at DZone with permission of Manik Surtani, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments