Detecting concurrent modifications? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T17:15:26Z http://stackoverflow.com/feeds/question/75014 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/75014/detecting-concurrent-modifications 5 Detecting concurrent modifications? Paul Tomblin 2008-09-16T17:49:22Z 2009-04-28T06:41:48Z <p>In a multi-threaded application I'm working on, we occassionally see ConcurrentModificationExceptions on our Lists (which are mostly ArrayList, sometimes Vectors). But there are other times when I think concurrent modifications are happening because iterating through the collection appears to be missing items, but no exceptions are thrown. I know that the docs for ConcurrentModificationException says you can't rely on it, but how would I go about making sure I'm not concurrently modifying a List? And is wrapping every access to the collection in a synchronized block the only way to prevent it?</p> <p><strong>Update:</strong> Yes, I know about Collections.synchronizedCollection, but it doesn't guard against somebody modifying the collection while you're iterating through it. I think at least some of my problem is happening when somebody adds something to a collection while I'm iterating through it.</p> <p><strong>Second Update</strong> If somebody wants to combine the mention of the synchronizedCollection and cloning like Jason did with a mention of the java.util.concurrent and the apache collectons frameworks like jacekfoo and Javamann did, I can accept an answer.</p> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/75041#75041 2 Answer by Tim Howland for Detecting concurrent modifications? Tim Howland 2008-09-16T17:51:57Z 2008-09-16T17:51:57Z <p>Check out <a href="http://www.javadoconline.com/search.jsp?from=main&amp;class=java.util.concurrent&amp;action=search" rel="nofollow">java.util.concurrent</a> for versions of the standard Collections classes that are engineered to handle concurrency better.</p> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/75043#75043 1 Answer by Hank Gay for Detecting concurrent modifications? Hank Gay 2008-09-16T17:52:09Z 2008-09-16T17:52:09Z <p>You could try using defensive copying so that modifications to one <code>List</code> don't affect others.</p> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/75048#75048 3 Answer by Jason Cohen for Detecting concurrent modifications? Jason Cohen 2008-09-16T17:52:40Z 2008-09-17T00:19:50Z <p>Yes you have to synchronize access to collections objects.</p> <p>Alternatively, you can use the synchronized wrappers around any existing object. See <a href="http://java.sun.com/javase/6/docs/api/java/util/Collections.html#synchronizedList(java.util.List)" rel="nofollow">Collections.synchronizedCollection()</a>. For example:</p> <pre><code>List&lt;String&gt; safeList = Collections.synchronizedList( originalList ); </code></pre> <p>However all code needs to use the safe version, and even so iterating while another thread modifies will result in problems.</p> <p>To solve the iteration problem, copy the list first. Example:</p> <pre><code>for ( String el : safeList.clone() ) { ... } </code></pre> <p>For more optimized, thread-safe collections, also look at <a href="http://www.javadoconline.com/search.jsp?from=main&amp;class=java.util.concurrent&amp;action=search" rel="nofollow">java.util.concurrent</a>.</p> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/75053#75053 -1 Answer by sblundy for Detecting concurrent modifications? sblundy 2008-09-16T17:52:57Z 2008-09-16T17:52:57Z <p><a href="http://java.sun.com/javase/6/docs/api/java/util/Collections.html#synchronizedList(java.util.List)" rel="nofollow">Collections.synchronizedList()</a> will render a list nominally thread-safe and java.util.concurrent has more powerful features.</p> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/75068#75068 2 Answer by Mat Mannion for Detecting concurrent modifications? Mat Mannion 2008-09-16T17:54:17Z 2008-09-16T17:54:17Z <p>Usually you get a ConcurrentModificationException if you're trying to remove an element from a list whilst it's being iterated through.</p> <p>The easiest way to test this is:</p> <pre><code>List&lt;Blah&gt; list = new ArrayList&lt;Blah&gt;(); for (Blah blah : list) { list.remove(blah); // will throw the exception } </code></pre> <p>I'm not sure how you'd get around it. You may have to implement your own thread-safe list, or you could create copies of the original list for writing and have a synchronized class that writes to the list.</p> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/75088#75088 1 Answer by toluju for Detecting concurrent modifications? toluju 2008-09-16T17:55:49Z 2008-09-16T17:55:49Z <p>Wrapping accesses to the collection in a synchronized block is the correct way to do this. Standard programming practice dictates the use of some sort of locking mechanism (semaphore, mutex, etc) when dealing with state that is shared across multiple threads.</p> <p>Depending on your use case however you can usually make some optimizations to only lock in certain cases. For example, if you have a collection that is frequently read but rarely written, then you can allow concurrent reads but enforce a lock whenever a write is in progress. Concurrent reads only cause conflicts if the collection is in the process of being modified.</p> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/75093#75093 1 Answer by tgamblin for Detecting concurrent modifications? tgamblin 2008-09-16T17:56:21Z 2008-09-16T17:56:21Z <p>ConcurrentModificationException is best-effort because what you're asking is a hard problem. There's no good way to do this reliably without sacrificing performance besides proving that your access patterns do not concurrently modify the list.</p> <p>Synchronization would likely prevent concurrent modifications, and it may be what you resort to in the end, but it can end up being costly. The best thing to do is probably to sit down and think for a while about your algorithm. If you can't come up with a lock-free solution, then resort to synchronization.</p> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/75196#75196 4 Answer by Javamann for Detecting concurrent modifications? Javamann 2008-09-16T18:05:56Z 2008-09-16T18:05:56Z <p>Depending on your update frequency one of my favorites is the CopyOnWriteArrayList or CopyOnWriteArraySet. They create a new list/set on updates to avoid concurrent modification exception. </p> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/75205#75205 1 Answer by jb for Detecting concurrent modifications? jb 2008-09-16T18:06:33Z 2008-09-17T20:23:14Z <p>See the implementation. It basically stores an int:</p> <pre><code>transient volatile int modCount; </code></pre> <p>and that is incremented when there is a 'structural modification' (like remove). If iterator detects that modCount changed it throws Concurrent modification exception. </p> <p>Synchronizing (via Collections.synchronizedXXX) won't do good since it does not guarantee iterator safety it only synchronizes writes and reads via put, get, set ...</p> <p>See java.util.concurennt and apache collections framework (it has some classes that are optimized do work correctly in concurrent environment when there is more reads (that are unsynchronized) than writes - see FastHashMap. </p> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/76998#76998 0 Answer by Chris for Detecting concurrent modifications? Chris 2008-09-16T20:58:17Z 2008-09-16T20:58:17Z <p>This will get rid of your concurrent modification exception. I won't speak to the efficiency however ;)</p> <pre><code>List&lt;Blah&gt; list = fillMyList(); List&lt;Blah&gt; temp = new ArrayList&lt;Blah&gt;(); for (Blah blah : list) { //list.remove(blah); would throw the exception temp.add(blah); } list.removeAll(temp); </code></pre> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/82025#82025 3 Answer by Bill Michell for Detecting concurrent modifications? Bill Michell 2008-09-17T11:04:26Z 2009-02-02T13:39:27Z <p>Your original question seems to be asking for an iterator that sees live updates to the underlying collection while remaining thread-safe. This is an incredibly expensive problem to solve in the general case, which is why none of the standard collection classes do it.</p> <p>There are lots of ways of achieving partial solutions to the problem, and in your application, one of those may be sufficient.</p> <p>Jason gives <a href="http://stackoverflow.com/questions/75014/detecting-concurrent-modifications#75048">a specific way to achieve thread safety, and to avoid throwing a ConcurrentModificationException</a>, but only at the expense of liveness.</p> <p>Javamann mentions <a href="http://stackoverflow.com/questions/75014/detecting-concurrent-modifications#75196">two specific classes</a> in the <code>java.util.concurrent</code> package that solve the same problem in a lock-free way, where scalability is critical. These only shipped with Java 5, but there have been various projects that backport the functionality of the package into earlier Java versions, including <a href="http://backport-jsr166.sourceforge.net/" rel="nofollow">this one</a>, though they won't have such good performance in earlier JREs.</p> <p>If you are already using some of the Apache Commons libraries, then as jacekfoo <a href="http://stackoverflow.com/questions/75014/detecting-concurrent-modifications#75205">points out</a>, the <a href="http://commons.apache.org/collections/" rel="nofollow">apache collections framework</a> contains some helpful classes.</p> <p>You might also consider looking at the <a href="http://www.devx.com/Java/Article/36183" rel="nofollow">Google collections framework</a>.</p> http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/796493#796493 0 Answer by Sean Turner for Detecting concurrent modifications? Sean Turner 2009-04-28T06:41:48Z 2009-04-28T06:41:48Z <p>You can also synchronize over iteratins over the list. </p> <pre><code>List&lt;String&gt; safeList = Collections.synchronizedList( originalList ); public void doSomething() { synchronized(safeList){ for(String s : safeList){ System.out.println(s); } } } </code></pre> <p>This will lock the list on synchronization and block all threads that try to access the list while you edit it or iterate over it. The downside is that you create a bottleneck.</p> <p>This saves some memory over the .clone() method and might be faster depending on what you're doing in the iteration... </p>