Usecase :
We have 2 nodes (node A and node B)
1. JIRA escalation service job will be executed every night to cache the huge data.
2. Job will be executed on any node (node A or node B)
3. Assume, the job is executed on node A. Then all the data is cached properly (works fine)
if we open the page on node A , loads fastly
sample code:
using replicateViaInvalidation
new CacheSettingsBuilder().replicateViaInvalidation().expireAfterAccess(6, TimeUnit.DAYS).build()
5. But the data replication is not working on node B
if we open the page on node B , not loads fastly
Could you please support?