active questions tagged concurrency - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T20:52:26Zhttp://stackoverflow.com/feeds/tag/concurrencyhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1901789/concurrency-object-visibility5Concurrency, object visibilityInteger2009-12-14T16:04:27Z2009-12-14T18:13:04Z
<p>I'm trying to figure out if the code below suffers from any potential concurrency issues. Specifically, the issue of visibility related to volatile variables. <em>Volatile</em> is defined as: <strong>The value of this variable will never be cached thread-locally: all reads and writes will go straight to "main memory"</strong></p>
<pre><code>public static void main(String [] args)
{
Test test = new Test();
// This will always single threaded
ExecutorService ex = Executors.newSingleThreadExecutor();
for (int i=0; i<10; ++i)
ex.execute(test);
}
private static class Test implements Runnable {
// non volatile variable in question
private int state = 0;
@Override
public void run() {
// will we always see updated state value? Will updating state value
// guarantee future run's see the value?
if (this.state != -1)
this.state++;
}
}
</code></pre>
<p>For the above <strong>single threaded executor</strong>:</p>
<p>Is it okay to make <em>test.state</em> non volatile? In other words, will every successive <em>Test.run()</em> (which will occur sequentially and not concurrently because again executor is single threaded), always see the updated <em>test.state</em> value? If not, doesn't exiting of <em>Test.run()</em> ensure any changes made thread locally get written back to main memory otherwise when does changes made thread locally get written back to main memory if not upon exiting of the thread?</p>
http://stackoverflow.com/questions/1804112/in-a-bigtable-datastore-with-regards-to-concurrency-how-do-i-lock-an-entity1In a BigTable datastore, with regards to concurrency, how do I "lock" an entity?willem2009-11-26T14:50:20Z2009-12-13T15:16:43Z
<p>I am not sure how to handle this in a BigTable datastore. </p>
<p>Imagine the following example (just to explain the concept. The example does not match my actual data model):</p>
<ul>
<li>I have a Counter entity that keeps track of the number of Transactions in my dataStore. Let's say the current 'count' is 100.</li>
<li>Now two web requests read this value at the same time.</li>
<li>Both web requests add a new Transaction </li>
<li>And finally both update the counter (to 101).</li>
</ul>
<p>The counter value is now inaccurate. It should be 102. </p>
<p>Any suggestions on how to handle this situation? Can I 'lock' the counter to ensure that the second web request doesn't even <strong>read</strong> it until the first web request completes?</p>
http://stackoverflow.com/questions/1616280/what-is-the-best-clustering-or-distributed-system-solution-for-java-applications7What is the best Clustering or Distributed System solution for Java applicationsDougnukem2009-10-23T22:37:23Z2009-12-11T19:39:17Z
<p>What are the best approaches to clustering/distributing a Java server application ?
I'm looking for an approach that allows you to scale horizontally by adding more application servers, and more database servers.</p>
<ul>
<li>What technologies (software engineering techniques or specific technologies) would you suggest to approach this type of problem?</li>
<li>What techniques do you use to design a persistence layer to scale to many readers/writers
Scale application transactions and scale access to shared data (best approach is to eliminate shared data; what techniques can you apply to eliminate shared data).</li>
<li>Different approaches seem to be needed depending on whether your transactions are read or write heavy, but I feel like if you can optimize a "write" heavy application that would also be efficient for "read"</li>
</ul>
<p>The "best" solution would allow you to write a Java application for a single node and hopefully "hide" most of the details of accessing/locking shared data. </p>
<p>In a distributed environment the most difficult issue always comes down to having multiple transactions accessing shared data. There seems like there's 2 common approaches to concurrent transactions.</p>
<ol>
<li><a href="http://en.wikipedia.org/wiki/Lock%5F%28computer%5Fscience%29" rel="nofollow">Explicit locks</a> (which is extremely error prone and slow to coordinate across multiple nodes in a distributed system)</li>
<li><a href="http://en.wikipedia.org/wiki/Software%5Ftransactional%5Fmemory" rel="nofollow">Software transactional memory</a> (STM) AKA optimistic concurrency where a transaction is rolled back during a commit if it discovers that shared state has changed (and the transaction can later be retried).
Which approach scales better and what are the trade-offs in a distributed system?</li>
</ol>
<p>I've been researching scaling solutions (and in general applications that provide an example of how to scale) such as:</p>
<ol>
<li><a href="http://terracotta.org/" rel="nofollow">Terracotta</a> - provides "transparent" scaling by extending the Java memory model to include distributed shared memory using Java's concurrency locking mechanism (synchronized, ReentrantReadWriteLocks).</li>
<li><a href="http://googleappengine.blogspot.com/2009/04/seriously-this-time-new-language-on-app.html" rel="nofollow">Google App Engine Java</a> - Allows you to write Java (or python) applications that will be distributed amongst "cloud" servers where you distribute what server handles a transaction and you use BigTable to store your persistent data (not sure how you transactions that access shared data or handle lock contentions to be able to scale effectively)</li>
<li><a href="http://projectdarkstar.com/" rel="nofollow">Darkstar MMO Server</a> - Darkstar is Sun's open source MMO (massively multiplayer online) game server they scale transactions in a thread transactional manner allowing a given transaction to only run for a certain amount and committing and if it takes to long it will rollback (kinda like software transactional memory). They've been doing research into <a href="http://projectdarkstar.com/technology-roadmap-may-09.html" rel="nofollow">supporting a multi-node server setup</a> for scaling.</li>
<li><a href="http://docs.huihoo.com/hibernate/hibernate-reference-2.1.7/transactions.html" rel="nofollow">Hibernate's optimistic locking</a> - if you are using Hibernate you can use their optimistic concurrency support to support <a href="http://en.wikipedia.org/wiki/Software%5Ftransactional%5Fmemory" rel="nofollow">software transactional memory</a> type behavior</li>
<li><a href="http://couchdb.apache.org/" rel="nofollow">Apache CouchDB</a> is supposed to "scale" to many reader/writer DB's in a mesh configuration naturally. (is there a good example of how you manage locking data or ensuring transaction isolation?):</li>
<li><a href="http://code.google.com/appengine/docs/java/memcache/usingjcache.html" rel="nofollow">JCache</a> - Scaling "read" heavy apps by caching results to common queries you can use in Google appengine to access memcached and to cache other frequently read data.</li>
</ol>
<p>Terracotta seems to be the most complete solution in that you can "easily" modify an existing server application to support scaling (after defining @Root objects and @AutoLockRead/Write methods). The trouble is to really get the most performance out of a distributed application, optimization for distributed systems isn't really an after thought you kinda have to design it with the knowledge that object access could potentially be blocked by network I/O. </p>
<p>To scale properly it seems like it always comes down to partitioning data and load balancing transactions such that a given "execution unit" (cpu core -> thread -> distributed application node -> DB master node) </p>
<p>It seems like though to make any app scale properly by clustering you need to be able to partition your transactions in terms of their data access reads/writes. What solutions have people come up with to distribute their applications data (Oracle, Google BigTable, MySQL, Data warehousing), and generally how do you manage partitioning data (many write masters, with many more read DBs etc).</p>
<p>In terms of scaling your data persistence layer what type of configuration scales out the best in terms of partitioning your data to many readers/many writers (generally I'd partition my data based on a given user (or whatever core entity that generally is your "root" object entity) being owned by a single master DB)</p>
http://stackoverflow.com/questions/1852138/nested-synchronized-blocks-on-interned-strings2Nested synchronized blocks on interned StringsBozho2009-12-05T12:54:52Z2009-12-11T17:41:19Z
<p>The title sounds like there is a lot of problems ahead. Here's my specific case:</p>
<p>This is a travel tickets sales system. Each route has a limited quantity of tickets, and so purchasing the last ticket for a given route shouldn't be accessible to two people (a standard scenario). However, there is the "return ticket" option.. So, I'm using the unique route ID (database-provided) to do the following:</p>
<pre><code>synchronized(bothRoutesUniqueString.intern()) {
synchronized (routeId.intern()) {
if (returnRouteId != null) {
synchronized (returnRouteId.intern()) {
return doPurchase(selectedRoute, selectedReturnRoute);
}
}
return doPurchase(selectedRoute, selectedReturnRoute);
}
}
</code></pre>
<p>The two inner <code>synchronized</code> blocks are in order to make threads stop there only if a ticket for this particular route is being purchased by two people at the same time, not if tickets for two distinct routes are purchased at the same time. The second synchronization is if course due to the fact, that someone may be attempting to purchase the retuern route as a outbound route at the same time.</p>
<p>The outer-most <code>synchronized</code> block is to account for the scenario, when two people purchase the same combination of tickets, reversed. For example one orders London-Manchester, and the other orders Manchester-London. If there isn't an outer synchronized block, this situation could lead to a deadlock.</p>
<p>(The <code>doPurchase()</code> method either returns a <code>Ticket</code> object, or throws an exception, if there are no more tickets available)</p>
<p>Now, I'm perfectly aware this is a very awkward solution, but, if it works as it is expected to, it gives:</p>
<ul>
<li>10 lines to handle the whole complex scenario (and with proper comments, it won't be that hard to understand)</li>
<li>no unnecessary locking - everything blocks only if it has to block.</li>
<li>database agnosticism</li>
</ul>
<p>I'm also aware that such scenarios are handled by either pessimistic or optimistic database locks, and since I'm using Hibernate, these won't be hard to implement either.</p>
<p>I think horizontal scaling can be achieved with the above code using VM clustering. According to <a href="http://www.terracotta.org/web/display/docs/Gotchas" rel="nofollow">Teracotta documentation</a>, it allows turning a single-node multithreaded app to a multi-node, and:</p>
<blockquote>
Terracotta tracks String.intern() calls and guarantees reference equality for these explicitly interned strings. Since all references to an interned String object point to the canonical value, reference equality checks will work as expected even for distributed applications.
</blockquote>
<p>So, now onto the questions themselves:</p>
<ul>
<li>do you spot any drawbacks to the above code (apart from its awkwardness)?</li>
<li>is there an applicable class from the <code>java.util.concurrent</code> API to help in this scenario?</li>
<li>why would a database locking be preferable to this?</li>
</ul>
<p>Update:
Since most of the answers are concerned with <code>OutOfMemoryError</code>, I crated a benchmark for <code>intern()</code>, and the memory hasn't been eaten up. Perhaps the strings table is being cleared, but this wouldn't matter in my case, since I need the objects to be equal in race conditions, and clearing of the most recent Strings should not happen at the point: </p>
<pre><code>System.out.println(Runtime.getRuntime().freeMemory());
for (int i = 0; i < 10000000; i ++) {
String.valueOf(i).intern();
}
System.out.println(Runtime.getRuntime().freeMemory());
</code></pre>
<p>P.S. The environment is JRE 1.6</p>
http://stackoverflow.com/questions/1850270/memory-effects-of-synchronization-in-java5Memory effects of synchronization in Javabinil2009-12-04T23:10:06Z2009-12-10T23:10:19Z
<p><a href="http://www.cs.umd.edu/users/pugh/java/memoryModel/jsr-133-faq.html#synchronization" rel="nofollow">JSR-133 FAQ</a> says:</p>
<blockquote>
<p>But there is more to synchronization
than mutual exclusion. Synchronization
ensures that memory writes by a thread
before or during a synchronized block
are made visible in a predictable
manner to other threads which
synchronize on the same monitor. After
we exit a synchronized block, we
release the monitor, which has the
effect of flushing the cache to main
memory, so that writes made by this
thread can be visible to other
threads. Before we can enter a
synchronized block, we acquire the
monitor, which has the effect of
invalidating the local processor cache
so that variables will be reloaded
from main memory. We will then be able
to see all of the writes made visible
by the previous release.</p>
</blockquote>
<p>I also remember reading that on modern Sun VMs uncontended synchronizations are cheap. I am a little confused by this claim. Consider code like:</p>
<pre><code>class Foo {
int x = 1;
int y = 1;
..
synchronized (aLock) {
x = x + 1;
}
}
</code></pre>
<p>Updates to x need the synchronization, but does the acquisition of the lock clear the value of y also from the cache? I can't imagine that to be the case, because if it were true, techniques like lock striping might not help. Alternatively can the JVM reliably analyze the code to ensure that y is not modified in another synchronized block using the same lock and hence not dump the value of y in cache when entering the synchronized block?</p>
http://stackoverflow.com/questions/632559/io-completion-ports-for-concurrent-database-access1IO completion ports for concurrent database accessToolorp2009-03-10T22:35:13Z2009-12-10T22:44:59Z
<p>I have a .NET WCF service that will need to handle multiple client requests at once.</p>
<p>The service makes database calls (both read and write) for each client request.</p>
<p>Could IO completion ports be useful for the database access portions of this code to improve concurrent performance? How would they be used in such a situation?</p>
http://stackoverflow.com/questions/1882637/how-to-handle-concurrent-file-access-with-a-filestream-streamwriter1How to handle concurrent file access with a filestream/streamwriter?45012009-12-10T17:32:31Z2009-12-10T19:03:09Z
<p>I am writing an audit file that is writing the username, time, and the old/changed values of several variables in the application for each user when they use my application. It is using a <code>FileStream</code> and <code>StreamWriter</code> to access the audit file. All audits for each user will be written to the same file. </p>
<p>The issue is that when two users are updating this audit file at the same time, the "old value" of each of the variable is mixing up between the users. Why is this and how can you solve the concurrency problem here?</p>
<p>Some code, shortened for brevity...</p>
<pre><code>Dim fs As FileStream
Dim w As StreamWriter
Public Sub WriteAudit(ByVal filename As String, ByVal username As String, ByVal oldAddress As String, ByVal newAddress As String, ByVal oldCity As String, ByVal newCity As String)
Dim now As DateTime = DateTime.Now
Dim audit As String = ""
audit += now + "," + username + "," + oldAddress + "," + newAddress + "," + oldCity + "," + newCity
fs = New FileStream(filename, FileMode.Append)
w = New StreamWriter(fs)
w.WriteLine(audit)
w.Close()
fs.Close()
End Sub
</code></pre>
<p>This lives in an AuditLogger class, which is referenced via an instance variable (re-allocated each time the function is accessed).</p>
http://stackoverflow.com/questions/1237980/java-5-concurrency-book-recommendations4Java 5 Concurrency book recommendationsEsko2009-08-06T09:56:26Z2009-12-10T18:26:57Z
<p>Which book or books would you recommend for learning the ins and outs of Java 5's Concurrency and most importantly why?</p>
<p>What I'm looking for exactly is a book which especially goes through the Java 5's new concurrency mechanisms (i.e. <code>java.util.concurrent</code> package) and could also be used to learn most of what there is to learn about concurrency in general. Also feel free to recommend any other book you think could help me in tackling this important topic.</p>
http://stackoverflow.com/questions/1873330/why-is-getentryobject-key-not-exposed-on-hashmap1Why is getEntry(Object key) not exposed on HashMap?mR_fr0g2009-12-09T11:36:49Z2009-12-10T17:42:33Z
<p>Here is my use case, I have an object that is logically equal to my HashMap key but not the same object (not ==). I need to get the actuall key object out of the HashMap so that i can synchronise on it. I am aware that i can iterate over the ketSet, but this is slow in comparison to hashing.</p>
<p>Looking through the java.util.HashMap implementation i see a getEntry(Object key) method that is exactly what i need. Any idea why this has not been exposed?</p>
<p>Can you think of any other way i can get the key out?</p>
http://stackoverflow.com/questions/1854054/why-do-books-on-concurrent-programming-always-ignore-data-parallelism3Why do books on concurrent programming always ignore data parallelism?superoptimizer2009-12-06T00:36:58Z2009-12-09T18:45:29Z
<p>There has been a significant shift towards data-parallel programming via systems like OpenCL and CUDA over the last few years, and yet books published even within the last six months never even mention the topic of data-parallel programming.</p>
<p>It's not suitable for every problem, but it seems that there is a significant gap here that isn't being addressed.</p>
http://stackoverflow.com/questions/1521055/avoiding-multiple-repopulations-of-the-same-cache-region-due-to-concurrency8Avoiding multiple repopulations of the same cache region (due to concurrency)cherouvim2009-10-05T16:26:11Z2009-12-09T17:38:23Z
<p>Hello</p>
<p>I have a high traffic website and I use hibernate. I also use ehcache to cache some entities and queries which are required to generate the pages.</p>
<p>The problem is "parallel cache misses" and the long explanation is that when the application boots and the cache regions are cold each cache region is being populated many times (instead of only once) by different threads because the site is being hit by many users at the same time. In addition, when some cache region invalidates it's being repopulated many times because of the same reason.
How can I avoid this?</p>
<p>I managed to <a href="http://stackoverflow.com/questions/1518808/using-ehcache-blocking-decorator-with-hibernate">convert 1 entity and 1 query cache to a BlockingCache</a> by providing my own implementation to hibernate.cache.provider_class but the semantics of BlockingCache do not seem to work. Even worst sometimes the BlockingCache deadlocks (blocks) and the application hangs completely. Thread dump shows that processing is blocked on the mutex of BlockingCache on a get operation.</p>
<p>So, the question is, does Hibernate support this kind of use?</p>
<p>And if not, how do you solve this problem on production?</p>
<p>Thanks a lot</p>
<p><strong>Edit</strong>: The *hibernate.cache.provider_class* points to my custom cache provider which is a copy paste from <a href="http://ehcache.org/xref/net/sf/ehcache/hibernate/SingletonEhCacheProvider.html" rel="nofollow">SingletonEhCacheProvider</a> and at the end of the start() method (after line 136) I do:</p>
<pre><code>Ehcache cache = manager.getEhcache("foo");
if (!(cache instanceof BlockingCache)) {
manager.replaceCacheWithDecoratedCache(cache, new BlockingCache(cache));
}
</code></pre>
<p>That way upon initialization, and before anyone else touches the cache named "foo", I decorate it with BlockingCache. "foo" is a query cache and "bar" (same code but omitted) is an entity cache for a pojo.</p>
<p><strong>Edit 2</strong>: "Doesn't seem to work" means that the initial problem still exists. Cache "foo" is still being re-populated many times with the same data, because of the concurrency. I validate this by stressing the site with JMeter with 10 threads. I'd expect the 9 threads to block until the first one which requested data from "foo" to finish it's job (execute queries, store data in cache), and then get the data directly from the cache. </p>
<p><strong>Edit 3</strong>: Another explanation for this problem can be seen at <a href="https://forum.hibernate.org/viewtopic.php?f=1&t=964391&start=0" rel="nofollow">https://forum.hibernate.org/viewtopic.php?f=1&t=964391&start=0</a> but with no definite answer.</p>
http://stackoverflow.com/questions/1871257/eclipse-rcp-only-one-job-runs-at-a-time0Eclipse RCP: Only one Job runs at a time?Mike Daniels2009-12-09T02:30:29Z2009-12-09T17:02:37Z
<p>The Jobs API in Eclipse RCP apparently works much differently than I expected. I thought that creating and scheduling multiple Jobs would actually cause multiple worker threads to be created, executing the Jobs in parallel unless there was an ISchedulingRule conflict.</p>
<p>I went back and read the documentation more closely, and also discovered this comment in the JobManager class:</p>
<pre><code>/**
* Returns a running or blocked job whose scheduling rule conflicts with the
* scheduling rule of the given waiting job. Returns null if there are no
* conflicting jobs. A job can only run if there are no running jobs and no blocked
* jobs whose scheduling rule conflicts with its rule.
*/
</code></pre>
<p>Now it looks to me like the Job manager will only ever attempt to use <em>one</em> background worker thread. Am I completely wrong about this? If I'm right,</p>
<ul>
<li>what is the point of scheduling rules and locks? If there is only one worker thread, Jobs can never preemt each other. Wouldn't these only ever be used in case a Job's sleep() method is called (e.g. sleeping while holding a Lock)?</li>
<li>does any part of the platform allow two Jobs to <em>actually</em> run concurrently, on multiple worker threads, thus making the above features useful somehow?</li>
</ul>
<p>What am I missing here?</p>
http://stackoverflow.com/questions/320096/django-how-can-i-protect-against-concurrent-modification-of-data-base-entries4Django: How can I protect against concurrent modification of data base entriesBer2008-11-26T09:00:35Z2009-12-09T15:52:14Z
<p>If there a way to protect against concurrent modifications of the same data base entry by two or more users?</p>
<p>It would be acceptable to show an error message to the user performing the second commit/save operation, but data should not be silently overwritten.</p>
<p>I think locking the entry is not an option, as a user might use the "Back" button or simply close his browser, leaving the lock for ever.</p>
http://stackoverflow.com/questions/1870327/auto-increment-on-azure-table-storage1Auto-increment on Azure Table StorageYrlec2009-12-08T22:28:41Z2009-12-09T13:24:35Z
<p>I am currently developing an application for Azure Table Storage. In that application I have table which will have relatively few inserts (a couple of thousand/day) and the primary key of these entities will be used in another table, which will have billions of rows. </p>
<p>Therefore I am looking for a way to use an auto-incremented integer, instead of GUID, as primary key in the small table (since it will save lots of storage and scalability of the inserts is not really an issue). </p>
<p>There've been some discussions on the topic, e.g. on <a href="http://social.msdn.microsoft.com/Forums/en/windowsazure/thread/6b7d1ece-301b-44f1-85ab-eeb274349797" rel="nofollow">http://social.msdn.microsoft.com/Forums/en/windowsazure/thread/6b7d1ece-301b-44f1-85ab-eeb274349797</a>.</p>
<p>However, since concurrency problems can be really hard to debug and spot, I am a bit uncomfortable with implementing this on own. My question is therefore if there is a well tested impelemntation of this?</p>
http://stackoverflow.com/questions/1872033/c-net-concurrency-books5C# .Net Concurrency Books?JK2009-12-09T06:41:36Z2009-12-09T08:55:13Z
<p>I have many C# books that all have one small section on Threads and maybe another on Delegates and Lamdas, however, I can't seem to find a book where the primary focus is Concurrency. Can anyone recommend a book on using Concurrency when writing C#.net apps?</p>
<p>I have found several books on Concurrency principles, but I need actual code samples.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1861114/scala-concurrency-slowing-down4Scala Concurrency slowing down Wysawyg2009-12-07T16:29:03Z2009-12-09T00:37:45Z
<p>Heya,</p>
<p>I'm doing to preface this with the fact I'm a relative Java/Scala newbie so I wouldn't rule out that there is something obvious I'm not doing.</p>
<p>I've got a Scala application which connects via Hibernate to a MySQL database. The Application is designed to process a large amount of data, about 2,750,000 records so I've tried to optimise it as much as possible.</p>
<p>It's running on my workstation which is a QuadCore Intel Xeon with 6Gb of RAM (at 1033Mhz) and it runs nicely and speedily for the first 70k records, completing them in about 15 minutes. By the time, it's got to 90k, it's taken about 25 minutes so something is making it slow to a crawl.</p>
<p>I've checked the timers on the Hibernate code and the database retrieval is taking the same about of time as usual. I've even tried forcing manual Garbage Collection to try and do that but that isn't working either.</p>
<p>The code in question looks something like:</p>
<pre><code>val recordCount = repo.recordCount
val batchSize = 100
val batches = (0 to recordCount by batchSize).toList
val batchJobs = {
for (batchStart <- batches) yield {
future(new RecordFormatter().formatRecords(new Repo(sessionFactory.openSession),batchStart,batchSize)
}
awaitAll(100000,batchJobs: *_)
</code></pre>
<p>Inside the RecordFormatter (which isn't actually named that in case you wonder at my naming scheme madness), it does a query for the next 100 records then another query to pull back the actual records (using between on the start and end values) then writes them out to a text file as CSV. Looking at the timer output, each operation within the record formatter takes about 5 seconds to pull back the records and then 0.1 of a second to output it to file.</p>
<p>Despite this once it has slowed down, it is only processing about 12 batches of 100 records per minute as opposed to 40 batches of 100 records per minute when the process first starts.</p>
<p>It's flushing the Session at regular intervals and closing it at the end of each RecordFormatter run (each RecordFormatter has its own session).</p>
<p>I'm mostly looking for any known gotchas with Scala and the Futures. I have noticed that when its slowing down, it doesn't seem to be using all eight possible threads which could certainly explain the drop in speed but it's a mystery to me why it would suddenly stop and always around the 75k record mark.</p>
<p>Thanks!</p>
<p>EDIT: Updated code to show it uses yield and awaitAll in case that makes a difference.</p>
http://stackoverflow.com/questions/1869421/is-there-a-unix-pthreads-equivalent-to-windows-manual-reset-events2Is there a UNIX/pthreads equivalent to Windows manual reset events?BeeOnRope2009-12-08T19:56:20Z2009-12-09T00:30:59Z
<p>Briefly, a manual reset event is a synchronization construct which is either in the "signaled" or "nonsignaled" state. In the signaled state, any thread which calls a <a href="http://msdn.microsoft.com/en-us/library/ms687032%28VS.85%29.aspx" rel="nofollow">wait function</a> on the event will not block and execution will continue unaffected. Any and all threads which calls a wait function on a nonsignaled object will block until the event enters the signaled state.</p>
<p>The the transition between the signaled and nonsignaled states occurs only as a result of explicit calls to functions such as <a href="http://msdn.microsoft.com/en-us/library/ms686211%28VS.85%29.aspx" rel="nofollow">SetEvent</a> and <a href="http://msdn.microsoft.com/en-us/library/ms685081%28VS.85%29.aspx" rel="nofollow">ResetEvent</a>.</p>
<p>I've built a synchronization mechanism on Windows which uses both these manual reset events and their auto-reset siblings. The auto-reset mechanism can be easily replicated with a semaphore, but I'm struggling to find an equivalent for the manual-reset variety.</p>
<p>In particular, while a condition variable with "notify all" functionality might appear similar at first glance, it has considerably different (perhaps non-functional) behavior when you consider the fact that it requires an associated mutex. First, before the thread can wait on a condvar, it must get the associated mutex. In addition to the cost of getting and releasing the mutex, this serializes unnecessarily all the threads which are about to wait. On wake, even though all threads are notified, only one thread will actually get the mutex at a time, incurring additional performance and concurrency penalties, since the mutex serves no purpose in this case.</p>
<p>The release case is especially poor on a multi-CPU system given that the simultaneous release of all waiters guarantees that the difference between a condvar and a Windows event will be observable - with an Event, at N threads will become runnable on an N CPU system, and can run in parallel, while with a condvar - even with an implementation that avoids the thundering herd - the threads can only leak out one at a time through the associated mutex.</p>
<p>Any pointers to a construct that better imitates the behavior of manual reset events would be greatly appreciated. The closest I can find is a barrier - this allows the unsynchronized approach and release of multiple threads to the barrier - but the barrier "breaks" based on waiting thread count rather than an explicit application call, which is what I need.</p>
http://stackoverflow.com/questions/1566900/what-are-other-modern-free-analogs-of-squeak-and-esterel0What are other modern, free analogs of Squeak and Esterel?Johnicholas2009-10-14T15:02:27Z2009-12-08T23:44:48Z
<p>A long time ago, Rob Pike and Luca Cardelli wrote a <a href="http://doc.cat-v.org/bell%5Flabs/squeak/" rel="nofollow">paper</a> called "Squeak: a language for communicating with mice". It was based on Hoare's communicating sequential processes, but it was compiled into single-threaded C code - no threads or scheduler at runtime. However, I can't find a compiler for Squeak, and Rob Pike went on to write <a href="http://herpolhode.com/rob/" rel="nofollow">newsqueak</a>, which does have a nondeterministic scheduler at runtime, and so isn't what I want.</p>
<p>Esterel is also a language with a lot of support for concurrency, which can be compiled into single-threaded C code - but Esterel Technologies sells SCADE Studio for so much money, they won't even say how much it costs on their <a href="http://www.esterel-technologies.com/" rel="nofollow">web page</a>.</p>
<p>The Columbia Esterel Compiler is <a href="http://www1.cs.columbia.edu/~sedwards/cec/" rel="nofollow">available</a>. Are there other modern languages that compile "multi-threaded" algorithms into single-threaded, deterministic output?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1869959/what-does-atomicreference-compareandset-use-for-determination1What does AtomicReference.compareAndSet() use for determination?Rapier2009-12-08T21:26:56Z2009-12-08T21:33:01Z
<p>Say you have the following class</p>
<pre><code>public class AccessStatistics {
private final int noPages, noErrors;
public AccessStatistics(int noPages, int noErrors) {
this.noPages = noPages;
this.noErrors = noErrors;
}
public int getNoPages() { return noPages; }
public int getNoErrors() { return noErrors; }
}
</code></pre>
<p>and you execute the following code</p>
<pre><code>private AtomicReference<AccessStatistics> stats =
new AtomicReference<AccessStatistics>(new AccessStatistics(0, 0));
public void incrementPageCount(boolean wasError) {
AccessStatistics prev, newValue;
do {
prev = stats.get();
int noPages = prev.getNoPages() + 1;
int noErrors = prev.getNoErrors;
if (wasError) {
noErrors++;
}
newValue = new AccessStatistics(noPages, noErrors);
} while (!stats.compareAndSet(prev, newValue));
}
</code></pre>
<p>In the last line <code>while (!stats.compareAndSet(prev, newValue))</code> how does the <code>compareAndSet</code> method determine equality between <code>prev</code> and <code>newValue</code>? Is the <code>AccessStatistics</code> class required to implement an <code>equals()</code> method? If not, why? The javadoc states the following for <code>AtomicReference.compareAndSet</code></p>
<blockquote>
<p>Atomically sets the value to the given updated value if the current value == the expected value.</p>
</blockquote>
<p>... but this assertion seems very general and the tutorials i've read on AtomicReference never suggest implementing an equals() for a class wrapped in an AtomicReference.</p>
<p>If classes wrapped in AtomicReference are required to implement equals() then for objects more complex than <code>AccessStatistics</code> I'm thinking it may be faster to synchronize methods that update the object and not use AtomicReference.</p>
http://stackoverflow.com/questions/1856478/is-there-an-existing-solution-to-the-multithreaded-data-structure-problem5Is there an existing solution to the multithreaded data structure problem?thr2009-12-06T20:18:49Z2009-12-08T01:19:00Z
<p>I've had the need for a multi-threaded data structure that supports these claims:</p>
<ul>
<li>Allows multiple concurrent readers and writers</li>
<li>Is sorted</li>
<li>Is easy to reason about</li>
</ul>
<p>Fulfilling multiple readers and one writer is a lot easier, but I really would wan't to allow multiple writers. </p>
<p>I've been doing research into this area, and I'm aware of ConcurrentSkipList (by Lea based on work by Fraser and Harris) as it's implemented in Java SE 6. I've also implemented my own version of a concurrent Skip List based on <a href="http://www.cs.tau.ac.il/~shanir/nir-pubs-web/Papers/OPODIS2006-BA.pdf" rel="nofollow">A Provably Correct Scalable Concurrent Skip
List</a> by Herlihy, Lev, Luchangco and Shavit.</p>
<p>These two implementations are developed by people that are light years smarter then me, but I still (somewhat ashamed, because it is amazing work) have to ask the question if these are the two only viable implementations of a concurrent multi reader/writer data structures available today?</p>
http://stackoverflow.com/questions/1861457/python-vs-java-which-would-you-pick-to-do-concurrent-programming-and-why2Python vs. Java -- Which would you pick to do concurrent programming and why?Mark2009-12-07T17:21:53Z2009-12-07T20:40:39Z
<p>Also, if not python or java, then would you more generally pick a statically-typed language or a dynamic-type language?</p>
http://stackoverflow.com/questions/1848576/linq-version-of-select-for-update0Linq version of SELECT FOR UPDATEAdam2009-12-04T17:50:42Z2009-12-07T18:53:16Z
<p>I'm getting a <code>ChangeConflictException</code> in my web application when the code updates a certain row within a certain table. The best I can tell it seems as though two users are completing the transaction at the same exact time and optimistic concurrency only affect the <code>SubmitChanges()</code> method instead of doing the lock when the row is selected.</p>
<p>So in other words I have a transaction like this:</p>
<pre><code>Dim query = From row in Table _
Where row.ID = <blah> _
Select row
Dim result = query.Single()
result.COLUMN = 2
dataContext.SubmitChanges()
</code></pre>
<p>The built-in optimistic concurrency locks the record when <code>SubmitChanges()</code> is called but if the record is changed after <code>Single()</code> and before <code>SubmitChanges()</code> then an error is thrown. </p>
<p>...at least that's my theory...</p>
<p>Does anyone know of a way to start the lock at the <code>Single()</code> call instead of just at <code>SubmitChanges()</code>?</p>
http://stackoverflow.com/questions/1223072/how-do-i-optimize-for-multi-core-and-multi-cpu-computers-in-java7How do I optimize for multi-core and multi-CPU computers in Java?Nosrama2009-08-03T15:43:55Z2009-12-06T23:16:20Z
<p>I'm writing a Java program which uses a lot of CPU because of the nature of what it does. However, lots of it can run in parallel. When I run it, it only seems to use one CPU until it needs more then it uses another CPU - is there anything I can do in Java to force different threads to run on different cores/CPUs?</p>
http://stackoverflow.com/questions/1854278/how-stackless-python-can-be-fast-for-concurrency-1how stackless python can be fast for concurrency ?davyzhang2009-12-06T03:48:23Z2009-12-06T06:04:39Z
<p>stackless python didn't take a good usage of multi-core, so where is the point it should be faster than python thread/multiprocessing ?</p>
<p>all the benchmark use stackless python tasklet to compare with python thread lock and queue, that's unfair, cause lock always has low efficiency </p>
<p>see, if use single thread function call <em>without</em> lock it should be as efficient as stackless python</p>
http://stackoverflow.com/questions/1853284/whats-the-difference-between-the-message-passing-and-shared-memory-concurrency-m1What's the difference between the message passing and shared memory concurrency models?Bedwyr Humphreys2009-12-05T20:04:31Z2009-12-05T20:15:01Z
<p>Correct me if I'm wrong, but I'm surprised this hasn't been asked before on here ...</p>
http://stackoverflow.com/questions/1842738/ruby-threading-deadlocks0Ruby threading deadlocksPatrick O'Doherty2009-12-03T20:35:06Z2009-12-04T13:09:29Z
<p>I'm writing a project at the moment that involves running two parallel threads to pull data from different sources at regular intervals. I am using the Threads functionality in ruby 1.9 to do this but am unfortunately running up against deadlock problems. Also I have a feeling that the <code>Thread.join</code> method is causing the threads to queue rather than run in parallel.</p>
<p>I'm new to multithreading programming and any advice would be greatly appreciated</p>
<p>Cheers</p>
<p>Patrick</p>
<p>EDIT: The shared resource that both these threads are accessing is a mysql database which could be the problem. The deadlock arrises after a few iterations of these threads being run.</p>
http://stackoverflow.com/questions/1842734/how-to-asynchronously-call-a-method-in-java1How to asynchronously call a method in JavaFelipe Hummel2009-12-03T20:34:39Z2009-12-04T12:40:34Z
<p>Hi, I've been looking at <a href="http://golang.org/doc/effective%5Fgo.html#goroutines" rel="nofollow">Go's goroutines</a> lately and thought it would be nice to have something similar in Java. As far as I've searched the common way to parallelize a method call is to do something like:</p>
<pre><code>final String x = "somethingelse";
new Thread(new Runnable() {
public void run() {
x.matches("something");
}
}).start();
</code></pre>
<p>Thats not very elegant. <strong>Is there a better way of doing this?</strong> I needed such a solution in a project so I decided to implement my own wrapper class around a async method call.</p>
<p>I published my wrapper class in <a href="http://github.com/felipehummel/j-go" rel="nofollow">J-Go</a>. But I don't know if it is a good solution. The usage is simple:</p>
<pre><code>SampleClass obj = ...
FutureResult<Integer> res = ...
Go go = new Go(obj);
go.callLater(res, "intReturningMethod", 10); //10 is a Integer method parameter
//... Do something else
//...
System.out.println("Result: "+res.get()); //Blocks until intReturningMethod returns
</code></pre>
<p>or less verbose:</p>
<pre><code>Go.with(obj).callLater("myRandomMethod");
//... Go away
if (Go.lastResult().isReady()) //Blocks until myRandomMethod has ended
System.out.println("Method is finished!");
</code></pre>
<p>Internally I'm using a class that implements Runnable and do some Reflection work to get the correct method object and invoking it.</p>
<p>I want some opinion about my tiny library and on the subject of making async method calls like this in Java. Is it safe? Is there already a simplier way?</p>
http://stackoverflow.com/questions/931643/assigning-data-entry-tasks-to-multiple-concurrent-web-app-users0Assigning data-entry tasks to multiple concurrent web-app usersjacksun2009-05-31T08:30:55Z2009-12-04T12:00:05Z
<p>I'm trying to think of an efficient way to allow a group of people to work through a queue of data entry tasks. Previously we've just had one person doing this so it hasn't been an issue. The back-end is an RDBMS and the front-end is a web-application.</p>
<p>Currently we do something like this:</p>
<p>To assign a record for editing:</p>
<pre><code>SELECT * FROM records WHERE in_edit_queue LIMIT 1;
</code></pre>
<p>Then,</p>
<p>To save changes to a previously assigned record:</p>
<pre><code>UPDATE records SET ..., in_edit_queue = false
WHERE id = ? AND in_edit_queue = true;
</code></pre>
<p>This means it's possible for two users to be assigned the same record to edit, and we favor the first one that submits, failing silently on subsequent submissions, e.g.:</p>
<ol>
<li>User A loads up record 321 for editing</li>
<li>User B loads up record 321 for editing</li>
<li>User B submits changes (they are saved in the DB)</li>
<li>User A submits changes (they are not saved in the DB)</li>
</ol>
<p>(Note: We can trust all our users to submit acceptable data, so there is no need for us to keep the data from the second <code>UPDATE</code>.)</p>
<p>The problem with this method is when users start at the same time and edit at roughly the same speed, they are often updating the same records but only 1 of them is getting saved. In other words, wasting a lot of man-hours. I can mitigate this to some extent by picking random rows but I'd prefer something a bit more guaranteed.</p>
<p>So here's what I'm thinking...</p>
<p>Have a table called: <code>locked_records (record_id integer, locked_until timestamp)</code></p>
<pre><code>-- Assign a record for editing:
-- Same as before but also make sure the
-- record is not listed in locked_records...
SELECT * FROM records
WHERE in_edit_queue AND id NOT IN (
SELECT record_id FROM locked_records
WHERE locked_until > now() )
LIMIT 1;
-- ..and effectively remove it from
-- the queue for the next 5 minutes
INSERT INTO locked_records (record_id, locked_until)
VALUES (?, now() + 300);
</code></pre>
<p>Then:</p>
<pre><code>UPDATE records SET ..., in_edit_queue = false
WHERE id = ? AND in_edit_queue = true;
DELETE FROM locked_records WHERE record_id = ?;
</code></pre>
<p>A typical edit takes about 30 seconds to 1 minute, 5 minutes out of the queue should be a good amount. I can also have an XHR on the web app keep updating the lock if it turned out to be advantageous.</p>
<p>Can anyone offer thoughts on this? Sound like a good way of doing things? Sound like a terrible way? Done this before? I'd love to hear some feedback.</p>
<p>Thanks!
J</p>
http://stackoverflow.com/questions/1845642/is-it-ok-to-change-a-model-outside-the-swing-worker-thread1Is it OK to change a model outside the Swing worker thread?Carl Smotricz2009-12-04T08:32:38Z2009-12-04T08:42:34Z
<p>In a "serious" Java GUI app, you'll have models behind many of your GUI elements: A <code>DocumentModel</code> backing a <code>JEditorPane</code>, for example, or a <code>ListModel</code> behind a <code>JList</code>.</p>
<p>We're always told not to make GUI changes from outside the Swing worker thread and given <code>SwingUtilities.invoke...()</code> for working around that. Fine, I can live with that! It's certainly necessary (and works well) when changing attributes of GUI components directly.</p>
<p>Ideally, most of my GUI-visible changes will be to models, not to JComponents, anyway. But because they're GUI-visible, do they "count" as GUI changes? I.e. do change events and listeners provide the necessary decoupling, or do model changes need to be wrapped in <code>invoke...()</code> as well?</p>
<p>Probably old hat to Swing pros, but I wasn't able to find any reference that clearly states one way or another.</p>
http://stackoverflow.com/questions/1840202/threadlocals-hard-to-use1ThreadLocals hard to usepmf2009-12-03T14:29:19Z2009-12-03T16:57:04Z
<p>I'm using <code>ThreadLocal</code> variables (through Clojure's vars, but the following is the same for plain <code>ThreadLocal</code>s in Java) and very often run into the issue that I can't be sure that a certain code path will be taken on the same thread or on another thread. For code under my control this is obviously not too big a problem, but for polymorphic third party code there's sometimes not even a way to statically determine whether it's safe to assume single threaded execution.</p>
<p>I tend to think this is a inherent issue with <code>ThreadLocal</code>s, but I'd like to hear some advise on how to use them in a safe way.</p>