I have a piece of code that can be executed by multiple threads that needs to perform an I/O-bound operation in order to initialize a shared resource that is stored in a ConcurrentMap. I need to make this code thread safe and avoid unnecessary calls to initialize the shared resource. Here's the buggy code:

    private ConcurrentMap<String, Resource> map;

    // .....

    String key = "somekey";
    Resource resource;
    if (map.containsKey(key)) {
        resource = map.get(key);
    } else {
        resource = getResource(key); // I/O-bound, expensive operation
        map.put(key, resource);
    }

With the above code, multiple threads may check the ConcurrentMap and see that the resource isn't there, and all attempt to call getResource() which is expensive. In order to ensure only a single initialization of the shared resource and to make the code efficient once the resource has been initialized, I want to do something like this:

    String key = "somekey";
    Resource resource;
    if (!map.containsKey(key)) {
        synchronized (map) {
            if (!map.containsKey(key)) {
                resource = getResource(key);
                map.put(key, resource);
            }
        }
    }

Is this a safe version of double checked locking? It seems to me that since the checks are called on ConcurrentMap, it behaves like a shared resource that is declared to be volatile and thus prevents any of the "partial initialization" problems that may happen.

link|improve this question

52% accept rate
If you look at the "Related" section over to the right of this page and down a bit, you'll see a lot of good information. In particular, the accepted answer in this question: stackoverflow.com/questions/157198/… – Jeremy Heiler Aug 9 '11 at 21:31
feedback

5 Answers

up vote 0 down vote accepted

yes it' safe.

If map.containsKey(key) is true, according to doc, map.put(key, resource) happens before it. Therefore getResource(key) happens before resource = map.get(key), everything is safe and sound.

link|improve this answer
feedback

Why not use the putIfAbsent() method on ConcurrentMap?

if(!map.containsKey(key)){
  map.putIfAbsent(key, getResource(key));
}

Conceivably you might call getResource() more than once, but it won't happen a bunch of times. Simpler code is less likely to bite you.

link|improve this answer
+1 faster than me :) – Bohemian Aug 9 '11 at 21:35
1  
duplicate getResource() is exactly what he wants to avoid – irreputable Aug 9 '11 at 21:46
irreputable is right - the getResource() call is what I want to only call once. – pmc255 Aug 10 '11 at 1:30
You should still use putIfAbsent, but you can put it inside the sync block. – rfeak Aug 11 '11 at 20:13
feedback

If you can use external libraries, take a look at Guava's MapMaker.makeComputingMap(). It's tailor-made for what you're trying to do.

link|improve this answer
I looked into the impl. It's ungodly complicated. I don't believe anybody can analyze its concurrency behavior. – irreputable Aug 9 '11 at 22:50
The computing map from Guava (Google collections) ensures the (expensive) computation is done only once. Brian Goetz also has this pattern in his book under the name "Memoizer". – sjlee Aug 10 '11 at 0:23
Well, I'm constructing the ConcurrentMap using MapMaker. My question is whether using a ConcurrentMap (with its contract as defined by its interface) is a sufficient workaround for the common double checked locking problem. – pmc255 Aug 10 '11 at 1:31
feedback

No need for that - ConcurrentMap supports this as with its special atomic putIfAbsent method.

Don't reinvent the wheel: Always use the API where possible.

link|improve this answer
Before I call putIfAbsent, I need to fetch the value that I want to put in the map; that fetch operation is expensive. Using putIfAbsent doesn't solve that. – pmc255 Aug 10 '11 at 2:20
that leave you with redundant expensive initialization of the thing to be inserted if you lose the race. – bmargulies Feb 20 at 13:08
@bmargulies that is true, but it only happens rarely during race conditions for the same key, so it shouldn't hurt too much. You can put extra guards around it, but I would wait to see what happens at runtime and only "fix" it if it needs fixing – Bohemian Feb 20 at 13:34
In my case, the expensive thing has side effects and absolutely cannot be run extra times. The Guava ComputedMap looks appropriate. – bmargulies Feb 20 at 18:17
feedback

In general, double-checked locking is safe if the variable you're synchronizing on is marked volatile. But you're better off synchronizing the entire function:


public synchronized Resource getResource(String key) {
  Resource resource = map.get(key);
  if (resource == null) {
    resource = expensiveGetResourceOperation(key);    
    map.put(key, resource);
  }
  return resource;
}

The performance hit will be tiny, and you'll be certain that there will be no sync problems.

Edit:

This is actually faster than the alternatives, because you won't have to do two calls to the map in most cases. The only extra operation is the null check, and the cost of that is close to zero.

Second edit:

Also, you don't have to use ConcurrentMap. A regular HashMap will do it. Faster still.

link|improve this answer
This method will likely be called many many times over and over again; synchronizing the entire method seems expensive, which is what I wanted to avoid in the first place. Additionally, the call to a ConcurrentMap.containsKey should be slightly more efficient since the locking for a ConcurrentMap is more granular than an object-level lock that synchronizes the entire containsKey operation. That is, simultaneous calls to containsKey are possible, whereas the synchronized getResource() will ALWAYS be accessible to one thread at a time, even after the resource has been initialized. – pmc255 Aug 10 '11 at 17:04
In fact, your example is exactly like one of the poorly performing examples of "memoization" as listed in section 5.6 of Java Concurrency In Practice. – pmc255 Aug 10 '11 at 17:14
feedback

Your Answer

 
or
required, but never shown

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