Near Cache Data Not Getting Deleted Despite All Storage Enabled Nodes Go Down
(Doc ID 1063840.1)
Last updated on DECEMBER 04, 2024
Applies to:
Oracle Coherence - Version 3.3.0 and laterInformation in this document applies to any platform.
Goal
This document explains how the near caches can preserve data on clients despite all cache servers may have been shut down. This is the data from orphaned partitions.
Following the steps below this behavior can be oberved:
- Start a storage enabled node
- Start a cache client (let's call it "client 1")
- Do a put on the NearCache
- Do a get of the recently put entry key --> it is returned OK
- Shutdown the storage enabled node (if you try to do a put after the storage enabled node shutdown, then you will get a "storage is not configured" error)
- Do a get of the recently put entry key --> it is returned OK again (despite there are no storage enabled nodes running on the cluster)
- Startup a storage enabled node again
- Do a get of the recently put entry key --> it is returned OK again
- If you had another client node (let's call it "client 2") before shutting down the storage enabled node, it will keep the entry put on step 3.
- If you add a new client (let's call it "client 3") to the cluster after step 7 and try to do the get of the key put on step 3, then you will get a null value, which is not the same value contained by clients 1 and 2, which means that it's an incoherent (inconsistent) near cache.
Solution
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Goal |
Solution |