I am using infinispan9 with camel infispan.xml
<distributed-cache name="myCache" mode="SYNC" start="EAGER">
<locking isolation="READ_COMMITTED" acquire-timeout="30000" concurrency-level="1000" striping="false"/>
<!-- set lifespan to 1 hour in millisecond 3600000-->
<expiration lifespan="120000" />
</distributed-cache>
In my camel route I am using:
<idempotentConsumer messageIdRepositoryRef="infinispanRepo">
<header>CamelFileName</header>
<setHeader headerName="fileExist">
<simple>true</simple>
</setHeader>
</idempotentConsumer>
<when>
<simple>${header.fileExist} == null</simple>
<!-- log duplicate-->
</when>
Now my concern is I have processed a file at 6:30:00 it processed success. I reprocessed the file at 6:31:00, it loged duplicate. that's fine. I am expecting the file to be successfully reprocessed after 6:32:00 but Failed and logged duplicate. What I observed is when ever the idempotentConsumer is verifying, the time is updated and I need to wait 2 sec after the last processed duplicate log.
All I want is to expire after first entry. Please help.