Adding LevelDB store for your In-Memory Cache?
Recently, 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.
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)





