47
votes
26answers
6k 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 …
12
votes
6answers
3k 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 …
10
votes
9answers
1k 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 …
8
votes
3answers
692 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();
…
7
votes
10answers
767 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, …
7
votes
11answers
2k 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 …
6
votes
5answers
492 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 …
5
votes
3answers
182 views
Python embedding with threads — avoiding deadlocks?
Is there any way to embed python, allow callbacks from python to C++, allowing the Pythhon code to spawn threads, and avoiding deadlocks?
The problem is this:
To call into Python, I need to hold …
5
votes
9answers
454 views
Can the server use the same socket to send the response to the client? how?
I am using Berkeley sockets (both: Internet domain and Unix domain) and I was wondering if the server can use the same sockets for reading the request and writing a response to the client. Or should …
5
votes
6answers
366 views
Diagnosing Deadlocks in Win32 Program
What are the steps and techniques to debug an apparent hang due to a deadlock in a Win32 production process. I heard that WinDbg can be used for this purpose but could you please provide clear hints …
4
votes
1answer
81 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 …
4
votes
4answers
356 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 …
4
votes
6answers
436 views
Programmatic deadlock detection in java
How can I programmatically detect that a deadlock has occurred in a Java program?
4
votes
2answers
479 views
Why does the following SQL Server insert deadlock when run within a transaction?
I'm currently inserting a record into a SQL Server Table and then selecting the auto-increment ID as follows:
(@p0 int,@p1 nvarchar(8))INSERT INTO [dbo].[Tag]([Some_Int], [Tag])
VALUES (@p0, @p1)
…
4
votes
1answer
856 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.
…
