Chapter 7. Setting Up Persistent Storage
Data Grid can persist in-memory data to external storage, giving you additional capabilities to manage your data such as:
- Durability
- Adding cache stores allows you to persist data to non-volatile storage so it survives restarts.
- Write-through caching
- Configuring Data Grid as a caching layer in front of persistent storage simplifies data access for applications because Data Grid handles all interactions with the external storage.
- Data overflow
- Using eviction and passivation techniques ensures that Data Grid keeps only frequently used data in-memory and writes older entries to persistent storage.
7.1. Data Grid Cache Stores Copy linkLink copied to clipboard!
Cache stores connect Data Grid to persistent data sources and implement the NonBlockingStore
interface.
7.1.1. Configuring Cache Stores Copy linkLink copied to clipboard!
Add cache stores to Data Grid caches in a chain either declaratively or programmatically. Cache read operations check each cache store in the configured order until they locate a valid non-null element of data. Write operations affect all cache stores except for those that you configure as read only.
Procedure
-
Use the
persistence
parameter to configure the persistence layer for caches. Configure whether cache stores are local to the node or shared across the cluster.
Use either the
shared
attribute declaratively or theshared(false)
method programmatically.Configure other cache stores properties as appropriate. Custom cache stores can also include
property
parameters.NoteConfiguring cache stores as shared or not shared (local only) determines which parameters you should set. In some cases, using the wrong combination of parameters in your cache store configuration can lead to data loss or performance issues.
For example, if the cache store is local to a node then it makes sense to fetch state and purge on startup. However, if the cache store is shared, then you should not fetch state or purge on startup.
Local (non-shared) file store
Shared custom cache store
Single file store
Reference
- Data Grid Configuration Schema
- Data Grid Cache Store Implementations
- Creating Custom Cache Stores
7.1.2. Setting a Global Persistent Location for File-Based Cache Stores Copy linkLink copied to clipboard!
Data Grid uses a global filesystem location for saving data to persistent storage.
The global persistent location must be unique to each Data Grid instance. To share data between multiple instances, use a shared persistent location.
Data Grid servers use the $RHDG_HOME/server/data
directory as the global persistent location.
If you are using Data Grid as a library embedded in custom applications and global-state is enabled, the global persistent location defaults to the user.dir
system property. This system property typically uses the directory where your application starts. You should configure a global persistent location to use a suitable location.
Declarative configuration
new GlobalConfigurationBuilder().globalState().enable().persistentLocation("example", "my.data");
new GlobalConfigurationBuilder().globalState().enable().persistentLocation("example", "my.data");
File-Based Cache Stores and Global Persistent Location
When using file-based cache stores, you can optionally specify filesystem directories for storage. Unless absolute paths are declared, directories are always relative to the global persistent location.
For example, you configure your global persistent location as follows:
<global-state> <persistent-location path="/tmp/example" relative-to="my.data"/> </global-state>
<global-state>
<persistent-location path="/tmp/example" relative-to="my.data"/>
</global-state>
You then configure a Single File cache store that uses a path named myDataStore
as follows:
<file-store path="myDataStore"/>
<file-store path="myDataStore"/>
In this case, the configuration results in a Single File cache store in /tmp/example/myDataStore/myCache.dat
If you attempt to set an absolute path that resides outside the global persistent location and global-state is enabled, Data Grid throws the following exception:
ISPN000558: "The store location 'foo' is not a child of the global persistent location 'bar'"
ISPN000558: "The store location 'foo' is not a child of the global persistent location 'bar'"
7.1.3. Passivation Copy linkLink copied to clipboard!
Passivation configures Data Grid to write entries to cache stores when it evicts those entries from memory. In this way, passivation ensures that only a single copy of an entry is maintained, either in-memory or in a cache store, which prevents unnecessary and potentially expensive writes to persistent storage.
Activation is the process of restoring entries to memory from the cache store when there is an attempt to access passivated entries. For this reason, when you enable passivation, you must configure cache stores that implement both CacheWriter
and CacheLoader
interfaces so they can write and load entries from persistent storage.
When Data Grid evicts an entry from the cache, it notifies cache listeners that the entry is passivated then stores the entry in the cache store. When Data Grid gets an access request for an evicted entry, it lazily loads the entry from the cache store into memory and then notifies cache listeners that the entry is activated.
- Passivation uses the first cache loader in the Data Grid configuration and ignores all others.
Passivation is not supported with:
- Transactional stores. Passivation writes and removes entries from the store outside the scope of the actual Data Grid commit boundaries.
- Shared stores. Shared cache stores require entries to always exist in the store for other owners. For this reason, passivation is not supported because entries cannot be removed.
If you enable passivation with transactional stores or shared stores, Data Grid throws an exception.
7.1.3.1. Passivation and Cache Stores Copy linkLink copied to clipboard!
Passivation disabled
Writes to data in memory result in writes to persistent storage.
If Data Grid evicts data from memory, then data in persistent storage includes entries that are evicted from memory. In this way persistent storage is a superset of the in-memory cache.
If you do not configure eviction, then data in persistent storage provides a copy of data in memory.
Passivation enabled
Data Grid adds data to persistent storage only when it evicts data from memory.
When Data Grid activates entries, it restores data in memory and deletes data from persistent storage. In this way, data in memory and data in persistent storage form separate subsets of the entire data set, with no intersection between the two.
Entries in persistent storage can become stale when using shared cache stores. This occurs because Data Grid does not delete passivated entries from shared cache stores when they are activated.
Values are updated in memory but previously passivated entries remain in persistent storage with out of date values.
The following table shows data in memory and in persistent storage after a series of operations:
Operation | Passivation disabled | Passivation enabled | Passivation enabled with shared cache store |
---|---|---|---|
Insert k1. |
Memory: k1 |
Memory: k1 |
Memory: k1 |
Insert k2. |
Memory: k1, k2 |
Memory: k1, k2 |
Memory: k1, k2 |
Eviction thread runs and evicts k1. |
Memory: k2 |
Memory: k2 |
Memory: k2 |
Read k1. |
Memory: k1, k2 |
Memory: k1, k2 |
Memory: k1, k2 |
Eviction thread runs and evicts k2. |
Memory: k1 |
Memory: k1 |
Memory: k1 |
Remove k2. |
Memory: k1 |
Memory: k1 |
Memory: k1 |
7.1.4. Cache Loaders and Transactional Caches Copy linkLink copied to clipboard!
Only JDBC String-Based cache stores support transactional operations. If you configure caches as transactional, you should set transactional=true
to keep data in persistent storage synchronized with data in memory.
For all other cache stores, Data Grid does not enlist cache loaders in transactional operations. This can result in data inconsistency if transactions succeed in modifying data in memory but do not completely apply changes to data in the cache store. In this case manual recovery does not work with cache stores.
Reference
7.1.5. Segmented Cache Stores Copy linkLink copied to clipboard!
Cache stores can organize data into hash space segments to which keys map.
Segmented stores increase read performance for bulk operations; for example, streaming over data (Cache.size
, Cache.entrySet.stream
), pre-loading the cache, and doing state transfer operations.
However, segmented stores can also result in loss of performance for write operations. This performance loss applies particularly to batch write operations that can take place with transactions or write-behind stores. For this reason, you should evaluate the overhead for write operations before you enable segmented stores. The performance gain for bulk read operations might not be acceptable if there is a significant performance loss for write operations.
The number of segments you configure for cache stores must match the number of segments you define in the Data Grid configuration with the clustering.hash.numSegments
parameter.
If you change the numSegments
parameter in the configuration after you add a segmented cache store, Data Grid cannot read data from that cache store.
Reference
7.1.6. Filesystem-Based Cache Stores Copy linkLink copied to clipboard!
In most cases, filesystem-based cache stores are appropriate for local cache stores for data that overflows from memory because it exceeds size and/or time restrictions.
You should not use filesystem-based cache stores on shared file systems such as an NFS, Microsoft Windows, or Samba share. Shared file systems do not provide file locking capabilities, which can lead to data corruption.
Likewise, shared file systems are not transactional. If you attempt to use transactional caches with shared file systems, unrecoverable failures can happen when writing to files during the commit phase.
7.1.7. Write-Through Copy linkLink copied to clipboard!
Write-Through is a cache writing mode where writes to memory and writes to cache stores are synchronous. When a client application updates a cache entry, in most cases by invoking Cache.put()
, Data Grid does not return the call until it updates the cache store. This cache writing mode results in updates to the cache store concluding within the boundaries of the client thread.
The primary advantage of Write-Through mode is that the cache and cache store are updated simultaneously, which ensures that the cache store is always consistent with the cache.
However, Write-Through mode can potentially decrease performance because the need to access and update cache stores directly adds latency to cache operations.
Data Grid defaults to Write-Through mode unless you explicitly configure Write-Behind mode on cache stores.
Write-through configuration
<persistence passivation="false"> <file-store fetch-state="true" read-only="false" purge="false" path="${java.io.tmpdir}"/> </persistence>
<persistence passivation="false">
<file-store fetch-state="true"
read-only="false"
purge="false" path="${java.io.tmpdir}"/>
</persistence>
Reference
7.1.8. Write-Behind Copy linkLink copied to clipboard!
Write-Behind is a cache writing mode where writes to memory are synchronous and writes to cache stores are asynchronous.
When clients send write requests, Data Grid adds those operations to a modification queue. Data Grid processes operations as they join the queue so that the calling thread is not blocked and the operation completes immediately.
If the number of write operations in the modification queue increases beyond the size of the queue, Data Grid adds those additional operations to the queue. However, those operations do not complete until Data Grid processes operations that are already in the queue.
For example, calling Cache.putAsync
returns immediately and the Stage also completes immediately if the modification queue is not full. If the modification queue is full, or if Data Grid is currently processing a batch of write operations, then Cache.putAsync
returns immediately and the Stage completes later.
Write-Behind mode provides a performance advantage over Write-Through mode because cache operations do not need to wait for updates to the underlying cache store to complete. However, data in the cache store remains inconsistent with data in the cache until the modification queue is processed. For this reason, Write-Behind mode is suitable for cache stores with low latency, such as unshared and local filesystem-based cache stores, where the time between the write to the cache and the write to the cache store is as small as possible.
Write-behind configuration
The preceding configuration example uses the fail-silently
parameter to control what happens when either the cache store is unavailable or the modification queue is full.
-
If
fail-silently="true"
then Data Grid logs WARN messages and rejects write operations. If
fail-silently="false"
then Data Grid throws exceptions if it detects the cache store is unavailable during a write operation. Likewise if the modification queue becomes full, Data Grid throws an exception.In some cases, data loss can occur if Data Grid restarts and write operations exist in the modification queue. For example the cache store goes offline but, during the time it takes to detect that the cache store is unavailable, write operations are added to the modification queue because it is not full. If Data Grid restarts or otherwise becomes unavailable before the cache store comes back online, then the write operations in the modification queue are lost because they were not persisted.
Reference
7.2. Cache Store Implementations Copy linkLink copied to clipboard!
Data Grid provides several cache store implementations that you can use. Alternatively you can provide custom cache stores.
7.2.1. Cluster Cache Loaders Copy linkLink copied to clipboard!
ClusterCacheLoader
retrieves data from other Data Grid cluster members but does not persist data. In other words, ClusterCacheLoader
is not a cache store.
ClusterCacheLoader
provides a non-blocking partial alternative to state transfer. ClusterCacheLoader
fetches keys from other nodes on demand if those keys are not available on the local node, which is similar to lazily loading cache content.
The following points also apply to ClusterCacheLoader
:
-
Preloading does not take effect (
preload=true
). -
Fetching persistent state is not supported (
fetch-state=true
). - Segmentation is not supported.
The ClusterLoader
has been deprecated and will be removed in a future release.
Declarative configuration
<persistence> <cluster-loader remote-timeout="500"/> </persistence>
<persistence>
<cluster-loader remote-timeout="500"/>
</persistence>
Programmatic configuration
ConfigurationBuilder b = new ConfigurationBuilder(); b.persistence() .addClusterLoader() .remoteCallTimeout(500);
ConfigurationBuilder b = new ConfigurationBuilder();
b.persistence()
.addClusterLoader()
.remoteCallTimeout(500);
7.2.2. Single File Cache Stores Copy linkLink copied to clipboard!
Single File cache stores, SingleFileStore
, persist data to file. Data Grid also maintains an in-memory index of keys while keys and values are stored in the file. By default, Single File cache stores are segmented, which means that Data Grid creates a separate file for each segment.
Because SingleFileStore
keeps an in-memory index of keys and the location of values, it requires additional memory, depending on the key size and the number of keys. For this reason, SingleFileStore
is not recommended for use cases where the keys have a large size.
In some cases, SingleFileStore
can also become fragmented. If the size of values continually increases, available space in the single file is not used but the entry is appended to the end of the file. Available space in the file is used only if an entry can fit within it. Likewise, if you remove all entries from memory, the single file store does not decrease in size or become defragmented.
Declarative configuration
<persistence> <file-store max-entries="5000"/> </persistence>
<persistence>
<file-store max-entries="5000"/>
</persistence>
Programmatic configuration
- For embedded deployments, do the following:
ConfigurationBuilder b = new ConfigurationBuilder(); b.persistence() .addSingleFileStore() .maxEntries(5000);
ConfigurationBuilder b = new ConfigurationBuilder();
b.persistence()
.addSingleFileStore()
.maxEntries(5000);
- For server deployments, do the following:
Segmentation
Single File cache stores support segmentation and create a separate instance per segment, which results in multiple directories in the path you configure. Each directory is a number that represents the segment to which the data maps.
7.2.3. JDBC String-Based Cache Stores Copy linkLink copied to clipboard!
JDBC String-Based cache stores, JdbcStringBasedStore
, use JDBC drivers to load and store values in the underlying database.
JdbcStringBasedStore
stores each entry in its own row in the table to increase throughput for concurrent loads. JdbcStringBasedStore
also uses a simple one-to-one mapping that maps each key to a String
object using the key-to-string-mapper
interface.
Data Grid provides a default implementation, DefaultTwoWayKey2StringMapper
, that handles primitive types.
In addition to the data table used to store cache entries, the store also creates a _META
table for storing metadata. This table is used to ensure that any existing database content is compatible with the current Data Grid version and configuration.
By default Data Grid shares are not stored, which means that all nodes in the cluster write to the underlying store on each update. If you want operations to write to the underlying database once only, you must configure JDBC store as shared.
Segmentation
JdbcStringBasedStore
uses segmentation by default and requires a column in the database table to represent the segments to which entries belong.
7.2.3.1. Connection Factories Copy linkLink copied to clipboard!
JdbcStringBasedStore
relies on a ConnectionFactory
implementation to connection to a database.
Data Grid provides the following ConnectionFactory
implementations:
PooledConnectionFactoryConfigurationBuilder
A connection factory based on Agroal that you configure via PooledConnectionFactoryConfiguration
.
Alternatively, you can specify configuration properties prefixed with org.infinispan.agroal.
as in the following example:
You then configure Data Grid to use your properties file via PooledConnectionFactoryConfiguration.propertyFile
.
You should use PooledConnectionFactory
with standalone deployments, rather than deployments in servlet containers.
ManagedConnectionFactoryConfigurationBuilder
A connection factory that you can can use with managed environments such as application servers. This connection factory can explore a configurable location in the JNDI tree and delegate connection management to the DataSource
.
SimpleConnectionFactoryConfigurationBuilder
A connection factory that creates database connections on a per invocation basis. You should use this connection factory for test or development environments only.
7.2.3.2. JDBC String-Based Cache Store Configuration Copy linkLink copied to clipboard!
You can configure JdbcStringBasedStore
programmatically or declaratively.
Declarative configuration
-
Using
PooledConnectionFactory
-
Using
ManagedConnectionFactory
Programmatic configuration
-
Using
PooledConnectionFactory
-
Using
ManagedConnectionFactory
7.2.4. JPA Cache Stores Copy linkLink copied to clipboard!
JPA (Java Persistence API) cache stores, JpaStore
, use formal schema to persist data. Other applications can then read from persistent storage to load data from Data Grid. However, other applications should not use persistent storage concurrently with Data Grid.
When using JpaStore
, you should take the following into consideration:
- Keys should be the ID of the entity. Values should be the entity object.
-
Only a single
@Id
or@EmbeddedId
annotation is allowed. -
Auto-generated IDs with the
@GeneratedValue
annotation are not supported. - All entries are stored as immortal.
-
JpaStore
does not support segmentation.
Declarative configuration
Parameter | Description |
---|---|
|
Specifies the JPA persistence unit name in the JPA configuration file, |
| Specifies the fully qualified JPA entity class name that is expected to be stored in this cache. Only one class is allowed. |
Programmatic configuration
Configuration cacheConfig = new ConfigurationBuilder().persistence() .addStore(JpaStoreConfigurationBuilder.class) .persistenceUnitName("org.infinispan.loaders.jpa.configurationTest") .entityClass(User.class) .build();
Configuration cacheConfig = new ConfigurationBuilder().persistence()
.addStore(JpaStoreConfigurationBuilder.class)
.persistenceUnitName("org.infinispan.loaders.jpa.configurationTest")
.entityClass(User.class)
.build();
Parameter | Description |
---|---|
|
Specifies the JPA persistence unit name in the JPA configuration file, |
| Specifies the fully qualified JPA entity class name that is expected to be stored in this cache. Only one class is allowed. |
7.2.4.1. JPA Cache Store Usage Example Copy linkLink copied to clipboard!
This section provides an example for using JPA cache stores.
Prerequistes
-
Configure Data Grid to marshall your JPA entities. By default, Data Grid uses ProtoStream for marshalling Java objects. To marshall JPA entities, you must create a
SerializationContextInitializer
implementation that registers a.proto
schema and marshaller with aSerializationContext
.
Procedure
Define a persistence unit "myPersistenceUnit" in
persistence.xml
.<persistence-unit name="myPersistenceUnit"> <!-- Persistence configuration goes here. --> </persistence-unit>
<persistence-unit name="myPersistenceUnit"> <!-- Persistence configuration goes here. --> </persistence-unit>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create a user entity class.
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Configure a cache named "usersCache" with a JPA cache store.
Then you can configure a cache "usersCache" to use JPA Cache Store, so that when you put data into the cache, the data would be persisted into the database based on JPA configuration.
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Caches that use a JPA cache store can store one type of data only, as in the following example:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The
@EmbeddedId
annotation allows you to use composite keys, as in the following example:Copy to Clipboard Copied! Toggle word wrap Toggle overflow
7.2.5. Remote Cache Stores Copy linkLink copied to clipboard!
Remote cache stores, RemoteStore
, use the Hot Rod protocol to store data on Data Grid clusters.
The following is an example RemoteStore
configuration that stores data in a cache named "mycache" on two Data Grid Server instances, named "one" and "two":
If you configure remote cache stores as shared you cannot preload data. In other words if shared="true"
in your configuration then you must set preload="false"
.
Declarative configuration
Programmatic configuration
Segmentation
RemoteStore
supports segmentation and can publish keys and entries by segment, which makes bulk operations more efficient. However, segmentation is available only with Data Grid Hot Rod protocol version 2.3 or later.
When you enable segmentation for RemoteStore
, it uses the number of segments that you define in your Data Grid server configuration.
If the source cache is segmented and uses a different number of segments than RemoteStore
, then incorrect values are returned for bulk operations. In this case, you should disable segmentation for RemoteStore
.
7.2.6. RocksDB Cache Stores Copy linkLink copied to clipboard!
RocksDB provides key-value filesystem-based storage with high performance and reliability for highly concurrent environments.
RocksDB cache stores, RocksDBStore
, use two databases. One database provides a primary cache store for data in memory; the other database holds entries that Data Grid expires from memory.
Declarative configuration
Programmatic configuration
Parameter | Description |
---|---|
| Specifies the path to the RocksDB database that provides the primary cache store. If you do not set the location, it is automatically created. Note that the path must be relative to the global persistent location. |
| Specifies the path to the RocksDB database that provides the cache store for expired data. If you do not set the location, it is automatically created. Note that the path must be relative to the global persistent location. |
| Sets the size of the in-memory queue for expiring entries. When the queue reaches the size, Data Grid flushes the expired into the RocksDB cache store. |
| Sets the maximum number of entries before deleting and re-initializing (re-init) the RocksDB database. For smaller size cache stores, iterating through all entries and removing each one individually can provide a faster method. |
RocksDB tuning parameters
You can also specify the following RocksDB tuning parameters:
-
compressionType
-
blockSize
-
cacheSize
RocksDB configuration properties
Optionally set properties in the configuration as follows:
-
Prefix properties with
database
to adjust and tune RocksDB databases. -
Prefix properties with
data
to configure the column families in which RocksDB stores your data.
<property name="database.max_background_compactions">2</property> <property name="data.write_buffer_size">64MB</property> <property name="data.compression_per_level">kNoCompression:kNoCompression:kNoCompression:kSnappyCompression:kZSTD:kZSTD</property>
<property name="database.max_background_compactions">2</property>
<property name="data.write_buffer_size">64MB</property>
<property name="data.compression_per_level">kNoCompression:kNoCompression:kNoCompression:kSnappyCompression:kZSTD:kZSTD</property>
Segmentation
RocksDBStore
supports segmentation and creates a separate column family per segment. Segmented RocksDB cache stores improve lookup performance and iteration but slightly lower performance of write operations.
You should not configure more than a few hundred segments. RocksDB is not designed to have an unlimited number of column families. Too many segments also significantly increases cache store start time.
7.2.7. Soft-Index File Stores Copy linkLink copied to clipboard!
Soft-Index File cache stores, SoftIndexFileStore
, provide local file-based storage.
SoftIndexFileStore
is a Java implementation that uses a variant of B+ Tree that is cached in-memory using Java soft references. The B+ Tree, called Index
is offloaded on the file system to a single file that is purged and rebuilt each time the cache store restarts.
SoftIndexFileStore
stores data in a set of files rather than a single file. When usage of any file drops below 50%, the entries in the file are overwritten to another file and the file is then deleted.
SoftIndexFileStore
persists data in a set of files that are written in an append-only method. For this reason, if you use SoftIndexFileStore
on conventional magnetic disk, it does not need to seek when writing a burst of entries.
Most structures in SoftIndexFileStore
are bounded, so out-of-memory exceptions do not pose a risk. You can also configure limits for concurrently open files.
By default the size of a node in the Index
is limited to 4096 bytes. This size also limits the key length; more precisely the length of serialized keys. For this reason, you cannot use keys longer than the size of the node, 15 bytes. Additionally, key length is stored as "short", which limits key length to 32767 bytes. SoftIndexFileStore
throws an exception if keys are longer after serialization occurs.
SoftIndexFileStore
cannot detect expired entries, which can lead to excessive usage of space on the file system .
AdvancedStore.purgeExpired()
is not implemented in SoftIndexFileStore
.
Declarative configuration
Programmatic configuration
ConfigurationBuilder b = new ConfigurationBuilder(); b.persistence() .addStore(SoftIndexFileStoreConfigurationBuilder.class) .indexLocation("testCache/index"); .dataLocation("testCache/data")
ConfigurationBuilder b = new ConfigurationBuilder();
b.persistence()
.addStore(SoftIndexFileStoreConfigurationBuilder.class)
.indexLocation("testCache/index");
.dataLocation("testCache/data")
Segmentation
Soft-Index File cache stores support segmentation and create a separate instance per segment, which results in multiple directories in the path you configure. Each directory is a number that represents the segment to which the data maps.
7.2.8. Implementing Custom Cache Stores Copy linkLink copied to clipboard!
You can create custom cache stores through the Data Grid persistent SPI.
7.2.8.1. Data Grid Persistence SPI Copy linkLink copied to clipboard!
The Data Grid Service Provider Interface (SPI) enables read and write operations to external storage through the NonBlockingStore
interface and has the following features:
- Portability across JCache-compliant vendors
-
Data Grid maintains compatibility between the
NonBlockingStore
interface and theJSR-107
JCache specification by using an adapter that handles blocking code. - Simplified transaction integration
- Data Grid automatically handles locking so your implementations do not need to coordinate concurrent access to persistent stores. Depending on the locking mode you use, concurrent writes to the same key generally do not occur. However, you should expect operations on the persistent storage to originate from multiple threads and create implementations to tolerate this behavior.
- Parallel iteration
- Data Grid lets you iterate over entries in persistent stores with multiple threads in parallel.
- Reduced serialization resulting in less CPU usage
- Data Grid exposes stored entries in a serialized format that can be transmitted remotely. For this reason, Data Grid does not need to deserialize entries that it retrieves from persistent storage and then serialize again when writing to the wire.
Reference
7.2.8.2. Creating Cache Stores Copy linkLink copied to clipboard!
Create custom cache stores by implementing the NonBlockingStore
interface.
- Implement the appropriate Data Grid persistent SPIs.
-
Annotate your store class with the
@ConfiguredBy
annotation if it has a custom configuration. Create a custom cache store configuration and builder if desired.
-
Extend
AbstractStoreConfiguration
andAbstractStoreConfigurationBuilder
. Optionally add the following annotations to your store Configuration class to ensure that your custom configuration builder parses your cache store configuration from XML:
-
@ConfigurationFor
@BuiltBy
If you do not add these annotations, then
CustomStoreConfigurationBuilder
parses the common store attributes defined inAbstractStoreConfiguration
and any additional elements are ignored.NoteIf a configuration does not declare the
@ConfigurationFor
annotation, a warning message is logged when Data Grid initializes the cache.
-
-
Extend
7.2.8.3. Configuring Data Grid to Use Custom Stores Copy linkLink copied to clipboard!
After you create your custom cache store implementation, configure Data Grid to use it.
Declarative configuration
<local-cache name="customStoreExample"> <persistence> <store class="org.infinispan.persistence.dummy.DummyInMemoryStore" /> </persistence> </local-cache>
<local-cache name="customStoreExample">
<persistence>
<store class="org.infinispan.persistence.dummy.DummyInMemoryStore" />
</persistence>
</local-cache>
Programmatic configuration
Configuration config = new ConfigurationBuilder() .persistence() .addStore(CustomStoreConfigurationBuilder.class) .build();
Configuration config = new ConfigurationBuilder()
.persistence()
.addStore(CustomStoreConfigurationBuilder.class)
.build();
7.2.8.4. Deploying Custom Cache Stores Copy linkLink copied to clipboard!
You can package custom cache stores into JAR files and deploy them to Data Grid servers as follows:
- Package your custom cache store implementation in a JAR file.
-
Add your JAR file to the
server/lib
directory of your Data Grid server.
7.3. Migrating Between Cache Stores Copy linkLink copied to clipboard!
Data Grid provides a utility to migrate data from one cache store to another.
7.3.1. Cache Store Migrator Copy linkLink copied to clipboard!
Data Grid provides the StoreMigrator.java
utility that recreates data for the latest Data Grid cache store implementations.
StoreMigrator
takes a cache store from a previous version of Data Grid as source and uses a cache store implementation as target.
When you run StoreMigrator
, it creates the target cache with the cache store type that you define using the EmbeddedCacheManager
interface. StoreMigrator
then loads entries from the source store into memory and then puts them into the target cache.
StoreMigrator
also lets you migrate data from one type of cache store to another. For example, you can migrate from a JDBC String-Based cache store to a Single File cache store.
StoreMigrator
cannot migrate data from segmented cache stores to:
- Non-segmented cache store.
- Segmented cache stores that have a different number of segments.
7.3.2. Getting the Store Migrator Copy linkLink copied to clipboard!
StoreMigrator
is available as part of the Data Grid tools library, infinispan-tools
, and is included in the Maven repository.
Procedure
Configure your
pom.xml
forStoreMigrator
as follows:Copy to Clipboard Copied! Toggle word wrap Toggle overflow
7.3.3. Configuring the Store Migrator Copy linkLink copied to clipboard!
Set properties for source and target cache stores in a migrator.properties
file.
Procedure
-
Create a
migrator.properties
file. Configure the source cache store in
migrator.properties
.Prepend all configuration properties with
source.
as in the following example:source.type=SOFT_INDEX_FILE_STORE source.cache_name=myCache source.location=/path/to/source/sifs
source.type=SOFT_INDEX_FILE_STORE source.cache_name=myCache source.location=/path/to/source/sifs
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Configure the target cache store in
migrator.properties
.Prepend all configuration properties with
target.
as in the following example:target.type=SINGLE_FILE_STORE target.cache_name=myCache target.location=/path/to/target/sfs.dat
target.type=SINGLE_FILE_STORE target.cache_name=myCache target.location=/path/to/target/sfs.dat
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
7.3.3.1. Store Migrator Properties Copy linkLink copied to clipboard!
Configure source and target cache stores in a StoreMigrator
properties.
Property | Description | Required/Optional |
---|---|---|
| Specifies the type of cache store type for a source or target.
| Required |
Property | Description | Example Value | Required/Optional |
---|---|---|---|
| Names the cache that the store backs. |
| Required |
| Specifies the number of segments for target cache stores that can use segmentation.
The number of segments must match In other words, the number of segments for a cache store must match the number of segments for the corresponding cache. If the number of segments is not the same, Data Grid cannot read data from the cache store. |
| Optional |
Property | Description | Required/Optional |
---|---|---|
| Specifies the dialect of the underlying database. | Required |
| Specifies the marshaller version for source cache stores. Set one of the following values:
*
*
* | Required for source stores only.
For example: |
| Specifies a custom marshaller class. | Required if using custom marshallers. |
|
Specifies a comma-separated list of custom | Optional |
| Specifies the JDBC connection URL. | Required |
| Specifies the class of the JDBC driver. | Required |
| Specifies a database username. | Required |
| Specifies a password for the database username. | Required |
| Sets the database major version. | Optional |
| Sets the database minor version. | Optional |
| Disables database upsert. | Optional |
| Specifies if table indexes are created. | Optional |
| Specifies additional prefixes for the table name. | Optional |
| Specifies the column name. | Required |
| Specifies the column type. | Required |
|
Specifies the | Optional |
To migrate from Binary cache stores in older Data Grid versions, change table.string.*
to table.binary.\*
in the following properties:
-
source.table.binary.table_name_prefix
-
source.table.binary.<id\|data\|timestamp>.name
-
source.table.binary.<id\|data\|timestamp>.type
Property | Description | Required/Optional |
---|---|---|
| Sets the database directory. | Required |
| Specifies the compression type to use. | Optional |
Example configuration for migrating from a RocksDB cache store.
# Example configuration for migrating from a RocksDB cache store.
source.type=ROCKSDB
source.cache_name=myCache
source.location=/path/to/rocksdb/database
source.compression=SNAPPY
Property | Description | Required/Optional |
---|---|---|
|
Sets the directory that contains the cache store | Required |
Example configuration for migrating to a Single File cache store.
# Example configuration for migrating to a Single File cache store.
target.type=SINGLE_FILE_STORE
target.cache_name=myCache
target.location=/path/to/sfs.dat
Property | Description | Value |
---|---|---|
Required/Optional |
| Sets the database directory. |
Required |
| Sets the database index directory. |
Example configuration for migrating to a Soft-Index File cache store.
# Example configuration for migrating to a Soft-Index File cache store.
target.type=SOFT_INDEX_FILE_STORE
target.cache_name=myCache
target.location=path/to/sifs/database
target.location=path/to/sifs/index
7.3.4. Migrating Cache Stores Copy linkLink copied to clipboard!
Run StoreMigrator
to migrate data from one cache store to another.
Prerequisites
-
Get
infinispan-tools.jar
. -
Create a
migrator.properties
file that configures the source and target cache stores.
Procedure
If you build
infinispan-tools.jar
from source, do the following:-
Add
infinispan-tools.jar
and dependencies for your source and target databases, such as JDBC drivers, to your classpath. -
Specify
migrator.properties
file as an argument forStoreMigrator
.
-
Add
If you pull
infinispan-tools.jar
from the Maven repository, run the following command:mvn exec:java