I hope this isn't too silly a question...

I have code similar to the following in my project:

public class ConfigStore {

    public static class Config {

        public final String setting1;
        public final String setting2;
        public final String setting3;

        public Config(String setting1, String setting2, String setting3) {
            this.setting1 = setting1;
            this.setting2 = setting2;
            this.setting3 = setting3;
        }

    }

    private volatile HashMap<String, Config> store = new HashMap<String, Config>();

    public void swapConfigs(HashMap<String, Config> newConfigs) {
        this.store = newConfigs;
    }

    public Config getConfig(String name) {
        return this.store.get(name);
    }

}

As requests are processed, each thread will request a config to use from the store using the getConfig() function. However, periodically (every few days most likely), the configs are updated and swapped out using the swapConfigs() function. The code that calls swapConfigs() does not keep a reference to the Map it passes in as it is simply the result of parsing a configuration file.

  • In this case, is the volatile keyword still needed on the store instance variable?
  • Will the volatile keyword introduce any potential performance bottlenecks that I should be aware of or can avoid given that the rate of reads greatly exceeds the rate of writes?

Thanks very much,

link|improve this question
feedback

3 Answers

up vote 4 down vote accepted

Since changing references is an atomic operation, you won't end up with one thread modifying the reference, and the other seeing a garbage reference, even if you drop volatile. However, the new map may not get instantly visible for some threads, which may consequently keep reading configuration from the old map for an indefinite time (or forever). So keep volatile.

Since you change the value very rarely, I don't think volatile would cause any noticeable performance difference. But at any rate, correct behaviour trumps performance.

link|improve this answer
Peter just beat Tomasz here, but both answer are basically to be the same and correct. Thanks very much. :) – Midpoint Aug 25 '11 at 8:21
Is changing of 64 bit reference really guaranteed to be atomic? – hgrey Apr 19 at 23:31
1  
@hgrey, yes, it is explicitly guaranteed by the JLS (ch. 17.7.): "Writes to and reads of references are always atomic, regardless of whether they are implemented as 32-bit or 64-bit values." – Péter Török Apr 20 at 7:25
feedback

Your code is fine. You need volatile, otherwise your code would be 100% thread-safe (updating a reference is atomic), however the change might not be visible to all the threads. It means some threads will still see the old value of store.

That being said volatile is obligatory in your example. You might consider AtomicReference, but it won't give you anything more in your case.

You cannot trade correctness for performance so your second question is not really valid. It will have some performance impact, but probably only during update, which happens very rarely as you said. Basically JVM will ensure the change is visible to all the threads by "flushing" it, but after that it will be accessible as any other local variable (up until next update).

BTW I like Config class being immutable, please also consider immutable Map implementation just in case.

link|improve this answer
2  
+1: Whether the Map is made immutable explicitly at runtime with Collections.unmodifiableMap() or not, you should be changing the Map's contents once it has been set. If you need to be able to do this use ConcurrentHashMap and make it final i.e. use putAll and keySet().retainAll() to update the ConcurrentHashMap – Peter Lawrey Aug 25 '11 at 8:08
feedback

Would it work for you to use a ConcurrentHashMap and instead of swapping the entire config update the affected values in the hash map?

link|improve this answer
The reason I didn't bother with ConccurentHashMap is that I want to be able to do a complete swap of one good configuration for another good configuration in a single operation. Using a ConcurrentHashMap would probably imply that I would want to merge the configurations in some way. – Midpoint Aug 25 '11 at 8:06
@Midpoint, I suspected that something like that was the reason. – Nils Weinander Aug 29 '11 at 15:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.