-
1. Re: Synchronous Replication in Infinispan server
galder.zamarreno Jun 11, 2018 12:58 PM (in response to purushos)Looks fairly good. I'd remove batching though since that shouldn't be required.
Did you check the logs? Did you get any exception(s)?
-
2. Re: Synchronous Replication in Infinispan server
purushos Jun 11, 2018 1:28 PM (in response to galder.zamarreno)Hi,
Thanks! We figured out that it was not a cache replication issue. We found that in our application code, we were using a non thread safe data structure (which eventually gets stored in Infinispan) and the data structure was getting corrupted occasionally when there are concurrent write operations. We fixed the issue by changing the application code to use a thread safe data structure.
Can you please confirm if there is any functional or performance impact in removing batching? We don't actually use cache store batch operations however we had batching enabled for quite sometime. So just wanted to confirm before removing it.
Thanks,
Purush
-
3. Re: Synchronous Replication in Infinispan server
galder.zamarreno Jun 12, 2018 8:41 AM (in response to purushos)Batching should not make a diff in your case
-
4. Re: Synchronous Replication in Infinispan server
purushos Jun 19, 2018 1:55 PM (in response to galder.zamarreno)Thanks!