Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following is an overview of Hazelcast structures in CPS and NCMP, along with recommendations. Additional Implementation Proposals will be added.

Needs
ComponentHazelcast StructureTypePurposeRecommendationImplementation ProposalNotes
CPSanchorDataCache

Map<String, AnchorDataCacheEntry>


Likely low risk, but needs further analysis

NCMPmoduleSyncWorkQueue

BlockingQueue<DataNode>


Remove immediatelyTBC

Entire CM handles are stored in work queue for module sync. This creates very high memory usage during CM handle registration.

NCMPmoduleSyncStartedOnCmHandles

Map<String, Object>


Remove immediatelyTBC
NCMPdataSyncSemaphores

Map<String, Boolean>


Remove later
Low priority - this map is only populated if data sync is enabled for a CM handle. If the feature is used, it will store one entry per CM handle with data sync enabled.
NCMPtrustLevelPerCmHandle

Map<String, TrustLevel>


Remove immediatelyTBCOne entry is stored in memory per CM handle. This is directly implicated in logs supplied in investigation of out-of-memory errors in CPS-2146
NCMPtrustLevelPerDmiPlugin

Map<String, TrustLevel>


Low risk, See notes
Low priority - there are only small number of DMIs, so this structure will not grow so large. However, if trustLevelPerCmHandle is being removed, this structure may be removed as part of the same solution.
NCMPcmNotificationSubscriptionCache

Map<String, Map<String, DmiCmNotificationSubscriptionDetails>>


Will need further analysis in future.; see notes
This is low priority, as the CM subscription feature is not yet implemented, thus it is not in use. It is unclear how much data will be stored in the structure. It is presumed to be low, as this structure will only hold pending subscriptions.

...