]
Tristan Tarrant updated ISPN-7584:
----------------------------------
Status: Resolved (was: Pull Request Sent)
Fix Version/s: 9.0.0.Final
Resolution: Done
Rolling upgrade fails with "java.lang.ClassCastException:
SimpleClusteredVersion cannot be cast to NumericVersion"
------------------------------------------------------------------------------------------------------------------
Key: ISPN-7584
URL:
https://issues.jboss.org/browse/ISPN-7584
Project: Infinispan
Issue Type: Bug
Reporter: Gustavo Fernandes
Assignee: Gustavo Fernandes
Labels: rolling_upgrade
Fix For: 9.0.0.Final
Cache configuration, both for source and target clusters:
{code:xml}
<replicated-cache name="test-cache" mode="SYNC"
start="EAGER">
<expiration interval="300000" lifespan="525600000000" />
<locking isolation="REPEATABLE_READ" acquire-timeout="20000"
concurrency-level="500" striping="false" />
<transaction mode="NONE" />
<string-keyed-jdbc-store datasource="java:jboss/datasources/OracleDS"
passivation="false" preload="false" purge="false"
shared="true">
<property name="databaseType">ORACLE</property>
<string-keyed-table prefix="ISPN">
<id-column name="id" type="VARCHAR(256)" />
<data-column name="datum" type="BLOB" />
<timestamp-column name="version" type="NUMBER" />
</string-keyed-table>
</string-keyed-jdbc-store>
<remote-store cache="test-cache" hotrod-wrapping="true"
socket-timeout="60000" tcp-no-delay="true" shared="true"
passivation="false" purge="false" read-only="true">
<remote-server outbound-socket-binding="source-cluster" />
</remote-store>
</replicated-cache>
{code}