[
https://issues.jboss.org/browse/ISPN-3504?page=com.atlassian.jira.plugin....
]
Michal Linhard commented on ISPN-3504:
--------------------------------------
This causes that after cache.clear() operation, the cache store writes to different file
than initially and when the server is restarted again, the expected data is not there.
LevelDB Cache store in server doesn't keep data between restarts
----------------------------------------------------------------
Key: ISPN-3504
URL:
https://issues.jboss.org/browse/ISPN-3504
Project: Infinispan
Issue Type: Bug
Components: Loaders and Stores
Affects Versions: 6.0.0.Alpha4
Reporter: Michal Linhard
Assignee: Mircea Markus
Fix For: 6.0.0.CR1
I have config with passivation="false" purge="false"
and expect data to survive restarts which doesn't happen.
{code}
<cache-container name="default" default-cache="default"
listener-executor="infinispan-listener">
<local-cache name="default" start="EAGER"
batching="false">
<locking isolation="REPEATABLE_READ" acquire-timeout="20000"
concurrency-level="500" striping="false" />
<transaction mode="NONE" />
<leveldb-store path="temp-leveldb" block-size="1024"
cache-size="50000" clear-threshold="100000"
passivation="false"
purge="false" >
<expiration path="temp-leveldb-expired" queue-size="2000"
/>
<compression type="SNAPPY" />
<implementation type="JAVA" />
</leveldb-store>
</local-cache>
<local-cache name="memcachedCache" start="EAGER"
batching="false">
<locking isolation="REPEATABLE_READ" acquire-timeout="20000"
concurrency-level="500" striping="false" />
<transaction mode="NONE" />
</local-cache>
</cache-container>
{code}
failing test:
https://code.engineering.redhat.com/gerrit/gitweb?p=jdg-functional-tests....;
hb=8e1b8a10fed5de5bf3bb9ec6fbc46857e1666798
for JDG 6.2.0.DR4
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira