[infinispan-issues] [JBoss JIRA] (ISPN-7586) Rolling Upgrade: use of Remote Store in mode read-only cause data inconsistencies
Gustavo Fernandes (JIRA)
issues at jboss.org
Thu Mar 9 11:07:00 EST 2017
Gustavo Fernandes created ISPN-7586:
---------------------------------------
Summary: Rolling Upgrade: use of Remote Store in mode read-only cause data inconsistencies
Key: ISPN-7586
URL: https://issues.jboss.org/browse/ISPN-7586
Project: Infinispan
Issue Type: Bug
Reporter: Gustavo Fernandes
Assuming a Hot Rod client pointing to the target cluster. Target cluster has a {{RemoteStore}} pointing to the source cluster in read-only mode.
Clients can see the following situation:
{code:java}
client.put("K","value")
// will get "V" back
client.get("K")
// Deletes will not propagate to the source cluster,
// the RemoteStore is in 'read-only' mode.
client.remove("K")
// Returns "V". Although deleted, value will be retrieved
// from the remote store
cache.get("K")
{code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
More information about the infinispan-issues
mailing list