Tagged Questions
Situation where two (or more) operations need overlapping sets of resources, and neither can complete because they cannot obtain all locks necessary to complete an operation and release their locks.
69
votes
23answers
15k views
Diagnosing Deadlocks in SQL Server 2005
We're seeing some pernicious, but rare, deadlock conditions in the Stack Overflow SQL Server 2005 database.
I attached the profiler, set up a trace profile using this excellent article on ...
37
votes
5answers
24k views
Recursive Lock (Mutex) vs Non-Recursive Lock (Mutex)
POSIX allows mutexes to be recursive. That means the same thread can lock the same mutex twice and won't deadlock. Of course it also needs to unlock it twice, otherwise no other thread can obtain the ...
36
votes
17answers
2k views
Is it possible for a thread to Deadlock itself?
Is it technically possible for a thread in Java to deadlock itself?
I was asked this at an interview a while back and responded that it wasn't possible but the interviewer told me that it is. ...
28
votes
5answers
14k views
How to avoid mysql 'Deadlock found when trying to get lock; try restarting transaction'
I have a innoDB table which records online users. It gets updated every page refresh by a user to keep track of which pages they are on and their last access date to the site. I then have a cron that ...
25
votes
9answers
1k views
Write a program that will surely go into deadlock
I recently got this questions asked in an interview.
I answered that deadlock occurs if the interleaving goes wrong, but the interviewer insisted that a program that will always go into deadlock ...
25
votes
4answers
3k views
Re-entrant locks in C#
Will the following code result in a deadlock using C# on .NET?
class MyClass
{
private object lockObj = new object();
public void Foo()
{
lock(lockObj){
Bar();
...
24
votes
14answers
14k views
Deadlock in Java
Long time ago, I saved a sentence from a Java reference book: "Java has no mechanism to handle deadlock. it won't even know deadlock occurred." (Head First Java 2nd Edition, p.516)
So, what is about ...
17
votes
10answers
3k views
Zero SQL deadlock by design - any coding patterns?
I am encountering very infrequent yet annoying SQL deadlocks on a .NET 2.0 webapp running on top of MS SQL Server 2005. In the past, we have been dealing with the SQL deadlocks in the very empirical ...
15
votes
3answers
5k views
How to catch SqlException caused by deadlock?
From a .NET 3.5 / C# app, I would like to catch SqlException but only if it is caused by deadlocks on a SQL Server 2008 instance.
Typical error message is Transaction (Process ID 58) was deadlocked ...
14
votes
9answers
4k views
What are common reasons for deadlocks?
Deadlocks are hard to find and very uncomfortable to remove.
How can I find error sources for deadlocks in my code? Are there any "deadlock patterns"?
In my special case, it deals with databases, ...
13
votes
3answers
385 views
update and insert queries creating a deadlock
I will try to explain my problem as detailed as possible, and i would appreciate any help/suggestion. My problem is regarding a deadlock being caused by two queries (one insert and one update). I'm ...
13
votes
5answers
341 views
Locking strategies and techniques for preventing deadlocks in code
The common solution to preventing deadlock in code is to make sure the sequence of locking occur in a common manner regardless of which thread is accessing the resources.
For example given threads T1 ...
12
votes
10answers
10k views
Simple Deadlock Examples
I would like to explain threading deadlocks to newbies. I have seen many examples for deadlocks in the past, some using code and some using illustrations (like the famous 4 cars). There are also ...
11
votes
3answers
117 views
Static analysis tool to detect multithreading problems (deadlocks, race conditions, not-looped wait, etc.)
I am shopping for a STATIC ANALYSIS TOOL that can tell me if our code suffers from deadlocks, race conditions and bad practices in general.
I know that FindBugs and PMD do already something like ...
11
votes
4answers
536 views
Is fork (supposed to be) safe from signal handlers in a threaded program?
I'm really uncertain about the requirements POSIX places on the safety of fork in the presence of threads and signals. fork is listed as one of the async-signal-safe functions, but if there is a ...
11
votes
8answers
2k views
Programmatic deadlock detection in java
How can I programmatically detect that a deadlock has occurred in a Java program?
11
votes
6answers
3k views
What is a deadlock?
When writing multi-threaded applications, one of the most common problems experienced are deadlocks.
My question to the community, is:
What is a deadlock? How do you detect them? Do you handle ...
10
votes
2answers
162 views
Does WebSphere 7 HTTPSession implementation contravene J2EE spec?
Saw a problem recently where all 200 web container threads became hung, meaning none were available to service incoming requests and so the application froze.
Here is a simple web app and JMeter test ...
10
votes
2answers
187 views
Deadlock in Java code with Semaphore and acquire(int)
I have the following Java code:
import java.util.concurrent.*;
class Foo{
static Semaphore s = new Semaphore(1);
public void fun(final char c, final int r){
new Thread(new ...
10
votes
4answers
1k views
How to implement a lock in JavaScript
How could something equivalent to lock in C# be implemented in JavaScript?
So, to explain what I'm thinking a simple use case is:
User clicks button B. B raises an onclick event. If B is in ...
10
votes
3answers
1k views
Java Static-block Shutdown Hook with System.exit
This code will deadlock:
public class Main {
static public final Object a = new Object();
static {
Runtime.getRuntime().addShutdownHook(new Thread() {
@Override
public ...
10
votes
6answers
2k views
Sample code to illustrate a deadlock by using lock(this)
I've read several articles and posts that say that lock(this), lock(typeof(MyType)), lock("a string") are all bad practice because another thread could lock on the same key and cause a deadlock. In ...
9
votes
4answers
180 views
Program hangs if thread is created in static initializer block
I have come across a situation where my program hangs, looks like deadlock. But I tried figuring it out with jconsole and visualvm, but they didn't detect any deadlock. Sample code:
public class ...
9
votes
4answers
3k views
How to debug a deadlock?
Other than that I don't know if I can reproduce it now that it's happened (I've been using this particular application for a week or two now without issue), assuming that I'm running my application in ...
8
votes
3answers
127 views
Java wait()/join(): Why does this not deadlock?
Given the following Java code:
public class Test {
static private class MyThread extends Thread {
private boolean mustShutdown = false;
@Override
public synchronized ...
8
votes
1answer
304 views
Why would fclose hang / deadlock? (Windows)
I have a directory change monitor process that reads updates from files within a set of directories. I have another process that performs small writes to a lot of files to those directories (test ...
8
votes
3answers
1k views
Are all deadlocks caused by a bad query
"Transaction (Process ID 63) was deadlocked on lock | communication buffer resources with another process and has been chosen as the deadlock victim. Rerun the transaction.". Possible failure reasons: ...
8
votes
1answer
895 views
Joining a boost::thread instance in the destructor
I'm seeing an issue where a call to boost's thread->join in a destructor leads to a deadlock. I don't understand why, and I'm not too keen on keeping code that just works (and I don't understand why ...
7
votes
1answer
174 views
System.out.println eventually blocks
I have an application that consolidates all of its logging into a single-instance class in order to facilitate selective debug printing etc. The class has been around for a year or so working ...
7
votes
3answers
1k views
Java process.getInputStream() has nothing to read, deadlocks child
I am having an issue with some process wrapping, and it's only occurring in Windows XP. This code works perfectly in Windows 7. I'm really stumped as to why the streams are empty in XP. I've also ...
7
votes
3answers
644 views
MySQL return Deadlock with insert row and FK is locked 'for update'
I get deadlock error in my mysql transaction.
The simple example of my situation:
Thread1 > BEGIN;
Query OK, 0 rows affected (0.00 sec)
Thread1 > SELECT * FROM A WHERE ID=1000 FOR UPDATE;
1 ...
7
votes
13answers
699 views
How to explain the “deadlock” better?
I am struggling to explain "deadlock" in threads in easy words, so please help. What could be the best example of "deadlock" (say, in Java), and how it does happen in steps and how to prevent it? But ...
7
votes
8answers
761 views
Threads and simple Dead lock cure
When dealing with threads (specifically in C++) using mutex locks and semaphores is there a simple rule of thumb to avoid Dead Locks and have nice clean Synchronization?
7
votes
1answer
1k views
Why doesn't anyone care about this MySQLdb bug? is it a bug?
TL;DR: I've supplied a patch for a bug I found and I've got 0 feedback on it. I'm wondering if it's a bug at all. This is not a rant. Please read this and if you may be affected by it check the fix.
...
7
votes
6answers
2k views
When is it appropriate to use NOLOCK?
I am having timeout issues and deadlocks from time to time with some long running queries.
I'm wondering when is it most appropriate to use NOLOCK and where?
Do I use it on the updates & ...
7
votes
8answers
11k views
SQL Server deadlocks between select/update or multiple selects
All of the documentation on SQL Server deadlocks talks about the scenario in which operation 1 locks resource A then attempts to access resource B and operation 2 locks resource B and attempts to ...
7
votes
5answers
1k views
ORM Support for Handling Deadlocks
Do you know of any ORM tool that offers deadlock recovery? I know deadlocks are a bad thing but sometimes any system will suffer from it given the right amount of load. In Sql Server, the deadlock ...
7
votes
8answers
6k views
Detecting deadlocks in a C# application [closed]
Possible Duplicate:
C#/.NET analysis tool to find race conditions/deadlocks
I am debugging an application that I suspect is getting deadlocked and hanging. However, this only occurs every ...
7
votes
4answers
4k views
Deadlock in ThreadPool
I couldn't find a decent ThreadPool implementation for Ruby, so I wrote mine (based partly on code from here: http://snippets.dzone.com/posts/show/3276 , but changed to wait/signal and other ...
7
votes
13answers
5k views
Database: What is Multiversion Concurrency Control (MVCC) and who supports it?
Recently Jeff has posted regarding his trouble with database deadlocks related to reading. Multiversion Concurrency Control claims to solve this problem. What is it, and what databases support it?
...
6
votes
3answers
80 views
How to successfully cause deadlock
I'm trying to cause deadlock in C# for simulation purposes. Just a quick program.
Could anyone kindly suggest some ideas for doing so?
6
votes
1answer
166 views
How can I work around this apparent EhCache deadlock?
Using ehCache 2.4.4, I seem to have gotten into a deadlock on the ehCache Segment object. From other logging, I know that the 'waiting thread', 1694 last ran anything 9 hours before this stack trace ...
6
votes
1answer
127 views
Scala deadlock with parallel collections
Why does the following code create a deadlock:
object Test extends Application
{
def printProgress(i:Int) =
{
println("Processed " + i)
}
println("A")
(1 to 1000).par.foreach{ i => ...
6
votes
2answers
161 views
What is “dreadlock”? (note the “R”)
Heard many times of deadlocks, but what is a dreadlock in the context of multithreaded programming?
Update: IAbstract's answer links to a whitepaper which explains the algorithm named dreadlock (not ...
6
votes
3answers
371 views
What is the proper way to access BerkeleyDB with Perl?
I've been having some problems with using BerkeleyDB. I have multiple instances of the same code pointed to a single repository of DB files, and everything runs fine for 5-32 hours, then suddenly ...
6
votes
2answers
263 views
How does Io language detect deadlock automatic?
I read that Io language has Futures which can detect deadlock automatic. I know nothing about it and have seen some syntax. How does Io language detect deadlocks with this?
6
votes
3answers
5k views
TransactionScope Prematurely Completed
I have a block of code that runs within a TransactionScope and within this block of code I make several calls to the DB. Selects, Updates, Creates, and Deletes, the whole gamut. When I execute my ...
6
votes
5answers
1k views
Deadlock sample in .net?
Can anybody give a simple Deadlock sample code in c# ? And please tell the simplest way to find deadlock in your C# code sample. (May be the tool which will detect the dead lock in the given sample ...
6
votes
4answers
316 views
Thread Deadlock
I have 2 threads. One thread prints odd numbers and the second thread prints even numbers. Now, I have to execute the threads alternatively so that i can output 1,2,3,4,5,6,.....
I have written a ...
6
votes
1answer
718 views
Mysql transaction waiting for lock which is already granted .. This is causing deadlock
If following situation a bug in mysql?.
Mysql Version: mysql.x86_64 5.0.77-4.el5_4.1
Kernel: Linux box2 2.6.18-128.el5 #1 SMP Wed Jan 21 10:41:14 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
...