Package com.hazelcast.mapstore
Class GenericMapStore<K,V>
java.lang.Object
com.hazelcast.mapstore.GenericMapLoader<K,V>
com.hazelcast.mapstore.GenericMapStore<K,V>
- Type Parameters:
K- type of the keyV- type of the value
- All Implemented Interfaces:
MapLoader<K,,V> MapLoaderLifecycleSupport,MapStore<K,V>
public class GenericMapStore<K,V>
extends GenericMapLoader<K,V>
implements MapStore<K,V>, MapLoaderLifecycleSupport
GenericMapStore is an implementation of
MapStore built
on top of Hazelcast SQL engine.
It works with any SQL connector supporting SELECT, INSERT, UPDATE and DELETE statements.
Usage:
First define data connection, e.g. for JDBC use JdbcDataConnection:
Config config = new Config();
config.addDataConnectionConfig(
new DataConnectionConnection("mysql-ref")
.setType("Jdbc")
.setProperty("jdbcUrl", dbConnectionUrl)
);
Then create a Map with MapStore using the GenericMapStore implementation:
MapConfig mapConfig = new MapConfig(mapName);
MapStoreConfig mapStoreConfig = new MapStoreConfig();
mapStoreConfig.setClassName(GenericMapStore.class.getName());
mapStoreConfig.setProperty(GenericMapStore.DATA_CONNECTION_REF_PROPERTY, "mysql-name");
mapConfig.setMapStoreConfig(mapStoreConfig);
instance().getConfig().addMapConfig(mapConfig);
The GenericMapStore creates a SQL mapping with name "__map-store." + mapName. This mapping is removed when the map is destroyed.
Note : When GenericMapStore uses GenericRecord as value, even if the GenericRecord contains the primary key as a field,
the primary key is still received from @{link IMap method call
-
Field Summary
Fields inherited from class com.hazelcast.mapstore.GenericMapLoader
columnMetadataList, COLUMNS_PROPERTY, DATA_CONNECTION_REF_PROPERTY, EXTERNAL_NAME_PROPERTY, ID_COLUMN_PROPERTY, LOAD_ALL_KEYS_PROPERTY, MAPSTORE_INIT_TIMEOUT, SINGLE_COLUMN_AS_VALUE, sqlService, TYPE_NAME_PROPERTY -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.hazelcast.mapstore.GenericMapLoader
awaitSuccessfulInit, destroy, init, load, loadAll, loadAllKeysMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.hazelcast.map.MapLoader
load, loadAll, loadAllKeysMethods inherited from interface com.hazelcast.map.MapLoaderLifecycleSupport
destroy, init
-
Constructor Details
-
GenericMapStore
public GenericMapStore()
-
-
Method Details