Learn how to upgrade and migrate your Infinispan deployments to the latest version or between later versions. Find out how to perform rolling upgrades of Infinispan Server deployments and how to migrate persistent data between cache stores.
1. Infinispan Version Details
Learn about changes in Infinispan versions before you upgrade.
1.2. Upgrading to 14.0.15 or newer
1.2.1. Metrics
The JGroups and cross-site metrics name changed when names-as-tags
is set to true
,
where the cluster’s name and the site’s name are no longer present in the metrics name but as a tag.
As an example, when you set names-as-tags
to false
, metrics are named based on the channel, resulting in multiple metrics for the same purpose:
# TYPE vendor_jgroups_xsite_frag4_get_number_of_sent_fragments gauge
# HELP vendor_jgroups_xsite_frag4_get_number_of_sent_fragments Number of sent fragments
vendor_jgroups_xsite_frag4_get_number_of_sent_fragments{cluster="xsite",node="..."} 0.0
# TYPE vendor_jgroups_cluster_frag4_get_number_of_sent_fragments gauge
# HELP vendor_jgroups_cluster_frag4_get_number_of_sent_fragments Number of sent fragments
vendor_jgroups_cluster_frag4_get_number_of_sent_fragments{cluster="cluster",node="..."} 2.0
When you set names-as-tags
to true
, metrics are simplified, and cluster and site names appear as tags:
# TYPE vendor_jgroups_frag4_get_number_of_sent_fragments gauge
# HELP vendor_jgroups_frag4_get_number_of_sent_fragments Number of sent fragments
vendor_jgroups_frag4_get_number_of_sent_fragments{cache_manager="default",cluster="xsite",node="..."} 0.0
vendor_jgroups_frag4_get_number_of_sent_fragments{cache_manager="default",cluster="cluster",node="..."} 2.0
Aligning with the deprecation for removal of the SecurityManager since JDK 17, we no longer support integration with a SecurityManager.
1.2.2. Jakarta and Java EE
-
Infinispan has been updated to use
jakarta.*
packages only. -
If you require the legacy
javax.*
packages, you should utilise Infinispan 14.0.x. -
The transitional
-jakarta
jars, which included bothjakarta.
andjavax.*
packages, have been removed.
1.2.3. Removals
-
The Kryo and Protostuff marshallers have been removed.
-
Extended Statistics module have been removed.
-
JCache support.
-
Spring 5.x and Spring Boot 2.x support.
-
Wildfly modules are no longer provided.
1.2.4. Hot Rod client defaults
Infinispan introduced changes to the properties of the Hot Rod client.
ssl_hostname_validation
A new property, ssl_hostname_validation
with a default value of true
.
This property enables TLS hostname validation based on RFC 2818 rules.
Additionally, setting the sni_host_name
is now required when hostname validation is enabled.
Property | Infinispan 14 | Previous versions |
---|---|---|
|
2000 ms / 2 seconds |
60000 ms / 60 seconds |
|
2000 ms / 2 seconds |
60000 ms / 60 seconds |
|
3 |
10 |
|
180000 ms / 3 minutes |
1800000 ms / 30 minutes |
1.2.5. RESP Endpoint
-
Default expiration may be applied to the cache configuration used by the RESP endpoint
1.2.7. Indexing annotations
-
The support for the old Hibernate Search 5 annotations have been removed
-
@ProtoDoc
, no longer required since 14.0, is now deprecated
1.2.8. Security
The principal role mapper now applies only to groups instead of both groups and user principals.
Use the cache-manager.security.authorization.group-only-mapping=false
configuration to use the old behavior.
1.2.9. Scattered cache removal
The scattered cache mode have been removed. Use Distributed caches instead.
1.2.10. Global State
Infinispan will now refuse to start if a dangling lock file is found in the persistent global state, indicating
an unclean shutdown. The behavior can be changed by configuring the global state unclean-shutdown-action
setting.
1.2.11. Persistence
The default availability-interval
has been increased to 30 seconds. The previous default was 1 second.
1.2.12. RESP endpoint
The RESP endpoint cache now requires the key storage media type to be application/octet-stream.
1.2.13. Client listeners remove events
Client listeners remove events will now be propagated even if the remove did not remove a value.
This is required to properly support new changes around the new includeOldValue
method on CacheEventConverter
.
NOTE: Remote events do not include any values by default
1.3. Upgrading from 13.0 to 14.0
1.3.1. Security authorization SPI
org.infinispan.security.PrincipalRoleMapperContext
is deprecated in 14.0 and replaced by org.infinispan.security.AuthorizationMapperContext
.
1.3.2. Scattered cache deprecation
The scattered cache mode is deprecated in 14.0 and will be removed in 16.0.
1.3.3. Cross Site Replication
Asynchronous backup strategy logging
By default, the asynchronous backup strategy logs exceptions that occur on remote sites.
To disable exceptions for async backup operations, set failure-policy="IGNORE"
in your configuration as follows:
<backup site="NYC" strategy="ASYNC" failure-policy="IGNORE" />
1.3.4. Store properties
Store provided properties are no longer allowed to override store explicit configuration.
For example the below configuration would set the read only configuration of the store to true.
<persistence> <file-store> <index path="testCache/index" /> <data path="testCache/data" /> <property name="readOnly">true</property> </file-store> </persistence>
Now the readOnly property is only provided to the store itself and does not affect the store explicit configuration. The same configuration should be changed to the following instead.
<persistence> <file-store read-only="true"> <index path="testCache/index" /> <data path="testCache/data" /> </file-store> </persistence>
1.3.5. Fetch Persistent State Remove
The store property named fetch-persistent-state has been deprecated and removed from xml configuration. Instead the first configured non shared store that allows for bulk loading will be used for state transfer of entries. This reduces configuration complexity and does not allow for a configuration that could lose data due to not transferring entries stored in a store.
This change has no effect for shared stores |
1.3.6. RocksDB store
The RocksDB implementation is no longer included by default with the server. It can be installed via the CLI:
cli.sh install org.rocksdb:rocksdbjni:6.22.1.1
1.3.7. JDBC Store database versions configuration deprecated
Prior we allowed a user to specify the database major and minor versions when configuring the database parameters. These two options are now deprecated and ignored as we always retrieve them from the JDBC metadata directly. This affects all three of the JDBC based stores (string-keyed-jdbc-store, table-jdbc-store and query-jdbc-store).
1.3.8. Micrometer Metrics
Microprofile metrics are no longer supported, available output metrics are now Prometheus and OpenMetrics.
The implementation relies on Micrometer library, for more information see the Configuring Infinispan metrics.
1.3.9. Jakarta EE compatible jars available
We now distribute Jakarta EE based jars for users. This is in addition to the javax compatible jars.
Some modules that have Jakarta based jars are the following (note there are quite a few more, just some prime examples)
-
infinispan-commons
-
infinispan-core
-
infinispan-multimap
-
infinispan-query
-
infinispan-client-hotrod
-
infinispan-api
If your application requires using the jakarta instead of javax namespace all you need to do is to append your dependencies with -jakarta
.
<dependency>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-client-hotrod-jakarta</artifactId>
</dependency>
1.3.10. Hibernate 6.0 2LC Update
Hibernate 6.0 is now supported and is the only implementation supported moving forward. If Hibernate 5.3 support is needed, you must use an older version of Infinispan.
1.3.11. JPAStore has been removed
The JPAStore has been removed in Infinispan 14.0. It is suggested instead to use the new SQL Table or Query Stores that were added in Infinispan 13.0.
1.3.12. Query API
Infinispan native annotations
This release introduces new indexing annotations: @Indexed
, @Basic
, @Decimal
, @Keyword
, @Text
, and @Embedded
.
Each of the annotations supports a set of attributes that you can use to further describe how the entity is indexed.
These new annotations replaced Hibernate Search annotations which means that you are no longer required to annotate your Java classes with the @ProtoDoc
annotation for remote caches.
Any annotations will be copied as comments to the generated .proto
files.
The following table summarizes the mapping of fields between Hibernate Search 5 (HS5) annotations and Infinispan native annotations:
HS5 annotations | Indexing attributes | Infinispan native annotations | Description |
---|---|---|---|
@Field(index=Index.YES) |
searchable |
@Basic, @Decimal, @Keyword, @Text |
Fields previously marked as indexed are now searchable. |
@Field(store = Store.YES) |
projectable = true |
@Basic, @Decimal, @Keyword, @Text |
Fields previously marked as stored are now projectable. |
type String && @Field(analyze = Analyze.YES) |
analyzer = "<definition>" |
@Text |
String fields that were marked with analyzer definitions remain being analyzed during indexing. |
@Field(analyze = Analyze.NO) && (@Field(store = Store.YES) OR @Field(sortable = Sortable.YES)) |
sortable = true |
@Basic, @Decimal, @Keyword |
Fields that were not analyzed but were either stored in the index or marked as sortable are now considered sortable. |
N/A |
aggregable = true |
@Basic, @Decimal, @Keyword |
Performing aggregation operations using the Hibernate 5 Search annotations was not possible. |
N/A |
normalizer = "lowercase" |
@Keyword |
Mapping fields that were analyzed or normalized is not possible due to the potential data loss in the process. |
1.3.13. Query efficiency
The default for maximum results returned by a query that was present in Infinispan 12.1.5.Final and earlier versions has been restored.
You can now change the default limit by setting the default-max-results
cache property.
The default value of default-max-results is 100.
Limiting the number of results returned by a query significantly improves performance of queries that don’t have an explicit limit set.
1.4. Upgrading from 12.1 to 13.0
1.4.1. Search
The optional
parameter has been removed from queries in library mode, CLI, Hot Rod and REST.
Since 12.0, Infinispan ignores this parameter since it detects the optimal way of performing indexed queries.IndexedQueryMode
1.4.2. REST
1.4.3. File-Based Cache Store (file-store
) Configuration Defaults to SoftIndexFileStore
Including file-store
persistence in cache configuration now creates a soft index file-based cache store, SoftIndexFileStore
, instead of a single-file cache store, SingleFileStore
.
In previous versions SingleFileStore
was the default for file-based cache stores.
Any file-store
configuration with a schema version of 13 is automatically migrated to a SoftIndexFileStore
after upgrading to Infinispan 13.
Schema changes
The following changes apply to the Infinispan 13 configuration schemas:
-
The
urn:infinispan:config:store:soft-index
namespace is no longer available. -
The
file-store
element in theurn:infinispan:config
namespace now defaults to soft-index file stores. -
The
single-file-store
element has been added to theurn:infinispan:config
namespace if you want to configure a single file store, which is deprecated. -
The
endpoints
element in theurn:infinispan:server
namespace is no longer a repeating element, but a wrapper for 0 or moreendpoint
elements.
Migrating Soft-Index File Stores
Declarative
If you are upgrading to Infinispan 13 from a previous version, and your caches include any configuration with the soft-index-file-store
element, you should convert that configuration to use the file-store
element instead.
<persistence>
<soft-index-file-store xmlns="urn:infinispan:config:soft-index:12.1">
<index path="testCache/index" />
<data path="testCache/data" />
</soft-index-file-store>
</persistence>
<persistence>
<file-store>
<index path="testCache/index" />
<data path="testCache/data" />
</file-store>
</persistence>
Programmatic
ConfigurationBuilder b = new ConfigurationBuilder();
b.persistence()
.addStore(SoftIndexFileStoreConfigurationBuilder.class)
.indexLocation("testCache/index");
.dataLocation("testCache/data")
ConfigurationBuilder b = new ConfigurationBuilder();
b.persistence()
.addSoftIndexFileStore()
.indexLocation("testCache/index")
.dataLocation("testCache/data");
Migrating Single File Stores
To use SingleFileStore
as a file-based cache store with Infinispan 13 or later, do one of the following:
<persistence passivation="false">
<single-file-store shared="false"
preload="true"
read-only="false"/>
</persistence>
ConfigurationBuilder b = new ConfigurationBuilder();
b.persistence()
.addSingleFileStore();
However, Infinispan does not recommend using SingleFileStore
.
Instead you should use SoftIndexFileStore
for file-based cache stores because it offers better scalability.
Find out more details about configuring file-based cache stores in the Configuration Guide.
1.4.4. Accurate size metrics
The currentNumberOfEntries
statistics now return -1
by default as the calculation is expensive. Accurate values can be restored using the following configuration:
<cache-container>
<metrics accurate-size="true"/>
</cache-container>
GlobalConfigurationBuilder b = new GlobalConfigurationBuilder();
b.metrics()
.accurateSize(true);
1.5. Upgrading from 11.x or 12.0 to 12.1
If you are upgrading from 11.x to 12.1, you should also review the 11.0 to 12.0 upgrade notes.
1.5.1. Upgrading Deployments with Single File Cache Store Persistence
When upgrading Infinispan to 12.1, caches that include a SingleFileStore
persistence configuration can encounter an issue that leads to data corruption.
This issue affects upgrades to Infinispan 12.1.0.Final through 12.1.4.Final only. As of Infinispan 12.1.5.Final this issue no longer occurs during upgrade.
If you have already upgraded from 11.x to 12.1, you should do the following as soon as possible:
-
Back up any
$ISPN_HOME/server/data/*.dat
files. -
Upgrade to Infinispan 12.1.5.Final or later.
After successful upgrade, Infinispan recovers any corrupted data and restores the Single File Store on first start.
For caches that backup to other clusters via cross-site replication, you should perform a state transfer after upgrading to 12.1.
From the Infinispan CLI use the site push-site-state
command as follows:
[//containers/default]> site push-site-state --cache=cacheName --site=NYC
1.5.2. JGroups configuration changes
Message bundler
The default JGroups bundler has changed from "no-bundler" (a thread sending a message writes it to the TCP socket or sends the UDP datagram directly) to "transfer-queue" (a thread sending a message only adds the message to a queue, and a separate bundler thread groups the messages in "batches" then sends the batches).
1.5.3. Encoding
-
org.infinispan.commons.dataconversion.Encoder
has been deprecated and will be removed in a future version.
1.5.4. Authorization
A new CREATE
permission has been introduced, with the following effects:
* users now require the CREATE
permission to be able to create/remove caches/counters/locks instead of the ADMIN
permission
* it supersedes the internal _schema_manager
role, which has now been deprecated. It is required in order to add/remove schemas.
* it supersedes the internal _script_manager
role, which has now been deprecated. It is required in order to add/remove scripts.
Server
Authorization is now enabled out-of-the-box in the default server configuration.
Authorization only applies to "global" operations (administrative and management), so normal cache usage is unaffected.
You can revert to the previous behavior by removing the <authorization>
element from the <cache-container>
configuration.
The default logging configuration now includes an audit logging which is disabled by default.
1.5.5. Server Trust Store
The trust store configuration is now part of the server identity to allow client certificate validation
without requiring authentication. Adding a truststore-realm
will reference the identity’s trust store.
<!-- 12.0 -->
<security-realm name="default">
<server-identities>
<ssl>
<keystore path="server.pfx"
keystore-password="password" alias="server"/>
</ssl>
</server-identities>
<truststore-realm path="trust.pfx" password="secret"/>
</security-realm>
<!-- 12.1 -->
<security-realm name="default">
<server-identities>
<ssl>
<keystore path="server.pfx"
keystore-password="password" alias="server"/>
<truststore path="trust.pfx" password="secret"/>
</ssl>
</server-identities>
<truststore-realm/>
</security-realm>
1.6. Upgrading from 11.0 to 12.0
1.6.1. Encoding
Conversions of cache data between application/x-java-object
and application/json
are deprecated and will be removed
in a future version. For JSON support, it is recommend to configure the cache with application/x-protostream
encoding.
1.6.3. REST
Some operations that previously supported both GET
and POST
now support only POST
:
-
/v2/caches/{cacheName}?action=clear
-
/v2/caches/{cacheName}?action=sync-data
-
/v2/caches/{cacheName}?action=disconnect-source
-
/v2/cluster?action=stop
-
/v2/counters/{counterName}?action=reset
-
/v2/counters/{counterName}?action=increment
-
/v2/counters/{counterName}?action=decrement
-
/v2/counters/{counterName}?action=add
-
/v2/counters/{counterName}?action=compareAndSet
-
/v2/counters/{counterName}?action=compareAndSwap
-
/v2/caches/{cacheName}/search/indexes?action=mass-index
-
/v2/caches/{cacheName}/search/indexes?action=clear
-
/v2/caches/{cacheName}/search/query/stats?action=clear
-
/v2/server/?action=stop
-
/v2/tasks/{taskName}?action=exec
-
/v2/caches/{cacheName}/x-site/local/?action=clear-push-state-status
-
/v2/caches/{cacheName}/x-site/backups/{site}?action=take-offline
-
/v2/caches/{cacheName}/x-site/backups/{site}?action=bring-online
-
/v2/caches/{cacheName}/x-site/backups/{site}?action=start-push-state
-
/v2/caches/{cacheName}/x-site/backups/{site}?action=cancel-push-state
-
/v2/caches/{cacheName}/x-site/backups/{site}?action=cancel-receive-state
-
/v2/cache-managers/{name}/x-site/backups/{site}?action=bring-online
-
/v2/cache-managers/{name}/x-site/backups/{site}?action=take-offline
-
/v2/cache-managers/{name}/x-site/backups/{site}?action=start-push-state
-
/v2/cache-managers/{name}/x-site/backups/{site}?action=cancel-push-state
-
The following query statistics operation:
-
/v2/caches/{cacheName}/search/query/stats
-
/v2/caches/{cacheName}/search/indexes/stats
-
have been deprecated and will be removed in a future version.
Users should migrate to the
endpoint. Please consult the REST API docs for more details./v2/caches/{cacheName}/search/stats
1.6.4. Search
-
It’s not possible anymore to enable or disable search statistics via JMX. Query and Index statistics are only exposed when the cache "statistics" configuration is enabled.
-
MassIndexer
,CacheQuery
andSearchManager
were deprecated and are now removed. -
Indexed type names must be declared for all indexed caches, regardless of their storage format. This requirement was introduced in 11 in a more lenient form and failing to comply just logged a warning. Starting with version 12 this results in a fatal error preventing the cache to start. Please update your configurations accordingly.
Indexing configuration
Configuring indexing using the property
element is deprecated and will be removed in a future version.
Use the <index-reader>
and <index-writer>
configuration elements to define indexing behaviour.
For the programmatic configuration, use builder.indexing().reader()
and builder.indexing().writer()
.
To migrate your configuration, please refer to the sections below:
Storage
<!-- 11.0 -->
<indexing>
<property name="default.directory_provider">local-heap</property>
</indexing>
<!-- 12.0 -->
<indexing storage="local-heap">
</indexing>
<!-- 11.0 -->
<indexing>
<property name="default.directory_provider">filesystem</property>
<property name="default.indexBase">${java.io.tmpdir}/baseDir</property>
</indexing>
<!-- 12.0 -->
<indexing storage="filesystem" path="${java.io.tmpdir}/baseDir"/>
Reader refresh
<!-- 11.0 -->
<indexing>
<property name="default.reader.async_refresh_period_ms">1000</property>
</indexing>
<!-- 12.0 -->
<indexing>
<index-reader refresh-interval="1000"/>
</indexing>
IndexManager
From 12.0, near-real-time
is the default index manager and no configuration is needed:
<!-- 11.0 -->
<indexing>
<property name="default.indexmanager">near-real-time</property>
</indexing>
<!-- 12.0 -->
<indexing enabled="true"/>
Worker sync/async
The default.worker.execution
is redundant as the indexing process is async by default:
<!-- 11.0 -->
<indexing>
<property name="default.worker.execution">async</property>
<property name="default.index_flush_interval">500</property>
</indexing>
<!-- 12.0 -->
<indexing>
<index-writer commit-interval="500"/>
</indexing>
Low level Lucene options
The properties used previously to tune the Lucene index directly are now
available under the <index-writer>
element.
<!-- 11.0 -->
<indexing>
<property name="default.indexwriter.merge_factor">30</property>
<property name="default.indexwriter.merge_max_size">1024</property>
<property name="default.indexwriter.ram_buffer_size">256</property>
</indexing>
<!-- 12.0 -->
<indexing>
<index-writer ram-buffer-size="256">
<index-merge factor="30" max-size="1024"/>
</index-writer>
</indexing>
Supporting older indexes
The property lucene_version
is deprecated and will not be supported in a future version. It is recommended to re-index when migrating from older Infinispan versions instead of reusing the underlying indexes on disk created
in an older Lucene version.
1.6.5. Cache Health
A new status FAILED
has been added to the cache health, to indicate that a cache failed to start with the
provided configuration. The possible statuses of the cache health are now HEALTHY, HEALTHY_REBALANCING, DEGRADED and FAILED.
1.6.6. Marshalling
Kryo and Protostuff marshaller deprecation
The Kryo and Protostuff marshallers have been deprecated and will be removed in Infinispan 15.0
Infinispan includes an upgraded version of the ProtoStream API that can
affect upgrade from previous Infinispan versions.
In previous versions, the ProtoStream API did not correctly nest message types with the result that the messages were generated as top-level only. For this reason, if you have Protobuf messages in a persistent cache store and upgrade to Infinispan 12, then you should modify Java classes so that Protobuf annotations are at top-level. This ensures that the nesting in your persisted messages matches the nesting in your Java classes, otherwise data incompatibility issues can occur.
1.6.7. Persistence
JdbcStringBasedStore
The JDBC string based store now creates an additional _META
to ensure that any database content is compatible with
the current Infinispan version and configuration.
1.7. Upgrading from 10.1 to 11.0
1.7.1. HotRod Client
The GenericJBossMarshaller
is no longer automatically configured if the infinispan-jboss-marshalling
module is on the
classpath. If jboss-marshalling is required, it’s necessary for the aforementioned jar to be on the classpath and for
the org.infinispan.jboss.marshalling.commons.GenericJBossMarshaller
to be explicitly configured when creating the
RemoteCacheManager.
1.7.2. Wildfly modules
The Wildfly modules are now deprecated. The jgroups
, infinispan
and endpoint
extensions have been removed and
all the components are now in a single org.infinispan
module.
1.7.3. Cross Site Replication
-
The
org.infinispan.xsite.CustomFailurePolicy
interface has been deprecated and it will be replaced byorg.infinispan.configuration.cache.CustomFailurePolicy
. -
Cross Site Replication was disabled for local caches. They are unable to send or receive updates.
1.7.4. Total Order transaction protocol removed
Total Order transaction protocol was deprecated in 10.0 and now it is removed.
1.7.5. JGroups configuration system property changes
The default stacks now now use system property jgroups.bind.address
to configure the bind address.
System properties jgroups.tcp.address
and jgroups.udp.address
still work, but they are considered deprecated and will be removed.
1.7.7. Search
Indexing
-
The Infinispan Lucene Directory, the
InfinispanIndexManager
andAffinityIndexManager
index managers, and the Infinispan Directory provider for Hibernate Search were deprecated and are now removed. -
The
auto-config
attribute is deprecated and will be removed in a future version. -
The index mode configuration
is no longer necessary. The system will automatically choose the best way to manage indexing once it is enabled and several previously supported values are no longer supported and will result in a fatal configuration error when used. The following substitutions should be done:index()
-
.indexing().index(Index.NONE)
→indexing().enabled(false)
-
All the other enum values →
indexing().enabled(true)
-
In the XML configuration it is possible to omit enabled="true"
if the configuration contains others sub-elements. Programmatic and JSON configurations must use it.
It is forbidden to use both the .indexing().enabled( )
and the deprecated .indexing().index( )
configuration.
-
Indexed types required: starting with version 11 it is mandatory to declare all indexed types in the indexing configuration or else warnings will be logged when the undeclared type is firstly used. This requirement exists solely for indexed caches and applies to both Java classes and protobuf types. Please consider updating your cache configurations in order to avoid these warnings now. Starting with version 12 such incomplete configurations will be considered invalid and will result in a fatal error at cache startup time.
Querying
-
The
SearchManager
has been deprecated and no longer supports Lucene and Hibernate Search native objects:-
.getQuery()
methods that take a Lucene Query have been removed. The alternative methods that take an Ickle query from theorg.infinispan.query.Search
entry point should be used instead. -
.buildQueryBuilderForClass()
, that allows to build Hibernate Search queries directly has been removed. Ickle queries should be used instead. -
It is not possible anymore to specify multiple target entity(ies) class(es) when calling
.getQuery()
. The entity will come from the Ickle query string, so multi-entity queries are not supported anymore.
-
-
CacheQuery
has been deprecated andorg.infinispan.query.dsl.Query
obtained fromSearch.getQueryFactory()
should be used instead. -
Instances of
org.infinispan.query.dsl.Query
don’t cache query results anymore and allow queries to be re-executed when calling methods such aslist()
.
Entity Mappings
-
It is now required to annotate a field that requires sorting with
@SortableField
, both for embedded and remote queries. -
Several features have been deprecated:
-
Custom bridges, declared with
@FieldBridge
and@ClassBridge
-
Analyzer definitions, declared with
@AnalyzerDef
and@NormalizerDef
-
Dynamic selection of analyzers based on a discriminator, declared with
@AnalyzerDiscriminator
-
Index time boosting, declared as an attribute of the
@Field
annotation -
Definition of a default analyzer, either using the configuration property
hibernate.search.analyzer
or using the@Analyzer
annotation -
indexNullAs
, used as an attribute in the@Field
declaration -
The configuration
hibernate.search.index_uninverting_allowed
, that allows regular@Field
to be sortable by un-inverting them at runtime
-
1.7.8. ThreadFactoryConfiguration changes
The ThreadGroup configuration setting has been removed and only thread group name is allowed now. This configuration was inconsistent between programmatic and declarative configuration and is now consistent.
1.7.9. Persistence
1.7.10. HotRod
The LAZY_RETRIEVAL
option utilises the now deprecated ClusterLoader
and consequently has also been deprecated. It will be removed in a
future release with no direct replacement.
1.7.11. Memory configuration changes
-
The
BINARY
storage has been deprecated, and will no longer store primitives and String mixed withbyte[]
, but onlybyte[]
. -
The child elements
<object>
,<binary>
and<off-heap>
are also deprecated. The following config changes should be done:-
On heap storage:
10.1
<memory> <object size="1000000" strategy="REMOVE"/> </memory>
11.0
<memory max-count="1000000" when-full="REMOVE"/>
-
Binary, on heap storage:
10.1
<cache> <memory> <binary size="500000000" strategy="EXCEPTION" eviction="MEMORY"/> </memory> </cache>
11.0
<cache> <!-- Or any other binary format --> <encoding media-type="application/x-protostream"/> <!-- Sizes are human-readable, e.g.: "1 GB", "0.5TB" --> <memory max-size="500 MB" when-full="EXCEPTION"/> </cache>
-
Off-heap:
10.1
<cache> <memory> <off-heap size="10000000" eviction="COUNT"/> </memory> </cache>
11.0
<memory storage="OFF_HEAP" max-count="10000000"/>
-
-
Due to the changes above, cache configurations serialized to XML or JSON (for example, when using REST) will always be in the new format.
1.7.12. Encoding in Server Caches
-
Server caches should configure the MediaType for keys and values, or else a WARN will be logged. Usage of operations that require data conversion or indexing will not be supported for caches without encoding configuration in a future version. These operations include search, task execution, remote filters/converter/listeners, REST/Hot Rod reading/writing in different data formats
1.8. Upgrading from 10.0 to 10.1 and 10.0 to 11.0
1.8.1. Maximum Idle Timeouts with Clustered Cache Modes
Maximum idle expiration has been changed to improve data consistency with clustered cache modes when Infinispan nodes fail.
|
See Maximum Idle Expiration for complete details.
1.9. Upgrading from 10.0 to 10.1
1.9.1. REST Store
The following configurations were removed from the REST store:
and append-cache-name-to-path
.path
To specify the remote server endpoint path, a single configuration
should be used.cache-name
1.9.2. Infinispan Lucene Directory is deprecated
The Infinispan Lucene directory is now deprecated and will be removed in a future release. Consequently, the Infinispan Directory provider for Hibernate Search will also be discontinued, with no replacement.
Both IndexManagers that rely on the Lucene Directory are also deprecated, the InfinispanIndexManager and the AffinityIndexManager. Users are encouraged to reconfigure their indexes as non-shared, using the Near Real Time IndexManager, with file system storage:
<distributed-cache name="default">
<indexing index="PRIMARY_OWNER">
<property name="default.indexmanager">near-real-time</property>
<property name="default.indexBase">/opt/infinispan/server/data/indexes</property>
</indexing>
</distributed-cache>
Queries need to be adjusted to use the
runtime option.BROADCAST
1.9.3. Security role mappers and audit loggers
The security role mapper implementations have been moved from the org.infinispan.security.impl
package to the
org.infinispan.security.mappers
package:
-
org.infinispan.security.impl.CommonNameRoleMapper
⇒org.infinispan.security.mappers.CommonNameRoleMapper
-
org.infinispan.security.impl.ClusterRoleMapper
⇒org.infinispan.security.mappers.ClusterRoleMapper
-
org.infinispan.security.impl.IdentityRoleMapper
⇒org.infinispan.security.mappers.IdentityRoleMapper
The security audit logger implementations have been moved from the org.infinispan.security.impl
package to the
org.infinispan.security.audit
package:
-
org.infinispan.security.impl.LoggingAuditLogger
⇒org.infinispan.security.audit.LoggingAuditLogger
-
org.infinispan.security.impl.NullAuditLogger
⇒org.infinispan.security.audit.NullAuditLogger
1.9.4. Memcached protocol server is deprecated
The Memcached protocol server is now deprecated and will be removed in a future release. This is being done because Infinispan only implements the very dated text-only protocol instead of the binary protocol which means no security (authentication / encryption), no support for some new Memcached features and no integration with Infinispan features like single-port. If someone in the community wishes to implement the binary protocol, we would revert the decision.
1.9.5. Hot Rod client default mechanism changed to SCRAM-SHA-512
The default Hot Rod client authentication mechanism has been changed from DIGEST-MD5
to SCRAM-SHA-512
.
If you are using property
user realms, you must make sure you are using plain-text
storage.
1.9.6. Transactions
The Map implementation EntryVersionsMap
has been removed and replaced with a Map<Object, IncrementalEntryVersion>
.
If the old EntryVersionsMap#merge
logic is required, it can be replaced with org.infinispan.transaction.impl.WriteSkewHelper#mergeEntryVersions
,
however users should not rely on this code as it could be removed in the future without notice,
1.10. Upgrading from 9.4 to 10.0
1.10.1. Marshalling
The internal marshalling capabilities of Infinispan have undergone a significant refactoring in 10.0. The marshalling of internal Infinispan objects and user objects are now truly isolated. This means that it’s now possible to configure Marshaller implementations in embedded mode or on the server, without having to handle the marshalling of Infinispan internal classes. Consequently, it’s possible to easily change the marshaller implementation, in a similar manner to how users of the HotRod client are accustomed.
As a consequence of the above changes, the default marshaller used for marshalling user types is no longer based upon JBoss Marshalling. Instead
we now utilise the ProtoStream library to store user types in the language agnostic Protocol Buffers
format. It is still possible to utilise the old default, JBossUserMarshaller,
however it’s necessary to add the org.infinispan:infinispan-jboss-marshalling
artifact to your application’s classpath.
Externalizer Deprecations
The following interfaces/annotations have been deprecated as a consequence of the marshalling refactoring:
For cluster communication any configured Externalizer's are still utilised to marshall objects, however they are ignored when persisting data to cache stores unless the JBossUserMarshaller is explicitly configured via the global SerializationConfiguration.
It’s highly recommended to migrate from the old Externalizer and JBoss marshalling approach to the new ProtoStream based marshalling, as the interfaces listed above and the JBossUserMarshaller implementation will be removed in future versions.
Store Migration
Unfortunately, the extensive marshalling changes mean that the binary format used by Infinispan stores in 9.4.x
is no
longer compatible with 10.0.x
. Therefore, it’s necessary for any existing stores to be migrated to the new format via
the StoreMigrator tool.
Whilst we regret that 9.4.x stores are no longer binary compatible, these extensive changes should ensure binary compatibility across future major versions. |
Store Defaults
Stores now default to being segmented if the property is not configured. Some stores do not support being segmented, which will result in a configuration exception being thrown at startup. The moving forward position is to use segmented stores when possible to increase cache wide performance and reduce memory requirements for various operations including state transfer.
The file based stores (SingleFileStore and SoftIndexFileStore) both support being segmented, but their current implementation requires opening file descriptors based on how many segments there are. This may cause issues in some configurations and users should be aware. Infinispan will print a single WARN message when such a configuration is found.
1.10.2. CacheContainterAdmin
Caches created through the CacheContainerAdmin API will now be PERMANENT
by default. Use the VOLATILE
flag to obtain the previous behaviour.
1.10.3. Hot Rod 3.0
Older versions of the Hot Rod protocol treated expiration values greater than the number of milliseconds in 30 days as Unix time. Starting with Hot Rod 3.0 this adjustment no longer happens and expiration is taken literally.
1.10.4. Total Order transaction protocol is deprecated
Total Order transaction protocol is going to be removed in a future release. Use the default protocol (2PC).
1.10.5. Removed the infinispan.server.hotrod.workerThreads system property
The infinispan.server.hotrod.workerThreads
property was introduced as a hack to work around the fact that the configuration did not expose it.
The property has been removed and endpoint worker threads must now be exclusively configured using the worker-threads
attribute.
1.10.6. Removed AtomicMap and FineGrainedAtomicMap
AtomicMapLookup, AtomicMap and FineGrainedAtomicMap have been removed. Please see FunctionalMaps or Cache#Merge for similar functionality.
1.10.7. Removed Delta and DeltaAware
The previously deprecated Delta and DeltaAware interfaces have been removed.
1.10.9. Removed the implicit default cache
The default cache must now be named explicitly via the GlobalConfigurationBuilder#defaultCacheName() method.
1.10.10. Removed DistributedExecutor
The previously deprecated DistributedExecutor is now removed. References should be updated to use ClusterExecutor.
1.10.11. Removed the Tree module
TreeCache has been unsupported for a long time and was only intended as a quick stopgap for JBossCache users. The module has now been removed completely.
1.10.12. The JDBC PooledConnectionFactory now utilises Agroal
Previously the JDBC PooledConnectionFactory provided c3p0 and HikariCP based connection pools.
From 10.0 we only provide a PooledConnectionFactory based upon the Agroal project.
This means that it is no longer possible to utilise c3p0.properties
and hikari.properties
files to configure the pool,
instead an agroal compatiblet properties file can be provided.
1.10.13. XML configuration changes
Several configuration elements and attributes that were deprecated since 9.0 have been removed:
-
<eviction>
- replaced withmemory
-
<versioning>
- automatically enabled -
<data-container>
- no longer customizable -
deadlock-detection-spin
- always disabled -
write-skew
- enabled automatically
The xsite state transfer chunk size (<backup><state-transfer chunk-size="X"/></backup>
) can no longer be >= 0
,
same as the regular state transfer chunk size.
Previously a value <= 0 would transfer the entire cache in a single batch, which is almost always a bad idea.
1.10.14. RemoteCache Changes
Marshalling Changes
The default marshaller is no longer GenericJbossMarshaller. We now utilise the ProtoStream
library as the default. If Java Serialization is required by clients, we strongly recommend utilising the
link:JavaSerializationMarshaller instead.
However if the GenericJbossMarshaller must be used, it’s necessary to add the org.infinispan:infinispan-jboss-marshalling
artifact to your client’s classpath and for the GenericJbossMarshaller
to be configured as the marshaller.
The getBulk methods have been removed
The getBulk method is an expensive method as it requires holding all keys in memory at once and requires a possibly very single result to populate it. The new retrieveEntries, entrySet, keySet and values methods handle this in a much more efficient way. Therefore the getBulk methods have been removed in favor of them.
1.10.15. Persistence changes
-
File-based cache stores (SingleFileStore, SoftIndexFileStore, RocksDBStore) filesystem layout has been normalized so that they will use the
GlobalStateConfiguration
persistent location as a default location. Additionally, all stores will now use the cache name as part of the data file/directory naming allowing multiple stores to avoid conflicts and ambiguity. -
The CLI loader (
infinispan-persistence-cli
) has been removed. -
The LevelDB store (
infinispan-cachestore-leveldb
) has been removed. Use the RocksDB store instead, as it is fully backwards compatible. -
The deprecated
singleton
store configuration option and the wrapper classSingletonCacheWriter
have been removed.Using
shared=true
is enough, as only the primary owner of each key will write to a shared store.
1.10.16. Client/Server changes
-
The Hot Rod client and server only support protocol versions 2.0 and higher. Support for Hot Rod versions 1.0 to 1.3 has been dropped.
1.10.17. SKIP_LISTENER_NOTIFICATION flag
SKIP_LISTENER_NOTIFICATION
notification flag has been added in the hotrod client.
This flag only works when the client and the server version is 9.4.15 or higher.
Spring Session integration uses this flag when a session id has changed.
If you are using Spring Session with Infinispan 9.4, consider upgrading the client and the server.
1.10.18. performAsync header removed from REST
The performAsync
header was removed from the REST server. Clients that want to perform async operations with
the REST server should manage the request and response on their side to avoid blocking.
1.10.19. REST status code change
REST operations that don’t return resources and are used with PUT
, POST
and DELETE
methods now return status 204
(No content) instead of 200
.
1.10.20. Default JGroups stacks in the XML configuration
With the introduction of inline XML JGroups stacks in the configuration, two default stacks are always enabled: udp
and tcp
.
If you are declaring your own stacks with the same names, an exception reporting the conflict will be thrown. Simply rename
your own configurations to avoid the conflict.
1.10.21. JGroups legacy S3_PING replaced with aws.S3_PING
Because of changes in AWS’s access policy regarding signatures, legacy S3_PING will not work in newer regions and will stop working in older regions too. For this reason, you should migrate to using aws.S3_PING instead.
1.10.22. Cache and Cache Manager Listeners can now be configured to be non blocking
Listeners in the past that were sync, always ran in the thread that caused the event. We now allow a Listener method to be non-blocking in that it will still fire in the original thread, under the assumption that it will return immediately. Please read the Listener Javadoc for information and examples on this.
1.10.23. Distributed Streams operations no longer support null values
Distributed Streams has parts rewritten to utilize non blocking reactive streams based operations. As such null values are not supported as values from operations as per the reactive streams spec. Please utilize other means to denote a null value.
1.10.24. Removed the infinispan-cloud module
The infinispan-cloud module has been removed and the kubernetes
, ec2
, google
and azure
default configurations have been included in infinispan-core
and can be
referenced as default named JGroups configurations.
1.10.25. Removed experimental flag GUARANTEED_DELIVERY
Almost as soon as GUARANTEED_DELIVERY was added, UNICAST3 and NAKACK2.resend_last_seqno removed the need for it. It was always documented as experimental, so we removed it without deprecation and we also removed the RSVP protocol from the default JGroups stacks.
1.10.26. Cache Health
The possible statuses of the cache health are now HEALTHY, HEALTHY_REBALANCING and DEGRADED to better
reflect the fact that rebalancing
doesn’t mean a cluster is unhealthy.
1.10.27. Multi-tenancy
When using multi-tenancy in the WildFly based server, it’s necessary to specify the content-path
for each of the REST connectors, to match the prefix
element under multi-tenancy\rest\prefix
.
1.11. Upgrading from 9.3 to 9.4
1.11.1. Client/Server changes
Compatibility mode deprecation
Compatibility mode has been deprecated and will be removed in the next Infinispan version.
To use a cache from multiple endpoints, it is recommended to store data in binary format and to configure the MediaType for keys and values.
If storing data as unmarshalled objects is still desired, the equivalent of compatibility mode is to configure keys and values to store object content:
<encoding>
<key media-type="application/x-java-object"/>
<value media-type="application/x-java-object"/>
</encoding>
Memcached storage
For better interoperability between endpoints, the Memcached server no longer stores keys as java.lang.String
, but as UTF-8 byte[]
.
If using memcached, it’s recommended to run a rolling upgrade from 9.3 to store data in the new format, or reload the data in the cache.
Scripts Response
Distributed scripts with text-based data type no longer return null
when the result from each server is null. The response is now a JSON array with each individual result, e.g. "[null, null]"
WebSocket endpoint removal
The WebSocket endpoint has been unmaintained for several years. It has been removed.
Hot Rod client connection pool properties
Since the Hot Rod client was overhauled in 9.2, the way the connection pool configuration is handled has changed. Infinispan 9.4 introduces a new naming scheme for the connection pool properties which deprecates the old commons-pool names. For a complete reference of the available configuration options for the properties file please refer to remote client configuration javadoc.
1.11.2. Persistence Changes
Shared and Passivation
A store cannot be configured as both shared and having passivation enabled. Doing so can cause data inconsistencies as there is no way to synchronize data between all the various nodes. As such this configuration will now cause a startup exception. Please update your configuration as appropriate.
1.12. Upgrading from 9.2 to 9.3
1.12.1. AdvancedCacheLoader changes
The AdvancedCacheLoader SPI has been enhanced to provide an alternative method to process and instead allows reactive streams based publishKeys and publishEntries methods which provide benefits in performance, threading and ease of use. Note this change will only affect you if you wish take advantage of it in any custom CacheLoaders you may have implemented.
1.12.2. Partition Handling Configuration
In 9.3 the default MergePolicy is now MergePolicy.NONE, opposed to MergePolicy.PREFERRED_ALWAYS.
1.12.3. Stat Changes
We have reverted the stat changes introduced in 9.1, so average values for read, write and removals are once again returned as milliseconds.
1.12.4. Event log changes
Several new event log messages have been added, and one message has been removed (ISPN100013).
1.12.5. Max Idle Expiration Changes
The max idle entry expiration information is sent between owners in the cluster. However when an entry expires via max idle on a given node, this was not replicated (only removing it locally). Max idle has been enhanced to now expire an entry across the entire cluster, instead of per node. This includes ensuring that max idle expiration is applied across all owners (meaning if another node has accessed the entry within the given time it will prevent that entry from expiring on other nodes that didn’t have an access).
Max idle in a transactional clustered cache does not remove expired entries on access (although it will not be returned). These entries are only removed via the expiration reaper.
Iteration in a clustered cache will still show entries that are expired via maxIdle to ensure good performance, but could be removed at any point due to expiration reaper.
1.12.6. WildFly Modules
The Infinispan WildFly modules are now located in the system/add-ons/ispn
dir as per the
WildFly module conventions.
1.12.7. Deserialization Allow list
Deserialization of content sent by clients to the server are no longer allowed by default. This applies to JSON, XML, and marshalled byte[] that, depending on the cache configuration, will cause the server to convert it to Java Objects either to store it or to perform any operation that cannot be done on a byte[] directly.
The deserialization needs to be enabled using system properties, ether by class name or regular expressions:
// Comma separated list of fully qualified class names
-Dinfinispan.deserialization.allowlist.classes=java.time.Instant,com.myclass.Entity
// Regex expression
-Dinfinispan.deserialization.allowlist.regexps=.*
1.13. Upgrading from 9.0 to 9.1
1.13.1. Kubernetes Ping changes
The latest version of Kubernetes Ping uses unified environmental variables for both Kubernetes and OpenShift.
Some of them were shortened for example OPENSHIFT_KUBE_PING_NAMESPACE
was changed to KUBERNETES_NAMESPACE
.
Please refer to Kubernetes Ping documentation.
1.13.2. Stat Changes
Average values for read, write and removals are now returned in Nanoseconds, opposed to Milliseconds.
1.13.3. (FineGrained)AtomicMap reimplemented
Infinispan now contains a new implementation of both AtomicMap
and FineGrainedAtomicMap
, but the semantics has been preserved. The new implementation does not use DeltaAware
interface but the Functional API instead.
There are no changes needed for AtomicMap
, but it now supports non-transactional use case as well.
FineGrainedAtomicMap
now uses the Grouping API and therefore you need to enable groups in configuration. Also it holds entries as regular cache entries, plus one cache entry for cached key set (the map itself). Therefore the cache size or iteration/streaming results may differ. Note that fine grained atomic maps are still supported on transactional caches only.
1.13.4. RemoteCache keySet/entrySet/values
RemoteCache now implements all of the collection backed methods from Map
interface.
Previously keySet
was implemented, however it was a deep copy. This has now changed
and it is a backing set. That is that the set retrieves the updated values on each
invocation or updates to the backing remote cache for writes. The entrySet and values
methods are also now supported as backing variants as well.
If you wish to have a copy like was provided before it is recommended to copy the contents into a in memory local set such as
Set<K> keysCopy = remoteCache.keySet().stream().collect(Collectors.toSet());
1.13.5. DeltaAware deprecated
Interfaces DeltaAware
, Delta
and CopyableDeltaAware
have been deprecated. Method AdvancedCache.applyDelta()
has been deprecated and the implementation does not allow custom set of locked keys. ApplyDeltaCommand
and its uses in interceptor stack are deprecated.
Any partial updates to an entry should be replaced using the Functional API.
1.13.6. Infinispan Query Configuration
The configuration property directory_provider
now accepts a new value local-heap
.
This value replaces the now deprecated ram
, and as its predecessor will cause the index to be stored in a org.apache.lucene.store.RAMDirectory
.
The configuration value ram
is still accepted and will have the same effect, but failing to replace ram
with local-heap
will cause a warning to be logged.
We suggest to perform this replacement, as the ram
value will no longer be recognised by Infinispan in a future version.
This change was made as the team believes the local-heap
name better expresses the storage model, especially as this storage method will not allow real-time replication of the index across multiple nodes.
This index storage option is mostly useful for single node integration testing of the query functionality.
1.13.7. Store Batch Size Changes
TableManipulation::batchSize and JpaStoreConfiguration::batchSize have been deprecated and replaced by the higher level AbstractStoreConfiguration::maxBatchSize.
1.13.8. Partition Handling changes
In Infinispan 9.1 partition handling has been improved to allow for automatic conflict resolution on partition merges. Consequently, PartitionHandlingConfiguration::enabled has been deprecated in favour of PartitionHandlingConfiguration::whenSplit. Configuring whenSplit to the DENY_READ_WRITES strategy is equivalent to setting enabled to true, whilst specifying ALLOW_READ_WRITES is equivalent to disabling partition handling (default).
Furthermore, during a partition merge with ALLOW_READ_WRITES, the default EntryMergePolicy is MergePolicies.PREFERRED_ALWAYS which provides a deterministic way of tie-breaking CacheEntry conflicts. If you require the old behaviour, simply set the merge-policy to null.
1.14. Upgrading from 8.x to 9.0
1.14.1. Default transaction mode changed
The default configuration for transactional caches changed from READ_COMMITTED
and OPTIMISTIC
locking to REPEATABLE_READ
and OPTIMISTIC
locking with write-skew
enabled.
Also, using the REPEATABLE_READ
isolation level and OPTIMISTIC
locking without write-skew
enabled is no longer allowed.
To help with the upgrade, write-skew
will be automatically enabled in this case.
The following configuration has been deprecated:
-
write-skew
: as said, it is automatically enabled. -
<versioning>
and its attributes. It is automatically enabled and configured when needed.
1.14.2. Removed eagerLocking and eagerLockingSingleNode configuration settings
Both were deprecated since version 5.1.
eagerLocking(true)
can be replaced with lockingMode(LockingMode.PESSIMISTIC)
,
and eagerLockingSingleNode()
does not need a replacement because it was a no-op.
1.14.3. Removed async transaction support
Asynchronous mode is no longer supported in transactional caches and it will automatically use the synchronous cache mode. In addition, the second phase of a transaction commit is done synchronously. The following methods (and related) are deprecated:
-
TransactionConfigurationBuilder.syncCommitPhase(boolean)
-
TransactionConfigurationBuilder.syncRollbackPhase(boolean)
1.14.4. Deprecated all the dummy related transaction classes.
The following classes have been deprecated and they will be removed in the future:
-
DummyBaseTransactionManager
: replaced byEmbeddedBasedTransactionManager
; -
DummyNoXaXid
andDummyXid
: replaced byEmbeddedXid
; -
DummyTransaction
: replaced byEmbeddedTransaction
; -
DummyTransactionManager
: replaced byEmbeddedTransactionManager
; -
DummyTransactionManagerLookup
andRecoveryDummyTransactionManagerLookup
: replaced byEmbeddedTransactionManagerLookup
; -
DummyUserTransaction
: replaced byEmbeddedUserTransaction
;
1.14.5. Clustering configuration changes
The mode
attribute in the XML declaration of clustered caches is no longer mandatory. It defaults to SYNC.
1.14.6. Default Cache changes
Up to Infinispan 8.x, the default cache always implicitly existed, even if not declared in the XML configuration. Additionally, the default cache configuration affected all other cache configurations, acting as some kind of base template. Since 9.0, the default cache only exists if it has been explicitly configured. Additionally, even if it has been specified, it will never act as base template for other caches.
1.14.7. Marshalling Enhancements and Store Compatibility
Internally Infinispan 9.x has introduced many improvements to its marshalling codebase in order to improve performance and allow for greater flexibility. Consequently, data marshalled and persisted by Infinispan 8.x is no longer compatible with Infinispan 9.0. To aid you in migrating your existing stores to 9.0, we have provided a Store Migrator, however at present this only allows the migration of JDBC stores.
1.14.8. New Cloud module for library mode
In Infinispan 8.x, cloud related configuration were added to infinispan-core
module. Since 9.0 they were moved to infinispan-cloud
module.
1.14.9. Entry Retriever is now removed
The entry retriever feature has been removed. Please update to use the new Streams feature detailed in the User Guide.
The org.infinispan.filter.CacheFilters
class can be used to convert KeyValueFilter
and Converter
instances
into proper Stream operations that are able to be marshalled.
1.14.10. Map / Reduce is now removed
Map reduce has been removed in favor of the new Streams feature which should provide more features and performance. There are no bridge classes to convert to the new streams and all references must be rewritten.
1.14.12. Function classes have moved packages
The class SerializableSupplier
has moved from the org.infinispan.stream
package to the org.infinispan.util.function
package.
The class CloseableSupplier
has moved from the org.infinispan.util
package to the org.infinispan.util.function
package.
The classes TriConsumer
, CloseableSupplier
, SerializableRunnable
,
SerializableFunction
& SerializableCallable
have all been moved from
the org.infinispan.util
package to the org.infinispan.util.function
package.
1.14.13. SegmentCompletionListener interface has moved
The interface SegmentCompletionListener
has moved from the interface
org.infinispan.CacheStream
to the new org.infinispan.BaseCacheStream
.
1.14.14. Spring module dependency changes
All Infinispan, Spring and Logger dependencies are now in the provided
scope. One can decide whether to use small jars or uber jars but they need to be added to the classpath of the application.
It also gives one freedom in choosing Spring (or Spring Boot) version.
Here is an example:
<dependencies>
<dependency>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-embedded</artifactId>
</dependency>
<dependency>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-spring5-embedded</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session</artifactId>
</dependency>
</dependencies>
Additionally there is no Logger implementation specified (since this may vary depending on use case).
1.14.15. Total order executor is now removed
The total order protocol now uses the remote-command-executor
. The attribute total-order-executor
in <container>
tag is removed.
1.14.16. HikariCP is now the default implementation for JDBC PooledConnectionFactory
HikariCP offers superior performance to c3p0 and is now the default implementation.
Additional properties for HikariCP can be provided by placing a hikari.properties
file on the classpath or by specifying
the path to the file via PooledConnectionFactoryConfiguration.propertyFile
or properties-file
in the connection pool’s
xml config. N.B. a properties file specified explicitly in the configuration is loaded instead of the hikari.properties
file on the class path and Connection pool characteristics which are explicitly set in PooledConnectionFactoryConfiguration
always override the values loaded from a properties file.
Support for c3p0 has been deprecated and will be removed in a future release. Users can force c3p0 to be utilised as before
by providing the system property -Dinfinispan.jdbc.c3p0.force=true
.
1.14.17. RocksDB in place of LevelDB
The LevelDB cache store was replaced with a RocksDB. RocksDB is a fork of LevelDB which provides superior performance in high concurrency scenarios. The new cache store can parse old LevelDB configurations but will always use the RocksDB implementation.
1.14.18. JDBC Mixed and Binary stores removed
The JDBC Mixed and Binary stores have been removed due to the poor performance associated with storing entries in buckets. Storing entries in buckets is non-optimal as each read/write to the store requires an existing bucket for a given hash to be retrieved, deserialised, updated, serialised and then re-inserted back into the db. If you were previously using one of the removed stores, we have provided a migrator tool to assist in migrating data from an existing binary table to a JDBC string based store.
1.14.19. @Store Annotation Introduced
A new annotation, @Store
, has been added for persistence stores. This allows a store’s properties to be
explicitly defined and validated against the provided store configuration. Existing stores should be updated to use this
annotation and the store’s configuration class should also declare the @ConfigurationFor
annotation. If neither of these
annotations are present on the store or configuration class, then a your store will continue to function as before, albeit
with a warning that additional store validation cannot be completed.
1.14.20. Server authentication changes
The no-anonymous policy is now automatically enabled for Hot Rod authentication unless explicitly specified.
1.14.21. Package org.infinispan.util.concurrent.jdk8backported has been removed
1.14.22. Store as Binary is deprecated
Store as Binary configuration is now deprecated and will be removed in a future release. This is replaced by the new memory configuration.
1.14.23. DataContainer collection methods are deprecated
The keySet, entrySet and values methods on DataContainer have been deprecated. These behavior of these methods are very inconsistent and will be removed later. It is recommended to update references to use iterator or iteratorIncludingExpired methods instead.
1.15. Upgrading from 8.1 to 8.2
1.16. Upgrading from 8.x to 8.1
1.17. Upgrading from 7.x to 8.0
1.17.1. Configuration changes
Removal of Async Marshalling
Async marshalling has been entirely dropped since it was never reliable enough. The "async-marshalling" attribute has been removed from the 8.0 XML schema and will be ignored when parsing 7.x configuration files. The programmatic configuration methods related to asyncMarshalling/syncMarshalling are now deprecated and have no effect aside from producing a WARN message in the logs.
Reenabling of isolation level configurations in server
Because of the inability to configure write skew in the server, the isolation level attribute was ignored and defaulted to READ_COMMITTED. Now, when enabling REPEATABLE_READ together with optimistic locking, write skew is enabled by default in local and synchronous configurations.
1.18. Upgrading from 6.0 to 7.0
1.18.1. API Changes
Cache Loader
To be more inline with JCache and java.util.collections interfaces we have changed the first argument type for the CacheLoader.load & CacheLoader.contains methods to be Object from type K.
Cache Writer
To be more inline with JCache and java.util.collections interfaces we have changed the first argument type for the CacheWriter.delete method to be Object from type K.
Filters
Over time Infinispan added 2 interfaces with identical names and almost identical methods. The org.infinispan.notifications.KeyFilter and org.infinispan.persistence.spi.AdvancedCacheLoader$KeyFilter interfaces.
Both of these interfaces are used for the sole purpose of filtering an entry by it’s given key. Infinispan 7.0 has also introduced the KeyValueFilter which is similar to both but also can filter on the entries value and/or metadata.
As such all of these classes have been moved into a new package org.infinispan.filter and all of their related helper classes.
The new org.infinispan.filter.KeyFilter interface has replaced both of the previous interfaces and all previous references use the new interface.
1.19. Upgrading from 5.3 to 6.0
1.19.1. Declarative configuration
In order to use all of the latest features, make sure you change the namespace declaration at the top of your XML configuration files as follows:
<infinispan xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:infinispan:config:6.0 https://infinispan.org/schemas/infinispan-config-6.0.xsd" xmlns="urn:infinispan:config:6.0">
...
</infinispan>
1.19.2. Deprecated API removal
-
Class
org.infinispan.persistence.remote.wrapperEntryWrapper
. -
Method
ObjectOutput startObjectOutput(OutputStream os, boolean isReentrant)
from classorg.infinispan.commons.marshall.StreamingMarshaller
. -
Method
CacheEntry getCacheEntry(Object key, EnumSet<Flag> explicitFlags, ClassLoader explicitClassLoader)
from classorg.infinispan.AdvancedCache
. Please use instead:AdvanceCache.withFlags(Flag… flags).with(ClassLoader classLoader).getCacheEntry(K key)
. -
Method
AtomicMap<K, V> getAtomicMap(Cache<MK, ?> cache, MK key, FlagContainer flagContainer)
from classorg.infinispan.atomic.AtomicMapLookup
. Please use insteadAtomicMapLookup.getAtomicMap(cache.getAdvancedCache().withFlags(Flag… flags), MK key)
. -
Package
org.infinispan.config
(and all methods involving the old configuration classes). All methods removed has an overloaded method which receives the new configuration classes as parameters.
This only affects the programmatic configuration. |
-
Class
org.infinispan.context.FlagContainer
. -
Method
boolean isLocal(Object key)
from classorg.infinispan.distribution.DistributionManager
. Please use insteadDistributionManager.getLocality(Object key)
. -
JMX operation
void setStatisticsEnabled(boolean enabled)
from classorg.infinispan.interceptors.TxInterceptor
Please use instead thestatisticsEnabled
attribute. -
Method
boolean delete(boolean synchronous)
from classorg.infinispan.io.GridFile
. Please use insteadGridFile.delete()
. -
JMX attribute
long getLocallyInterruptedTransactions()
from classorg.infinispan.util.concurrent.locks.DeadlockDetectingLockManager
.
1.20. Upgrading from 5.2 to 5.3
1.20.1. Declarative configuration
In order to use all of the latest features, make sure you change the namespace declaration at the top of your XML configuration files as follows:
<infinispan xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:infinispan:config:5.2 https://infinispan.org/schemas/infinispan-config-5.2.xsd" xmlns="urn:infinispan:config:5.3">
...
</infinispan>
1.21. Upgrading from 5.1 to 5.2
1.21.1. Declarative configuration
In order to use all of the latest features, make sure you change the namespace declaration at the top of your XML configuration files as follows:
<infinispan xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:infinispan:config:5.2 https://infinispan.org/schemas/infinispan-config-5.2.xsd" xmlns="urn:infinispan:config:5.2">
...
</infinispan>
1.21.2. Transaction
The default transaction enlistment model has changed ( ISPN-1284 ) from XAResource
to Synchronization
.
Also now, if the XAResource
enlistment is used, then recovery is enabled by default.
In practical terms, if you were using the default values, this should not cause any backward compatibility issues but an increase in performance of about 5-7%. However in order to use the old configuration defaults, you need to configure the following:
<transaction useSynchronization="false">
<recovery enabled="false"/>
</transaction>
or the programmatic configuration equivalent:
ConfigurationBuilder builder = new ConfigurationBuilder();
builder.transaction().useSynchronization(false).recovery().enabled(false)
1.22. Upgrading from 5.0 to 5.1
1.22.1. API
The cache and Cache Manager hierarchies have changed slightly in 5.1 with the introduction of
BasicCache
and
BasicCacheContainer
, which are parent classes of existing
Cache
and
CacheContainer
classes respectively. What’s important is that Hot Rod clients must now code
against BasicCache
and BasicCacheContainer
rather than Cache
and CacheContainer
.
So previous code that was written like this will no longer compile.
import org.infinispan.Cache;
import org.infinispan.manager.CacheContainer;
import org.infinispan.client.hotrod.RemoteCacheManager;
...
CacheContainer cacheContainer = new RemoteCacheManager();
Cache cache = cacheContainer.getCache();
Instead, if Hot Rod clients want to continue using interfaces higher up the hierarchy from the remote cache/container classes, they’ll have to write:
import org.infinispan.BasicCache;
import org.infinispan.manager.BasicCacheContainer;
import org.infinispan.client.hotrod.RemoteCacheManager;
...
BasicCacheContainer cacheContainer = new RemoteCacheManager();
BasicCache cache = cacheContainer.getCache();
However, previous code that interacted against the RemoteCache
and RemoteCacheManager
will work as it used to:
import org.infinispan.client.hotrod.RemoteCache;
import org.infinispan.client.hotrod.RemoteCacheManager;
...
RemoteCacheManager cacheContainer = new RemoteCacheManager();
RemoteCache cache = cacheContainer.getCache();
1.22.2. Eviction and Expiration
-
The eviction XML element no longer defines the
wakeUpInterval
attribute. This is now configured via theexpiration
element:
<expiration wakeUpInterval="60000"... />
Eviction’s maxEntries
is used as guide for the entire cache, but eviction happens on a per cache segment, so when the segment is full, the segment is evicted. That’s why maxEntries
is a theoretical limit but in practical terms, it’ll be a bit less than that. This is done for performance reasons.
1.22.3. Transactions
-
A cache marked as
TRANSACTIONAL
cannot be accessed outside of a transaction, and aNON_TRANSACTIONAL
cache cannot be accessed within a transaction. In 5.0, a transactional cache would support non-transactional calls as well. This change was done to be in-line with expectations set out in JSR-107 as well as to provide more consistent behavior. -
In 5.0, commit and rollback phases were asynchronous by default. Starting with 5.1, these are now synchronous by default, to provide the guarantees required by a single lock-owner model.
1.22.4. State transfer
One of the big changes we made in 5.1 was to use the same push-based state transfer we introduced in 5.0 both for rehashing in distributed mode and for state retrieval in replicated mode. We even borrow the consistent hash concept in replicated mode to transfer state from all previous cache members at once in order to speed up transfer.
As a consequence we’ve unified the state transfer configuration as well, there is now a stateTransfer
element containing a simplified state transfer configuration. The corresponding attributes in the stateRetrieval
and hash
elements have been deprecated, as have been some attributes that are no longer used.
1.22.5. Configuration
If you use XML to configure Infinispan, you shouldn’t notice any change, except a much faster startup, courtesy of the StAX based parser. However, if you use programmatic configuration, read on for the important differences.
Configuration is now packaged in org.infinispan.configuration
, and you must use a fluent, builder style:
Configuration c1 = new ConfigurationBuilder()
// Adjust any configuration defaults you want
.clustering()
.l1()
.disable()
.mode(DIST_SYNC)
.hash()
.numOwners(5)
.build();
-
The old javabean style configuration is now deprecated and will be removed in a later version.
-
Configuration properties which can be safely changed at runtime are mutable, and all others are immutable.
-
To copy a configuration, use the
read()
method on the builder, for example:
Configuration c2 = new ConfigurationBuilder()
// Read in C1 to provide defaults
.read(c1)
.clustering()
.l1()
.enable()
// This cache is DIST_SYNC, will have 5 owners, with L1 cache enabled
.build();
This completely replaces the old system of defining a set of overrides on bean properties. Note that this means the behaviour of Infinispan configuration is somewhat different when used programmatically. Whilst before, you could define a default configuration, and any overrides would be applied on top of your defaults when defined, now you must explicitly read in your defaults to the builder. This allows for much greater flexibility in your code (you can have a as many "default" configurations as you want), and makes your code more explicit and type safe (finding references works).
The schema is unchanged from before. Infinispan 4.0 configurations are currently not being parsed. To upgrade, just change the schema definition from:
<infinispan
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:infinispan:config:4.1 https://infinispan.org/schemas/infinispan-config-4.1.xsd"
xmlns="urn:infinispan:config:4.1">
to
<infinispan
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:infinispan:config:5.1 https://infinispan.org/schemas/infinispan-config-5.1.xsd"
xmlns="urn:infinispan:config:5.1">
The schema documentation has changed format, as it is now produced using the standard tool xsddoc
. This should be a significant improvement, as better navigation is offered. Some elements and attributes are missing docs right now, we are working on adding this. As an added benefit, your IDE should now show documentation when an xsd referenced (as above)
We are in the process of adding in support for this configuration style for modules (such as cache stores). In the meantime, please use the old configuration or XML if you require support for cache store module configuration.
1.22.6. Flags and ClassLoaders
The Flags
and ClassLoader
API has changed. In the past, the following would work:
cache.withFlags(f1, f2); cache.withClassLoader(cl); cache.put(k, v);
In 5.1.0, these withX()
methods return a new instance and not the cache itself, so thread locals are avoided and the code above will not work. If used in a fluent manner however, things still work:
cache.withFlags(f1, f2).withClassLoader(cl).put(k, v);
The above pattern has always been the intention of this API anyway.
2. Performing rolling upgrades for Infinispan Server clusters
Perform rolling upgrades of your Infinispan clusters to change between versions without downtime or data loss and migrate data over the Hot Rod protocol.
2.1. Setting up target Infinispan clusters
Create a cluster that uses the Infinispan version to which you plan to upgrade and then connect the source cluster to the target cluster using a remote cache store.
-
Install Infinispan Server nodes with the desired version for your target cluster.
Ensure the network properties for the target cluster do not overlap with those for the source cluster. You should specify unique names for the target and source clusters in the JGroups transport configuration. Depending on your environment you can also use different network interfaces and port offsets to separate the target and source clusters. |
-
Create a remote cache store configuration, in JSON format, that allows the target cluster to connect to the source cluster.
Remote cache stores on the target cluster use the Hot Rod protocol to retrieve data from the source cluster.
{ "remote-store": { "cache": "myCache", "shared": true, "raw-values": true, "security": { "authentication": { "digest": { "username": "username", "password": "changeme", "realm": "default" } } }, "remote-server": [ { "host": "127.0.0.1", "port": 12222 } ] } }
-
Use the Infinispan Command Line Interface (CLI) or REST API to add the remote cache store configuration to the target cluster so it can connect to the source cluster.
-
CLI: Use the
migrate cluster connect
command on the target cluster.[//containers/default]> migrate cluster connect -c myCache --file=remote-store.json
-
REST API: Invoke a POST request that includes the remote store configuration in the payload with the
rolling-upgrade/source-connection
method.POST /rest/v2/caches/myCache/rolling-upgrade/source-connection
-
-
Repeat the preceding step for each cache that you want to migrate.
-
Switch clients over to the target cluster, so it starts handling all requests.
-
Update client configuration with the location of the target cluster.
-
Restart clients.
-
If you need to migrate Indexed caches you must first migrate the internal |
2.2. Synchronizing data to target clusters
When you set up a target Infinispan cluster and connect it to a source cluster, the target cluster can handle client requests using a remote cache store and load data on demand. To completely migrate data to the target cluster, so you can decommission the source cluster, you can synchronize data. This operation reads data from the source cluster and writes it to the target cluster. Data migrates to all nodes in the target cluster in parallel, with each node receiving a subset of the data. You must perform the synchronization for each cache that you want to migrate to the target cluster.
-
Set up a target cluster with the appropriate Infinispan version.
-
Start synchronizing each cache that you want to migrate to the target cluster with the Infinispan Command Line Interface (CLI) or REST API.
-
CLI: Use the
migrate cluster synchronize
command.migrate cluster synchronize -c myCache
-
REST API: Use the
?action=sync-data
parameter with a POST request.POST /rest/v2/caches/myCache?action=sync-data
When the operation completes, Infinispan responds with the total number of entries copied to the target cluster.
-
-
Disconnect each node in the target cluster from the source cluster.
-
CLI: Use the
migrate cluster disconnect
command.migrate cluster disconnect -c myCache
-
REST API: Invoke a DELETE request.
DELETE /rest/v2/caches/myCache/rolling-upgrade/source-connection
-
After you synchronize all data from the source cluster, the rolling upgrade process is complete. You can now decommission the source cluster.
3. Patching Infinispan Server installations
Install and manage patches for Infinispan Server installations.
You can apply patches to multiple Infinispan Server installations with different versions to upgrade to a desired target version. However, patches do not take effect if Infinispan Server is running. If you want to upgrade Infinispan clusters without downtime, create a new cluster with the target version and perform a rolling upgrade to that version instead of patching.
3.1. Infinispan Server patches
Infinispan Server patches are .zip
archives that contain artifacts that you can apply to your $ISPN_HOME
directory to fix issues and add new features.
Patches also provide a set of rules for Infinispan Server to modify your installation. When you apply patches, Infinispan overwrites some files and removes others, depending on if they are required for the target version.
However, Infinispan does not make any changes to configuration files that you have created or modified when applying a patch. Server patches do not modify or replace any custom configuration or data.
3.2. Creating Infinispan Server patches
You can create patches for Infinispan Server from an existing installation.
You can create patches for Infinispan Server starting from version 10.1.7. You can patch any 10.1 or later server installation. However you cannot patch 9.4.x or earlier servers with 10.1.7 or later.
You can also create patches that either upgrade or downgrade the Infinispan Server version. For example, you can create a patch from version 10.1.7 and use it to upgrade version 10.1.5 or downgrade version 11.0.0.
-
Navigate to
$ISPN_HOME
for a Infinispan Server installation that has the target version for the patch you want to create. -
Start the CLI.
bin/cli.sh
-
Use the
patch create
command to generate a patch archive and include the-q
option with a meaningful qualifier to describe the patch.patch create -q "this is my test patch" path/to/mypatch.zip \ path/to/target/server/home path/to/source/server/home
The preceding command generates a
.zip
archive in the specified directory. Paths are relative to$ISPN_HOME
for the target server.Create single patches for multiple different Infinispan versions, for example:
patch create -q "this is my test patch" path/to/mypatch.zip \ path/to/target/server/home \ path/to/source/server1/home path/to/source/server2/home
Where
server1
andserver2
are different Infinispan versions where you can install "mypatch.zip". -
Describe the generated patch archive.
patch describe path/to/mypatch.zip
Infinispan patch target=$target_version(my test patch) source=$source_version created=$timestamp
-
$target_version
is the Infinispan version from which the patch was created. -
$source_version
is one or more Infinispan versions to which you can apply the patch.You can apply patches to Infinispan Server installations that match the
$source_version
only.
-
3.3. Applying patches to Infinispan Server installations
Upgrade or downgrade Infinispan Server installation to a Infinispan version by installing patches.
-
Create a server patch for the target version.
-
Navigate to
$ISPN_HOME
for the Infinispan Server installation you want to patch. -
Stop the Infinispan Server if it is running.
If you patch a server while it is running, the version changes take effect after restart. If you do not want to stop the server, create a new cluster with the target version and perform a rolling upgrade to that version instead of patching.
-
Start the CLI.
bin/cli.sh
-
Install the patch.
[disconnected]> patch install path/to/patch.zip Infinispan patch target=$target_version source=$source_version \ created=$timestamp installed=$timestamp
-
$target_version
displays the Infinispan version that the patch installed. -
$source_version
displays the Infinispan version before you installed the patch.
-
-
Start the server to verify the patch is installed.
bin/server.sh ... ISPN080001: Infinispan Server $version
If the patch is installed successfully
$version
matches$target_version
.
Use the
|
3.4. Rolling back patches
Remove patches from Infinispan Server by rolling them back and restoring the previous Infinispan version.
If a server has multiple patches installed, you can roll back the last installed patch only. Rolling back patches does not revert configuration changes you make to Infinispan Server. Before you roll back patches, you should ensure that your configuration is compatible with the version to which you are rolling back. |
-
Navigate to
$ISPN_HOME
for the Infinispan Server installation you want to roll back. -
Stop the server if it is running.
-
Start the CLI.
bin/cli.sh
-
List the installed patches.
patch ls
Infinispan patch target=$target_version source=$source_version created=$timestamp installed=$timestamp
-
$target_version
is the Infinispan server version after the patch was applied. -
$source_version
is the version for Infinispan server before the patch was applied. Rolling back the patch restores the server to this version.
-
-
Roll back the last installed patch.
patch rollback
-
Quit the CLI.
quit
-
Start the server to verify the patch is rolled back to the previous version.
bin/server.sh
ISPN080001: Infinispan Server $version
If the patch is rolled back successfully
$version
matches$source_version
.
Use the
|
4. Migrating data between cache stores
Infinispan provides a Java utility for migrating persistent data between cache stores.
In the case of upgrading Infinispan, functional differences between major
versions do not allow backwards compatibility between cache stores. You can use
StoreMigrator
to convert your data so that it is compatible with the target
version.
For example, upgrading to Infinispan 10.0 changes the default marshaller to Protostream. In previous Infinispan versions, cache stores use a binary format that is not compatible with the changes to marshalling. This means that Infinispan 10.1 cannot read from cache stores with previous Infinispan versions.
In other cases Infinispan versions deprecate or remove cache store
implementations, such as JDBC Mixed and Binary stores. You can use
StoreMigrator
in these cases to convert to different cache store
implementations.
4.1. Cache store migrator
Infinispan provides the StoreMigrator.java
utility that recreates data for the latest Infinispan cache store implementations.
StoreMigrator
takes a cache store from a previous version of Infinispan 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 RocksDB cache store.
|
4.2. Configuring the cache store migrator
Use the migrator.properties
file to configure properties for source and target cache stores.
-
Create a
migrator.properties
file. -
Configure properties for source and target cache store using the
migrator.properties
file.-
Add the
source.
prefix to all configuration properties for the source cache store.Example source cache storesource.type=SOFT_INDEX_FILE_STORE source.cache_name=myCache source.location=/path/to/source/sifs source.version=<version>
For migrating data from segmented cache stores, you must also configure the number of segments using the
source.segment_count
property. The number of segments must matchclustering.hash.numSegments
in your Infinispan configuration. If the number of segments for a cache store does not match the number of segments for the corresponding cache, Infinispan cannot read data from the cache store. -
Add the
target.
prefix to all configuration properties for the target cache store.Example target cache storetarget.type=SINGLE_FILE_STORE target.cache_name=myCache target.location=/path/to/target/sfs.dat
-
4.2.1. Configuration properties for the cache store migrator
Configure source and target cache stores in a StoreMigrator
properties.
Property | Description | Required/Optional |
---|---|---|
|
Specifies the type of cache store for a source or target cache store.
|
Required |
Property | Description | Example Value | Required/Optional |
---|---|---|---|
|
The name of the cache that you want to back up. |
|
Required |
|
The number of segments for target cache stores that can use segmentation. The number of segments must match |
|
Optional |
Property | Description | Required/Optional |
---|---|---|
|
Specifies the dialect of the underlying database. |
Required |
|
Specifies the marshaller version for source cache stores. |
Required for source stores only. |
|
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 |
|
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 Infinispan versions, change
|
# Example configuration for migrating to a JDBC String-Based cache store target.type=STRING target.cache_name=myCache target.dialect=POSTGRES target.marshaller.class=org.example.CustomMarshaller target.marshaller.externalizers=25:Externalizer1,org.example.Externalizer2 target.connection_pool.connection_url=jdbc:postgresql:postgres target.connection_pool.driver_class=org.postrgesql.Driver target.connection_pool.username=postgres target.connection_pool.password=redhat target.db.disable_upsert=false target.db.disable_indexing=false target.table.string.table_name_prefix=tablePrefix target.table.string.id.name=id_column target.table.string.data.name=datum_column target.table.string.timestamp.name=timestamp_column target.table.string.id.type=VARCHAR target.table.string.data.type=bytea target.table.string.timestamp.type=BIGINT target.key_to_string_mapper=org.infinispan.persistence.keymappers. DefaultTwoWayKey2StringMapper
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. 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. 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. target.type=SOFT_INDEX_FILE_STORE target.cache_name=myCache target.location=path/to/sifs/database target.location=path/to/sifs/index
4.3. Migrating Infinispan cache stores
You can use the StoreMigrator
to migrate data between cache stores with different Infinispan versions or to migrate data from one type of cache store to another.
-
Have a
infinispan-tools.jar
. -
Have the source and target cache store configured in the
migrator.properties
file.
-
If you built the
infinispan-tools.jar
from the source code, do the following:-
Add
infinispan-tools.jar
to your classpath. -
Add dependencies for your source and target databases, such as JDBC drivers to your classpath.
-
Specify
migrator.properties
file as an argument forStoreMigrator
.
-
-
If you pulled
infinispan-tools.jar
from the Maven repository, run the following command:mvn exec:java