You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@helix.apache.org by GitBox <gi...@apache.org> on 2019/07/30 18:42:06 UTC

[GitHub] [helix] Jackie-Jiang commented on issue #363: Fix the race condition while Helix refresh cluster status cache.

Jackie-Jiang commented on issue #363: Fix the race condition while Helix refresh cluster status cache.
URL: https://github.com/apache/helix/pull/363#issuecomment-516543932
 
 
   > > There are two ways of solving the race condition by using atomic operations, either use ConcurrentHashMap or AtomicBoolean. If you decide to use AtomicBoolean, then you don't need the heavy-weight ConcurrentHashMap. I would recommend using array and use ChangeType.ordinal() as the index, or some immutable data structure to hold the AtomicBooleans
   > 
   > Great suggestion. I thought about it too, it's vulnerable when putting the data in Map. ConcurrentHashMap obviously is relatively overkill. My suggestion is to use Enum and put AtomicBoolean as the internal field of the enum.
   
   Enum is singleton object, so I don't think it is feasible to put the change state as an internal field

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services