active questions tagged deadlock - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T06:59:03Zhttp://stackoverflow.com/feeds/tag/deadlockhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1903326/reproducible-deadlock-using-cascading-constraints0Reproducible Deadlock Using Cascading ConstraintsJonathan Kehayias2009-12-14T20:33:26Z2009-12-14T20:33:26Z
<p>I am looking for code to generate a reproducible deadlock that occurs from the use of Cascading Constraints. I can find references online for the specific problem, and I have answered dozens of questions on deadlocks where cascading constraints were in use, but none of them has a reproducible version of the deadlock.</p>
<p>I am not looking for information about how to troubleshoot a deadlock, capture or read the deadlock graph, or that I should use trace flags to get a deadlock graph. I got all that, I want to see the specifics of the locking that lead to this specific type of deadlock. If you can provide the specifics that allow me to write a reproduction of this deadlock, that's a good enough answer. </p>
<p>I have numerous scripts to reproduce other types of deadlocks involving Bookmark Lookups, inconsistent table access in stored procedures using explicit transactions, and existence checks under serializable isolation. I just can't figure out a reproduction for a Cascading Constraint deadlock.</p>
http://stackoverflow.com/questions/1770890/no-managed-thread-in-dump-created-by-orphaning-iis-application-pool-of-64-bit-asp0No managed thread in dump created by orphaning IIS application pool of 64 bit ASP.NETJan Suvak2009-11-20T14:45:27Z2009-12-14T13:54:12Z
<p>I need to find reason for Event ID 2262, Deadlock Detected of our ASP.NET application (64bit). It happens 1-3 times per day on our development server.</p>
<p>I created mini dump with full memory by orphaning the Application Pool as is described here: <a href="http://support.microsoft.com/kb/828222" rel="nofollow">http://support.microsoft.com/kb/828222</a></p>
<p>I opened the dump with windbg and tried to find some managed thread: ~*e !clrstack</p>
<p>I received for all threads: Unable to walk the managed stack. The current thread is likely not a managed thread. You can run !threads to get a list of managed threads in the process</p>
<p>The same result I get when I take dump from command line (executing the same command as orphaning is set up for).</p>
<p>Should I take or view dump in different way?</p>
<p>For make windbg working I execute following commands:
.load c:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorwks.dll
.load c:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscordacwks.dll
.load c:\Windows\Microsoft.NET\Framework64\v2.0.50727\sos.dll
.symfix "c:\Program Files\Debugging Tools for Windows (x64)\cache"
.cordll -ve -u -l</p>
<p>And I have following dll in the dbg tools folder: mscordacwks_AMD64_X64_2.0.50727.3603.dll (taken from Framework64 directory).</p>
<p>I tried to explore all our logs and I didn't find any correlated data with deadlock failure time stamps. I reviewed and stressed the code committed into svn on the date of fist deadlock and several days before - no deadlock happened during the stress.</p>
<p>I bet on clr stack, thanks for any help,
Jan</p>
http://stackoverflow.com/questions/1899015/tools-for-implementing-a-watchdog-timer-in-python2Tools for implementing a watchdog timer in pythonVictor Shnayder2009-12-14T05:04:20Z2009-12-14T06:59:42Z
<p>I'm writing some code for testing multithreaded programs (student homework--likely buggy), and want to be able to detect when they deadlock. When running properly, the programs regularly produce output to stdout, so that makes it fairly straightforward: if no output for X seconds, kill it and report deadlock. Here's the function prototype:</p>
<pre><code>def run_with_watchdog(command, timeout):
"""Run shell command, watching for output. If the program doesn't
produce any output for <timeout> seconds, kill it and return 1.
If the program ends successfully, return 0."""
</code></pre>
<p>I can write it myself, but it's a bit tricky to get right, so I would prefer to use existing code if possible. Anyone written something similar? </p>
<p><hr></p>
<p>Ok, see solution below. The subprocess module might also be relevant if you're doing something similar.</p>
http://stackoverflow.com/questions/1892619/threads-and-simple-dead-lock-cure6Threads and simple Dead lock curetuckster2009-12-12T07:04:36Z2009-12-12T17:36:59Z
<p>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? </p>
http://stackoverflow.com/questions/704638/threadpool-queueuserworkitem-and-deadlock-on-shutdown1ThreadPool, QueueUserWorkItem and Deadlock on ShutdownSmasher2009-04-01T08:46:53Z2009-12-11T07:33:39Z
<p>I just implemented a thread pool like described here</p>
<p><a href="http://blogs.embarcadero.com/abauer/2007/09/19/38822" rel="nofollow">Allen Bauer on thread pools</a></p>
<p>Very simple implementation, works fine, but my application no longer shuts down. Seems that two worker threads (and one other thread, I guess the queuing thread) stuck in the function</p>
<pre><code>ntdll.ZwRemoveIoCompletion
</code></pre>
<p>I remember to have read something about IO completions in the help entry for QueueUserWorkItem (the WinAPI function used in the thread pool implementation), but I couldn't understand it properly. I used WT_EXECUTELONGFUNCTION for my worker threads since execution can take a while and I want a new worker thread created instead of waiting for the existing ones to finish. Some of the tasks assigned to the worker threads perform some I/O stuff. I tried to use WT_EXECUTEINIOTHREAD but it does not seem to help.</p>
<p>I should mention that the main thread waits for entry to a critical section witht the call stack being</p>
<pre><code>System.Halt0, System.FinalizeUnits, Classes.Finalization, TThread.Destroy,
RtlEnterCriticalSection, RtlpWaitForCriticalSection
</code></pre>
<p>Any ideas what I'm doing wrong here? Thanks for your help in advance.</p>
http://stackoverflow.com/questions/320636/how-to-get-efficient-sql-server-deadlock-handling-in-c-with-ado0How to get efficient Sql Server deadlock handling in C# with ADO?Victor Rodrigues2008-11-26T13:03:43Z2009-12-09T01:33:22Z
<p>I have a class 'Database' that works as a wrapper for ADO.net. For instance, when I need to execute a procedure, I call Database.ExecuteProcedure(procedureName, parametersAndItsValues).</p>
<p>We are experiencing serious problems with Deadlock situations in SQL Server 2000. A part of our team is working on the sql code and transactions to minimize these events, but I'm thinking about making this Database class robust against deadlock situations.</p>
<p>I wish the deadlock victim could be able to redo its locked actions, try again after some time, but I don't know if it is possible. There is the code for a method we use:</p>
<pre><code>public int ExecuteQuery(string query)
{
int rows = 0;
try
{
Command.Connection = Connection;
Command.CommandType = CommandType.Text;
if(DatabaseType != enumDatabaseType.ORACLE)
Command.CommandText = query;
else
Command.CommandText ="BEGIN " + query + " END;";
if (DatabaseType != enumDatabaseType.SQLCOMPACT)
Command.CommandTimeout = Connection.ConnectionTimeout;
if (Connection.State == ConnectionState.Closed)
Connection.Open();
rows = Command.ExecuteNonQuery();
}
catch (Exception exp)
{
//Could I add here any code to handle it?
throw new Exception(exp.Message);
}
finally
{
if (Command.Transaction == null)
{
Connection.Close();
_connection.Dispose();
_connection = null;
Command.Dispose();
Command = null;
}
}
return rows;
}
</code></pre>
<p>Can I do this handling inside a catch block?</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-200547Diagnosing Deadlocks in SQL Server 2005Jeff Atwood2008-08-21T14:18:41Z2009-12-06T05:13:43Z
<p>We're seeing some pernicious, but rare, deadlock conditions in the Stack Overflow SQL Server 2005 database.</p>
<p>I attached the profiler, set up a trace profile using <a href="http://www.simple-talk.com/sql/learn-sql-server/how-to-track-down-deadlocks-using-sql-server-2005-profiler/" rel="nofollow">this excellent article on troubleshooting deadlocks</a>, and captured a bunch of examples. The weird thing is that <strong>the deadlocking write is <em>always</em> the same</strong>:</p>
<pre><code>UPDATE [dbo].[Posts]
SET [AnswerCount] = @p1, [LastActivityDate] = @p2, [LastActivityUserId] = @p3
WHERE [Id] = @p0
</code></pre>
<p>The other deadlocking statement varies, but it's usually some kind of trivial, simple <strong>read</strong> of the posts table. This one always gets killed in the deadlock. Here's an example</p>
<pre><code>SELECT
[t0].[Id], [t0].[PostTypeId], [t0].[Score], [t0].[Views], [t0].[AnswerCount],
[t0].[AcceptedAnswerId], [t0].[IsLocked], [t0].[IsLockedEdit], [t0].[ParentId],
[t0].[CurrentRevisionId], [t0].[FirstRevisionId], [t0].[LockedReason],
[t0].[LastActivityDate], [t0].[LastActivityUserId]
FROM [dbo].[Posts] AS [t0]
WHERE [t0].[ParentId] = @p0
</code></pre>
<p>To be perfectly clear, we are not seeing write / write deadlocks, but read / write.</p>
<p>We have a mixture of LINQ and parameterized SQL queries at the moment. We have added <code>with (nolock)</code> to all the SQL queries. This may have helped some. We also had a single (very) poorly-written badge query that I fixed yesterday, which was taking upwards of 20 seconds to run every time, and was running every minute on top of that. I was hoping this was the source of some of the locking problems!</p>
<p>Unfortunately, I got another deadlock error about 2 hours ago. Same exact symptoms, same exact culprit write.</p>
<p>The truly strange thing is that the locking write SQL statement you see above is part of a very specific code path. It's <em>only</em> executed when a new answer is added to a question -- it updates the parent question with the new answer count and last date/user. This is, obviously, not that common relative to the massive number of reads we are doing! As far as I can tell, we're not doing huge numbers of writes anywhere in the app.</p>
<p>I realize that NOLOCK is sort of a giant hammer, but most of the queries we run here don't need to be that accurate. Will you care if your user profile is a few seconds out of date?</p>
<p>Using NOLOCK with Linq is a bit more difficult as <a href="http://www.hanselman.com/blog/GettingLINQToSQLAndLINQToEntitiesToUseNOLOCK.aspx" rel="nofollow">Scott Hanselman discusses here</a>.</p>
<p>We are flirting with the idea of using</p>
<pre><code>SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
</code></pre>
<p>on the base database context so that all our LINQ queries have this set. Without that, we'd have to wrap every LINQ call we make (well, the simple reading ones, which is the vast majority of them) in a 3-4 line transaction code block, which is ugly.</p>
<p>I guess I'm a little frustrated that trivial reads in SQL 2005 can deadlock on writes. I could see write/write deadlocks being a huge issue, but <em>reads?</em> We're not running a banking site here, we don't need perfect accuracy every time.</p>
<p>Ideas? Thoughts?</p>
http://stackoverflow.com/questions/1851528/mysql-deadlock-explanation-needed3Mysql deadlock explanation neededBrainCore2009-12-05T07:55:37Z2009-12-05T08:19:59Z
<p>I received the following deadlock log via "SHOW INNODB STATUS". Can someone care to explain why the transaction was aborted? It seems that Transaction 2 is holding the lock, but is also stuck requesting the same lock (except for the "waiting" part), which leads to a deadlock when Transaction 1 requires it as well.</p>
<pre><code>=====================================
091205 6:25:01 INNODB MONITOR OUTPUT
=====================================
Per second averages calculated from the last 39 seconds
----------
SEMAPHORES
----------
OS WAIT ARRAY INFO: reservation count 233826, signal count 229982
Mutex spin waits 0, rounds 1569878, OS waits 4740
RW-shared spins 517345, OS waits 227127; RW-excl spins 4390, OS waits 1945
------------------------
LATEST DETECTED DEADLOCK
------------------------
091205 6:19:35
*** (1) TRANSACTION:
TRANSACTION 0 479286429, ACTIVE 0 sec, process no 17618, OS thread id 2963139472 fetching rows
mysql tables in use 1, locked 1
LOCK WAIT 176 lock struct(s), heap size 11584
MySQL thread id 330396, query id 97467367 64-71-26-218.static.wiline.com 64.71.26.218 autotaggeruser Sorting result
SELECT api_key,completed,compute_units,created,deleted,flags,func_name,group_id,hostname,is_meta,jid,label,language,num_children,parent_ujid,priority,process_id,restartable,status,type,uid,ujid,version,wid FROM jobs WHERE status='new' and is_meta=0 ORDER BY priority asc,jid asc FOR UPDATE
*** (1) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 0 page no 17549 n bits 128 index `PRIMARY` of table `takeyourorder/jobs` trx id 0 479286429 lock_mode X waiting
Record lock, heap no 61 PHYSICAL RECORD: n_fields 26; compact format; info bits 0
0: len 8; hex 800000000000277c; asc '|;; 1: len 6; hex 00001c915499; asc T ;; 2: len 7; hex 00000006e21e2a; asc *;; 3: len 8; hex 8000000000000002; asc ;; 4: len 8; hex 8000000000000845; asc E;; 5: SQL NULL; 6: len 8; hex 8000000000002773; asc 's;; 7: len 1; hex 80; asc ;; 8: len 8; hex 8000000000000002; asc ;; 9: len 16; hex 636f72656f66746865627261696e2d75; asc coreofthebrain-u;; 10: len 4; hex 80000eb8; asc ;; 11: len 1; hex 01; asc ;; 12: len 30; hex 322e362e32202872656c6561736532362d6d61696e742c20417072203139; asc 2.6.2 (release26-maint, Apr 19;...(truncated); 13: len 30; hex 5f5f6d61696e5f5f2e3c6c616d6264613e206174203c737464696e3e3a31; asc __main__.<lambda> at <stdin>:1;; 14: len 5; hex 8000000001; asc ;; 15: len 0; hex ; asc ;; 16: len 4; hex 80000000; asc ;; 17: len 4; hex 80000005; asc ;; 18: len 4; hex 4b19fb58; asc K X;; 19: len 4; hex 4b19fb77; asc K w;; 20: len 1; hex 07; asc ;; 21: len 1; hex 80; asc ;; 22: len 4; hex 80000000; asc ;; 23: len 4; hex 80000000; asc ;; 24: len 1; hex 80; asc ;; 25: len 4; hex 80001415; asc ;;
*** (2) TRANSACTION:
TRANSACTION 0 479286425, ACTIVE 0 sec, process no 17618, OS thread id 2971134864 starting index read, thread declared inside InnoDB 500
mysql tables in use 1, locked 1
7 lock struct(s), heap size 1024, undo log entries 3
MySQL thread id 330430, query id 97467371 64-71-26-218.static.wiline.com 64.71.26.218 autotaggeruser Updating
UPDATE jobs SET status='done' WHERE jid=10099
*** (2) HOLDS THE LOCK(S):
RECORD LOCKS space id 0 page no 17549 n bits 128 index `PRIMARY` of table `takeyourorder/jobs` trx id 0 479286425 lock_mode X locks rec but not gap
Record lock, heap no 61 PHYSICAL RECORD: n_fields 26; compact format; info bits 0
0: len 8; hex 800000000000277c; asc '|;; 1: len 6; hex 00001c915499; asc T ;; 2: len 7; hex 00000006e21e2a; asc *;; 3: len 8; hex 8000000000000002; asc ;; 4: len 8; hex 8000000000000845; asc E;; 5: SQL NULL; 6: len 8; hex 8000000000002773; asc 's;; 7: len 1; hex 80; asc ;; 8: len 8; hex 8000000000000002; asc ;; 9: len 16; hex 636f72656f66746865627261696e2d75; asc coreofthebrain-u;; 10: len 4; hex 80000eb8; asc ;; 11: len 1; hex 01; asc ;; 12: len 30; hex 322e362e32202872656c6561736532362d6d61696e742c20417072203139; asc 2.6.2 (release26-maint, Apr 19;...(truncated); 13: len 30; hex 5f5f6d61696e5f5f2e3c6c616d6264613e206174203c737464696e3e3a31; asc __main__.<lambda> at <stdin>:1;; 14: len 5; hex 8000000001; asc ;; 15: len 0; hex ; asc ;; 16: len 4; hex 80000000; asc ;; 17: len 4; hex 80000005; asc ;; 18: len 4; hex 4b19fb58; asc K X;; 19: len 4; hex 4b19fb77; asc K w;; 20: len 1; hex 07; asc ;; 21: len 1; hex 80; asc ;; 22: len 4; hex 80000000; asc ;; 23: len 4; hex 80000000; asc ;; 24: len 1; hex 80; asc ;; 25: len 4; hex 80001415; asc ;;
*** (2) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 0 page no 17548 n bits 144 index `PRIMARY` of table `takeyourorder/jobs` trx id 0 479286425 lock_mode X locks rec but not gap waiting
Record lock, heap no 73 PHYSICAL RECORD: n_fields 26; compact format; info bits 0
0: len 8; hex 8000000000002773; asc 's;; 1: len 6; hex 00001c9151f5; asc Q ;; 2: len 7; hex 800000003c0110; asc < ;; 3: len 8; hex 8000000000000002; asc ;; 4: len 8; hex 800000000000083d; asc =;; 5: SQL NULL; 6: SQL NULL; 7: len 1; hex 81; asc ;; 8: len 8; hex 8000000000000002; asc ;; 9: len 16; hex 636f72656f66746865627261696e2d75; asc coreofthebrain-u;; 10: len 4; hex 80000eb8; asc ;; 11: len 1; hex 01; asc ;; 12: len 30; hex 322e362e32202872656c6561736532362d6d61696e742c20417072203139; asc 2.6.2 (release26-maint, Apr 19;...(truncated); 13: len 30; hex 5f5f6d61696e5f5f2e3c6c616d6264613e206174203c737464696e3e3a31; asc __main__.<lambda> at <stdin>:1;; 14: len 5; hex 8000000001; asc ;; 15: len 0; hex ; asc ;; 16: len 4; hex 80000000; asc ;; 17: len 4; hex 80000005; asc ;; 18: len 4; hex 4b19fb58; asc K X;; 19: SQL NULL; 20: len 1; hex 02; asc ;; 21: len 1; hex 80; asc ;; 22: len 4; hex 80000014; asc ;; 23: len 4; hex 80000000; asc ;; 24: len 1; hex 80; asc ;; 25: SQL NULL;
*** WE ROLL BACK TRANSACTION (1)
</code></pre>
http://stackoverflow.com/questions/1849972/how-to-kill-deadlocked-threads-in-java1How to kill deadlocked threads in Java?tomowind2009-12-04T22:09:53Z2009-12-04T22:27:49Z
<p>I'd like to kill threads that are stuck in deadlock state. First, we can <a href="http://stackoverflow.com/questions/217113/deadlock-in-java">detect thread ids in deadlock state</a> using the <code>findDeadlockedThreads()</code> method of the <code>ThreadMXBean</code> class in <code>java.lang.management</code>.</p>
<p>Then, I'd like to kill the threads by thread ids, and thus I have two related questions: <br/>
(1) How to get the control of a thread by thread id? <br/>
(2) How to kill a blocked thread? I think that invokting interrupt() method will give an exception to the thread and will kill the thread.</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/1796410/conversion-deadlock-problem-please-help2Conversion Deadlock problem, please help!Defdaz2009-11-25T11:40:15Z2009-11-30T20:10:18Z
<p>Hi all, really hope you can help.</p>
<p>We've got a problem with conversion deadlocking going on within one environment (the same proc + trigger works in at least four other environments). </p>
<p>The stored proc in question inserts a row into a table (cmsreceipt) that has a trigger which updates another table (cmsreceiptarchive). To try and prevent deadlocks a select on the cmsreceiptarchive table with xlock, rowlock is done before the insert to get a lock on the table that the trigger updates. This works in four versions of the db but not in this one environment (sql 2005).</p>
<p>I'll copy the deadlock graph below but to me it seems as though we're getting table scans that are taking to long to complete on table CmsReceipt and this allows another SPID running the same proc to get a shared lock on the table too and then they both try and get IX locks once they're ready to do the update on CmsReceipt.</p>
<p>I've checked the indexes (a clustered index and two non-clustered) and they match the other databases that work fine so I don't know why we're getting table scans on this db but not in the others. </p>
<p>I've tried all sorts of hints (both in the main process and the trigger) but to no avail.</p>
<p>Help! Thanks in advance for any help.</p>
<pre><code><deadlock-list>
<deadlock victim="process76d5708">
<process-list>
<process id="process76d5708" taskpriority="0" logused="0" waitresource="OBJECT: 7:1550628567:0 " waittime="4776" ownerId="34034594" transactionguid="0x4e9e61bf45eed2429a05ad44fa09ec50" transactionname="user_transaction" lasttranstarted="2009-11-24T15:51:12.280" XDES="0x1e0ca5970" lockMode="IX" schedulerid="8" kpid="14340" status="suspended" spid="57" sbid="2" ecid="0" priority="0" trancount="3" lastbatchstarted="2009-11-24T15:51:17.513" lastbatchcompleted="2009-11-24T15:49:54.807" clientapp=".Net SqlClient Data Provider" hostname="XXX" hostpid="4804" loginname="XXXX" isolationlevel="serializable (4)" xactid="34034594" currentdb="1" lockTimeout="4294967295" clientoption1="673185824" clientoption2="128056">
<executionStack>
<frame procname="XXX.dbo.Main_InsertCmsReceipt" line="43" stmtstart="2388" stmtend="3096" sqlhandle="0x03000700d7b7b271d2daf900cb9c00000100000000000000">
insert into CmsReceipt with (updlock) (
CmsReceiptId,
ModifiedAt,
ModifiedBy,
CmsMessageId,
Status,
Details,
ReceiptTimestamp,
SenderName,
SenderId
)
values (
@New_CmsReceiptId,
@New_ModifiedAt,
@New_ModifiedBy,
@New_CmsMessageId,
@New_Status,
@New_Details,
@New_ReceiptTimestamp,
@New_SenderName,
@New_SenderId
) </frame>
</executionStack>
<inputbuf>
Proc [Database Id = 7 Object Id = 1907537879] </inputbuf>
</process>
<process id="process70a1dc8" taskpriority="0" logused="0" waitresource="OBJECT: 7:1550628567:0 " waittime="4498" ownerId="34034604" transactionguid="0x6719e8b21f633a48bf47c77a62f2af2c" transactionname="user_transaction" lasttranstarted="2009-11-24T15:51:12.483" XDES="0x1e1a77970" lockMode="IX" schedulerid="6" kpid="13632" status="suspended" spid="69" sbid="2" ecid="0" priority="0" trancount="3" lastbatchstarted="2009-11-24T15:51:17.780" lastbatchcompleted="2009-11-24T15:49:54.807" clientapp=".Net SqlClient Data Provider" hostname="XXXX" hostpid="4804" loginname="XXXXXX" isolationlevel="serializable (4)" xactid="34034604" currentdb="1" lockTimeout="4294967295" clientoption1="673185824" clientoption2="128056">
<executionStack>
<frame procname="XXX.dbo.Main_InsertCmsReceipt" line="43" stmtstart="2388" stmtend="3096" sqlhandle="0x03000700d7b7b271d2daf900cb9c00000100000000000000">
insert into CmsReceipt with (updlock) (
CmsReceiptId,
ModifiedAt,
ModifiedBy,
CmsMessageId,
Status,
Details,
ReceiptTimestamp,
SenderName,
SenderId
)
values (
@New_CmsReceiptId,
@New_ModifiedAt,
@New_ModifiedBy,
@New_CmsMessageId,
@New_Status,
@New_Details,
@New_ReceiptTimestamp,
@New_SenderName,
@New_SenderId
) </frame>
</executionStack>
<inputbuf>
Proc [Database Id = 7 Object Id = 1907537879] </inputbuf>
</process>
</process-list>
<resource-list>
<objectlock lockPartition="0" objid="1550628567" subresource="FULL" dbid="7" objectname="XXX.dbo.CmsReceipt" id="lock9c4eec80" mode="S" associatedObjectId="1550628567">
<owner-list>
<owner id="process70a1dc8" mode="S"/>
</owner-list>
<waiter-list>
<waiter id="process76d5708" mode="IX" requestType="convert"/>
</waiter-list>
</objectlock>
<objectlock lockPartition="0" objid="1550628567" subresource="FULL" dbid="7" objectname="XXX.dbo.CmsReceipt" id="lock9c4eec80" mode="S" associatedObjectId="1550628567">
<owner-list>
<owner id="process76d5708" mode="S"/>
</owner-list>
<waiter-list>
<waiter id="process70a1dc8" mode="IX" requestType="convert"/>
</waiter-list>
</objectlock>
</code></pre>
<p>PS Is there an easier way than 4 spaces at the start of each line to get the xml to show?</p>
http://stackoverflow.com/questions/321036/reduce-deadlock-on-page-level-on-update-query-on-ms-sql1Reduce deadlock on PAGE level on update query on MS SQLDennis Cheung2008-11-26T15:10:48Z2009-11-29T14:29:38Z
<p>I have some funny deadlock caused by a stupid simple SQL UPDATE query, on a flat plain table, under default "READ COMMITED" transaction.</p>
<blockquote>
<p>UPDATE table SET column=@P1 WHERE PK=@P2;
While PK varchar(11), has a clustered index on it.
no trigger or table relation..etc on the table.</p>
</blockquote>
<p>I did some check and find that the deadlock happen on "PAGE" level, not at ROW/record level.
Then, I find that for each update query, it does take 100(and more) PAGE locks. (It does not make sense to me because I am updating one row at once)</p>
<p>Is there any way to prevent deadlock being happen? Or, how can reduce the number of locks it takes for one single row update without using cursor?</p>
<p>--</p>
<p>Thanks for your suggestion.</p>
<p>I had tried to rebuild the index a few times, with high and low fill factor. I had tried to make processes update different position/slice. But nothing got improved or worst.</p>
<p>--</p>
<p>I tried the SQL Server Profiler. I captued some "Lock:Deadlock Chain" and "Lock:Deadlock",
but no "Deadlock Graph" was captured. Both side are doing the simple update query in read commited, auto-commit mode.</p>
<pre><code>Lock:Deadlock Chain 17887475 1 0X01 4 myserver 2008-11-28 10:16:46.210 Parallel query worker thread was involved in a deadlock 0 971497 102 - Resource type Exchange Lock:Deadlock Chain 17887476 1 0X01 4 myserver 2008-11-28 10:16:46.210 Deadlock Chain SPID = 209 1:438102 265006271 0 0X56AF060001000000000000001B0006 27 0 - LOCK 4 - U 0 72057594040352768 1 - TRANSACTION 0 6 - PAGE mydatabase 971497 101 - Resource type Lock
Lock:Deadlock Chain 17887477 1 0X01 4 myserver 2008-11-28 10:16:46.210 Parallel query worker thread was involved in a deadlock 0 971497 102 - Resource type Exchange Lock:Deadlock Chain 17887478 1 0X01 4 myserver 2008-11-28 10:16:46.210 Deadlock Chain SPID = 54 1:426206 265006240 0 0XDE80060001000000000000001B0006 27 0 - LOCK 4 - U 0 72057594040352768 1 - TRANSACTION 0 6 - PAGE mydatabase 971497 101 - Resource type Lock
Lock:Deadlock Chain 17887479 1 0X01 4 myserver 2008-11-28 10:16:46.210 Deadlock Chain SPID = 209 1:426206 265006271 0 0XDE80060001000000000000001B0006 27 0 - LOCK 4 - U 0 72057594040352768 1 - TRANSACTION 0 6 - PAGE mydatabase 971497 101 - Resource type Lock
Lock:Deadlock Chain 17887480 1 0X01 4 myserver 2008-11-28 10:16:46.210 Parallel query worker thread was involved in a deadlock 0 971497 102 - Resource type Exchange Lock:Deadlock Chain 17887481 1 0X01 4 myserver 2008-11-28 10:16:46.210 Deadlock Chain SPID = 54 1:426066 265006240 0 0X5280060001000000000000001B0006 27 0 - LOCK 4 - U 0 72057594040352768 1 - TRANSACTION 0 6 - PAGE mydatabase 971497 101 - Resource type Lock
Lock:Deadlock Chain 17887482 1 0X01 4 myserver 2008-11-28 10:16:46.210 Deadlock Chain SPID = 209 1:426066 265006271 0 0X5280060001000000000000001B0006 27 0 - LOCK 4 - U 0 72057594040352768 1 - TRANSACTION 0 6 - PAGE mydatabase 971497 101 - Resource type Lock
Lock:Deadlock Chain 17887483 1 0X01 4 myserver 2008-11-28 10:16:46.210 Parallel query worker thread was involved in a deadlock 0 971497 102 - Resource type Exchange Lock:Deadlock Chain 17887484 1 0X01 4 myserver 2008-11-28 10:16:46.210 Deadlock Chain SPID = 209 1:425614 265006271 0 0X8E7E060001000000000000001B0006 27 0 - LOCK 4 - U 0 72057594040352768 1 - TRANSACTION 0 6 - PAGE mydatabase 971497 101 - Resource type Lock
Lock:Deadlock Chain 17887485 1 0X01 4 myserver 2008-11-28 10:16:46.210 Parallel query worker thread was involved in a deadlock 0 971497 102 - Resource type Exchange Lock:Deadlock Chain 17887486 1 0X01 4 myserver 2008-11-28 10:16:46.210 Deadlock Chain SPID = 209 1:426687 265006271 0 0XBF82060001000000000000001B0006 27 0 - LOCK 4 - U 0 72057594040352768 1 - TRANSACTION 0 6 - PAGE mydatabase 971497 101 - Resource type Lock
Lock:Deadlock Chain 17887487 1 0X01 4 myserver 2008-11-28 10:16:46.210 Parallel query worker thread was involved in a deadlock 0 971497 102 - Resource type Exchange
Lock:Deadlock Chain 17887488 1 0X01 4 myserver 2008-11-28 10:16:46.210 Deadlock Chain SPID = 209 1:425392 265006271 0 0XB07D060001000000000000001B0006 27 0 - LOCK 4 - U 0 72057594040352768 1 - TRANSACTION 0 6 - PAGE mydatabase 971497 101 - Resource type Lock
Lock:Deadlock Chain 17887489 1 0X01 4 myserver 2008-11-28 10:16:46.210 Parallel query worker thread was involved in a deadlock 0 971497 102 - Resource type Exchange
Lock:Deadlock Chain 17887491 1 0X01 4 myserver 2008-11-28 10:16:46.210 Parallel query worker thread was involved in a deadlock 0 971497 102 - Resource type Exchange
Lock:Deadlock Chain 17887493 1 0X01 4 myserver 2008-11-28 10:16:46.210 Parallel query worker thread was involved in a deadlock 0 971497 102 - Resource type Exchange
Lock:Deadlock Chain 17887494 1 0X01 4 myserver 2008-11-28 10:16:46.210 Deadlock Chain SPID = 209 1:435792 265006271 0 0X50A6060001000000000000001B0006 27 0 - LOCK 4 - U 0 72057594040352768 1 - TRANSACTION 0 6 - PAGE mydatabase 971497 101 - Resource type Lock
Lock:Deadlock Chain 17887495 1 0X01 4 myserver 2008-11-28 10:16:46.210 Parallel query worker thread was involved in a deadlock 0 971497 102 - Resource type Exchange
Lock:Deadlock Chain 17887496 1 0X01 4 myserver 2008-11-28 10:16:46.210 Deadlock Chain SPID = 209 1:438206 265006271 0 0XBEAF060001000000000000001B0006 27 0 - LOCK 4 - U 0 72057594040352768 1 - TRANSACTION 0 6 - PAGE mydatabase 971497 101 - Resource type Lock
Lock:Deadlock 17887497 myuser 0XCD85FBB269700B4AA2F4E8579D118999 209 myserver myuser 2008-11-28 10:16:45.930 1:426206 265006271 myapps 0 0XDE80060001000000000000001B0006 123 27 281 2008-11-28 10:16:46.210 myclient 0 - LOCK 4 - U 0 72057594040352768 1 - TRANSACTION 0 6 - PAGE mydatabase 971498
</code></pre>
http://stackoverflow.com/questions/1815401/how-to-kill-deadlock-in-operatingsystem-by-c-5how to kill deadlock in operatingsystem by c++ ? [closed]sherif2009-11-29T12:33:07Z2009-11-29T14:08:14Z
<p>the question is how to kill the deadlock using the c++
i want a c++ porgram to help to kill deadlock in the opertingsystem </p>
http://stackoverflow.com/questions/1812086/remove-deadlock-without-killing-session0Remove deadlock without killing sessionP Sharma2009-11-28T09:29:28Z2009-11-28T10:54:58Z
<p>Is there any workaround to remove deadlock without killing the session?</p>
http://stackoverflow.com/questions/1811526/objective-c-cocoa-threads-and-messaging-conundrum1Objective-C/Cocoa threads and messaging conundrumhyperspasm2009-11-28T04:10:38Z2009-11-28T09:24:44Z
<p>Hello,<br>
I have a problem that has been plaguing me for awhile now, I have come up with a solution which I will detail below, and although it seems to be working well I'm not super enthusiastic about it from a design point of view and I'm curious if anyone would have any recommendations about a better way to do this.</p>
<p>Basically, I have a shared resource, lets just say it's a directory of files. I have a single object that manages this resource (we'll call it an instance of class BossOfEverthing). BossOfEverthing handles adding, deleting, modifying and retrieving data from the files within that directory. When another object wants to access the shared resource it does so through the BossOfEverthing instance. BossOfEverthing uses locks internally since its client objects can and do exist on separate threads. BossOfEverthing also maintains an array of references to client objects that observe the BossOfEverthingClient protocol. When BossOfEverthing is about to change anything about the shared resource (perhaps due to a request from one of its clients) it notifies all of the clients ahead of time by calling an appropriate selector for each client so that they can all have a chance to respond first. BossOfEverthing is in fact the Boss, ie. the clients have no say so as to whether they approve of the shared resource being changed, but they are given the chance to perform any requisite cleanup activities first. The way I look at it, it's as if BossOfEverthing has many 'delegates'. The difference between what I need to do and the normal delegation pattern is that:</p>
<ol>
<li>There are many delegates/clients</li>
<li>Delegates/clients are created and destroyed many times throughout the lifetime of the BossOfEverthing instance (which in fact exists throughout the lifetime of the entire application).</li>
</ol>
<p>When an object wants to be a client of the BossOfEverthing instance it calls [BossOfEverthing addMeToYourClientsList:] (usually from its init method) and when an object wants to stop being a client of BossOfEverthing it calls [BossOfEverthing removeMeFromYourClientList:] (from its dealloc method). This way BossOfEverthing knows who to notify (and on what thread) when the shared resource changes.</p>
<p>Normally I would have used notifications or KVO to message the clients, but the hitch is that all of the clients need to have a chance to respond appropriately BEFORE the resource actually changes (like in a normal delegation pattern). Neither notifications or KVO block while the receivers are responding.</p>
<p>OK, that all seems great, but take this scenario:</p>
<ol>
<li>BossOfEverthing is about to change the shared resource, eg. [BossOfEverthing changeSomething] is called by some object on thread 1</li>
<li>[BossOfEverthing changeSomething] acquires the lock associated with the client array</li>
<li>[BossOfEverthing changeSomething] begins iterating through the client array and calling each client's somethingIsAboutToBeChanged method on the appropriate thread for each client</li>
<li>In the meantime one of the clients (clientX) is about to go out of existence, so it calls [BossOfEverthing removeMeFromYourClientList:] on thread 2 from within its dealloc method</li>
<li>[BossOfEverthing removeMeFromYourClientList:] attempts to acquire the lock associated with the client array on thread 2 so that it can remove clientX</li>
</ol>
<p>What happens here is that I end up in a deadlock because:</p>
<ol>
<li>[BossOfEverthing changeSomething] (who has acquired the lock on thread 1) is waiting for [clientX somethingIsAboutToBeChanged] to return from thread2</li>
<li>Thread 2 is stuck waiting to acquire the lock which is currently owned by [BossOfEverthing changeSomething] on thread 1 and is unable to respond to its somethingIsAboutToBeChanged method</li>
</ol>
<p>Here's what I have done to remedy this:</p>
<ol>
<li>Rather than clientX calling [BossOfEverthing removeMeFromYourClientList:] from its dealloc method, it calls it from its release method (only when retainCount==1)</li>
<li>[BossOfEverthing removeMeFromYourClientList:] rather than waiting on the lock just ATTEMPTS to acquire it and if it can't it returns NO.</li>
<li>If [BossOfEverthing removeMeFromYourClientList:] returns NO to [clientX release] then [clientX release] calls [self performSelector:@selector(release) withObject:nil afterDelay:0.1], otherwise it just calls [super release]</li>
</ol>
<p>This way clientX has a chance to respond to any messages that [BossOfEverthing changeSomething] might be sending it and allow [BossOfEverthing changeSomething] to finish up it's business and release the lock, while another call to [clientX release] is queued up in the delay.</p>
<p>The problem that I have with this is that:</p>
<ol>
<li>Client objects are of a variety of classes and so I have to copy paste my overriden release method to each of them. There's something that irks me about copying and pasting the same code to multiple classes. If objective-c allowed multiple inheritance then I could perhaps create another class 'BossOfEverthingClient' whose only defined method would be an overriden release.</li>
<li>This whole procedure seems a bit convoluted.</li>
</ol>
<p>Anyway, Thanks so much for reading my long winded post and I'll look forward to any input that anyone has.
Thanks again!</p>
http://stackoverflow.com/questions/937178/sql-server-2000-deadlock1SQL Server 2000 Deadlocksmink2009-06-01T22:45:47Z2009-11-27T20:23:36Z
<p>We are experiencing some very annoying deadlock situations in a production SQL Server 2000 database.</p>
<p>The main setup is the following:</p>
<ul>
<li>SQL Server 2000 Enterprise Edition.</li>
<li>Server is coded in C++ using ATL OLE Database.</li>
<li>All database objects are being accessed trough stored procedures.</li>
<li>All UPDATE/INSERT stored procedures wrap their internal operations in a BEGIN TRANS ... COMMIT TRANS block.</li>
</ul>
<p>I collected some initial traces with SQL Profiler following several articles on the Internet like <a href="http://www.simple-talk.com/sql/learn-sql-server/how-to-track-down-deadlocks-using-sql-server-2005-profiler/" rel="nofollow">this one</a> (<em>ignore it is referring to SQL Server 2005 tools, the same principles apply</em>). <strong>From the traces it appears to be a deadlock between two UPDATE queries.</strong></p>
<p>We have taken some measures that may have reduced the likelihood of the problem from happening as:</p>
<ul>
<li><strong>SELECT WITH (NOLOCK)</strong>. We have changed all the SELECT queries in the stored procedures to use WITH (NOLOCK). We understand the implications of having dirty reads but the data being queried is not that important since we do a lot of automatic refreshes and under normal conditions the UI will have the right values.</li>
<li><strong>READ UNCOMMITTED</strong>. We have changed the transaction isolation level on the server code to be READ UNCOMMITED.</li>
<li><strong>Reduced transaction scope</strong>. We have reduced the time a transaction is being held in order to minimize the probabilities of a database deadlock to take place.</li>
</ul>
<p>We are also questioning the fact that we have a transaction inside the majority of the stored procedures (BEGIN TRANS ... COMMIT TRANS block). In this situation my guess is that the transaction isolation level is SERIALIZABLE, right? And what about if we also have a transaction isolation level specified in the source code that calls the stored procedure, which one applies?</p>
<p>This is a processing intensive application and we are hitting the database a lot for reads (bigger percentage) and some writes.</p>
<p><strong>If this were a SQL Server 2005 database I could go with <a href="http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/21158#21158">Geoff Dalgas answer on an deadlock issue concerning Stack Overflow</a></strong>, if that is even applicable for the issue I am running into. But upgrading to SQL Server 2005 is not, at the present time, a viable option.</p>
<p>As these initial attempts failed my question is: <strong>How would you go from here?</strong> What steps would you take to reduce or even avoid the deadlock from happening, or what commands/tools should I use to better expose the problem?</p>
http://stackoverflow.com/questions/1806875/deadlock-calling-membership-createuser-on-a-load-test0Deadlock calling Membership.CreateUser on a Load TestVinny2009-11-27T05:11:56Z2009-11-27T05:11:56Z
<p>Hi,
I am getting Sql deadlocks while calling aspnet_Users_CreateUser Api during load test (100+ concurrent users) I have wrapped the createUser, roles.AddUserToRole and another custom mapping procedure inside a Transaction Scope block. Once the deadlock is encountered no more user accounts are created. I am also using Enterprise Library to log exceptions. How do I take care of the Sql deadlocks?</p>
<p>Your inputs are much appreciated. Below is a sample of my code with the stack trace.</p>
<p>Thank you,<br>
sosmary</p>
<p><code>enter code here</code>1.
</p>
<blockquote>
<pre><code>Try
Using scope as new TransactionScope
Dim usr As MembershipUser = Membership.CreateUser(.....)
If not usr is Nothing Then
If createFlag = MembershipCreate.Success Then
Roles.AddUserToRole(usr.Username, "CustomerRep")
MapUser(usr.UserId) 'insert into a custom mapping table, usr.UserId is foreign key in this table
scope.Complete()
Endif
Endif
End Using
Catch ex as Exception
'Call ExceptionHandling to log exceptions
'Show error message
End Try
</code></pre>
<p> </p>
</blockquote>
<p>Below is the error message with the stack trace.</p>
<p><code>enter code here</code>
*# Summary for Enterprise Library Distributor Service: </p>
<h1>======================================</h1>
<h1>--></h1>
<p>*# Message:<br>
*# Timestamp: 11/25/2009 8:14:22 AM<br>
*# Message: HandlingInstanceID: 7effc3f6-80ce-427f-a320-b96d2daededa<br>
*# An exception of type 'System.Data.SqlClient.SqlException' occurred and was caught. </p>
<h1>----------------------------------------------------------------------------------</h1>
<p>*# 11/25/2009 03:14:21<br>
*# Type : System.Data.SqlClient.SqlException, System.Data, Version=2.0.0.0, *Culture=neutral, PublicKeyToken=b77a5c561934e089<br>
<strong>Message : Transaction (Process ID 118) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction.</strong><br>
*# Source : .Net SqlClient Data Provider<br>
*# Help link :<br>
*# Errors : System.Data.SqlClient.SqlErrorCollection<br>
*# Class : 13<br>
*# LineNumber : 19<br>
*# Number : 1205<br>
*# Procedure : aspnet_Users_CreateUser<br>
*# State : 48<br>
*# ErrorCode : -2146232060<br>
*# Data : System.Collections.ListDictionaryInternal<br>
*# TargetSite : Void OnError(System.Data.SqlClient.SqlException, Boolean)<br>
*# Stack Trace : at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, *Boolean breakConnection)<br>
*# at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, *Boolean breakConnection)<br>
*# at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject *stateObj)<br>
*# at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand *cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, *TdsParserStateObject stateObj)<br>
*#at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior *runBehavior, String resetOptionsString)<br>
*# at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, *RunBehavior runBehavior, Boolean returnStream, Boolean async)<br>
*# at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, *RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)<br>
* at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, *String methodName, Boolean sendToPipe)<br>
* at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()<br>
* at System.Web.Security.SqlMembershipProvider.CreateUser(String username, String *password, String email, String passwordQuestion, String passwordAnswer, Boolean *isApproved, Object providerUserKey, MembershipCreateStatus& status)<br>
* at System.Web.Security.Membership.CreateUser(String username, String password, String *email, String passwordQuestion, String passwordAnswer, Boolean isApproved, Object *providerUserKey, MembershipCreateStatus& status)<br>
* at System.Web.Security.Membership.CreateUser(String username, String password, String *email, String passwordQuestion, String passwordAnswer, Boolean isApproved, *MembershipCreateStatus& status)<br>
* at Membership_RegNew.btnSubmit_Click(Object sender, EventArgs e)<br>
</p>
http://stackoverflow.com/questions/1798664/how-to-handle-this-multithread-situation-and-dont-lock1How to handle this Multithread situation and don't lock?SoMoS2009-11-25T17:38:23Z2009-11-25T18:11:51Z
<p>Hello,</p>
<p>I have this situation: a Form with a System.Timer in it (with AutoReset = False). The form has its main thread and the timer its own thread too (nothing new here). </p>
<p>When the user press a button I need to stop the timer, wait until the timer thread has stopped its execution and do something more.</p>
<p>On the other side, the timer updates an item at the form so BeginInvoke is used. The code looks like this:</p>
<p>Button Code:</p>
<pre><code> Private Sub ButtonStop_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonStop.Click
SyncLock (m_stopLock)
m_stopProcessTimer = True
Threading.Monitor.Wait(m_stopLock)
End SyncLock
''#Do more things here after the timer has end its execution and is stopped
End Sub
</code></pre>
<p>Timer code:</p>
<pre><code>Private Sub m_processTimer_Elapsed(ByVal sender As Object, ByVal e As System.EventArgs) Handles m_processTimer.Elapsed
Dim auxDelegate As EventHandler
SyncLock (m_stopLock)
If Not m_stopProcessTimer Then
If Me.InvokeRequired Then
auxDelegate = New EventHandler(AddressOf m_processTimer_Elapsed)
Me.BeginInvoke(auxDelegate, New Object() {sender, e})
Else
DoFormStuf()
m_processTimer.Start()
End If
Else
Threading.Monitor.Pulse(m_stopLock)
End If
End SyncLock
End Sub
</code></pre>
<p>The point is that I wait the main thread to let the timer thread to end its work.</p>
<p>The problem is that this code deadlocks when the user clicks the button when the BeginInvoke is going to be called. How a simple thing like this one can be done? Looks like I cannot find a good solution to this problem :(</p>
http://stackoverflow.com/questions/1102359/programmatic-deadlock-detection-in-java4Programmatic deadlock detection in javaRaji2009-07-09T07:30:56Z2009-11-24T22:49:59Z
<p>How can I <em>programmatically</em> detect that a deadlock has occurred in a Java program?</p>
http://stackoverflow.com/questions/1107182/sybase-ase-your-server-command-encountered-a-deadlock-situation1Sybase ASE: "Your server command encountered a deadlock situation"Laurent2009-07-10T00:48:56Z2009-11-23T17:47:25Z
<p>Hello,</p>
<p>When running a stored procedure (from a .NET application) that does an INSERT and an UPDATE, I sometimes (but not that often, really) and randomly get this error:</p>
<blockquote>
<p>ERROR [40001] [DataDirect][ODBC Sybase Wire Protocol driver][SQL Server]Your server command (family id #0, process id #46) encountered a deadlock situation. Please re-run your command. </p>
</blockquote>
<p>How can I fix this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1771518/ensuring-certain-private-functions-can-only-be-called-from-a-locked-state1Ensuring certain private functions can only be called from a locked stateDominic Rodger2009-11-20T16:10:43Z2009-11-20T20:40:54Z
<p>Say I have a class <code>A</code>:</p>
<pre><code>class A {
public:
A();
void fetch_data() { return 1; }
void write_x_data() {
// lock this instance of A
private_function1_which_assumes_locked();
private_function2_which_assumes_locked();
// unlock this instance of A
}
void write_y_data() {
// lock this instance of A
private_function1_which_assumes_locked();
// unlock this instance of A
}
private:
void private_function1_which_assumes_locked();
void private_function2_which_assumes_locked();
};
</code></pre>
<p>I want to guarantee that <code>private_function*_which_assumed_locked()</code> can never be called unless <code>A</code> is locked.</p>
<p>What's the best way to accomplish this? I've got 5 or so public functions which need locking. These functions never call into each other, so I'm not worried about deadlocking with these. Combined, these 5 public functions call into around 15 different private functions which need to assume the object is in a locked state. Obviously, I can't lock the private functions, since I'd get deadlocks.</p>
<p>Feel free to provide answers in reasonably high-level abstractions, assuming the existences of Mutexes and <a href="http://www.ddj.com/cpp/184403758" rel="nofollow">Scopeguards</a>.</p>
<p>In Python I might do something <em>like</em> this with <a href="http://www.artima.com/weblogs/viewpost.jsp?thread=240808" rel="nofollow">decorators</a>:</p>
<pre><code>class locked_method(object):
def __init__(self, f):
self.f = f
def __call__(self):
# Do whatever is needed to lock
self.f()
# Do whatever is needed to unlock
class checklocked(object):
def __init__(self, f):
self.f = f
def __call__(self):
# check locked, if not, don't call self.f(),
# and yell at me loudly for screwing up.
self.f()
@locked_method
def func1():
__function_which_assumes_locked()
@checklocked
def __function_which_assumes_locked():
pass
</code></pre>
<p>NB: I've not done much in the way of Python, so feel free to comment if my Python is wrong/stupid, but the point of this question is more the best way to accomplish this sort of thing in C++, so hopefully the Python provided is enough to give you an idea of what I want to do.</p>
http://stackoverflow.com/questions/1762870/how-to-restart-transactions-on-deadlock-lock-timeout-in-spring1How to restart transactions on deadlock/lock-timeout in Spring?Asaf Mesika2009-11-19T12:11:38Z2009-11-20T05:29:10Z
<p>Hi,</p>
<p>What is the best practice on implementing a transaction restart upon deadlock or lock timeout exceptions when using Spring (specifically the Spring recommended approach: declarative transactions) ?</p>
<p>Thanks,</p>
<p>Asaf</p>
http://stackoverflow.com/questions/1759093/win32-createwindow-call-hangs-in-child-thread0Win32 CreateWindow() call hangs in child thread?dicroce2009-11-18T21:06:41Z2009-11-19T16:06:32Z
<p>I'm working on a portability layer for OpenGL (abstracts the glX and wgl stuff for Linux and Windows)... Anyhow, it has a method for creating a Window... If you don't pass in a parent, you get a real window with a frame... If you pass in a parent, you get a borderless, frameless window...</p>
<p>This works fine, as long as I do it all on 1 thread... As soon as another thread tries to create a child window, the app deadlocks in the win32 call "CreateWindow()". Any ideas?</p>
http://stackoverflow.com/questions/1718658/how-can-i-get-dead-lock-in-this-situation0How can I get dead lock in this situation?nightcoder2009-11-11T22:51:30Z2009-11-11T23:12:07Z
<p>In my client application I have a method like this (in practice it's more complex, but I've left the main part):</p>
<pre><code>public void btnUpdate_Click(...)
{
...
dataAdapter.Update(...);
...
dataAdapter.Fill(...); // here I got exception one time
}
</code></pre>
<p>The exception I found in logs says "Deadlock found when trying to get lock; try restarting transaction". I met this exception only time, so it wasn't repeated.<br>
As I understand, DataAdapter.Fill() method executes only select query. I don't make an explicit transaction and I have autocommit enabled.<br>
So how can I get dead lock on a simple select query which is not a part of bigger transaction?<br>
As I understand, to get a dead lock, two transactions should wait for each other. How is that possible with a single select not inside a transaction? Maybe it's a bug in MySql?</p>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/1702602/xml-column-update-and-locking-in-sql-server1xml Column update and Locking in Sql ServerEmir2009-11-09T17:44:09Z2009-11-11T17:30:46Z
<p>Hi,</p>
<p>I have a few windwos services. They get xml column from Sql server manipulate and update it.</p>
<p>Service A- Gets XML<br>
Service B- Gets XML<br>
Service A- Updates XML (it will be lost)<br>
Service B- Updates XML<br></p>
<p>I must lock row and I use next Code:</p>
<pre><code>SqlCommand cmdUpdate = new SqlCommand();
cmdUpdate.CommandText = "select MyXML from MyTable with(holdlock,rowlock) where id=@id";
cmdUpdate.Parameters.AddWithValue("@id", id);
using (SqlConnection conn = Helper.GetConnection())
{
cmdUpdate.Connection = conn;
SqlTransaction ts = conn.BeginTransaction();
cmdUpdate.Transaction = ts;
XElement elem = XElement.Parse(cmdUpdate.ExecuteScalar().ToString());
UpdateXElement(elem);
cmdUpdate.Parameters.Clear();
cmdUpdate.CommandText = "update MyTable set MyXML=@xml where id=@id";
cmdUpdate.Parameters.AddWithValue("@id", id);
cmdUpdate.Parameters.AddWithValue("@xml", elem.ToString());
cmdUpdate.ExecuteNonQuery();
ts.Commit();
}
}`
</code></pre>
<p>then occurs Deadlocks. </p>
<p>Have you got a better idea, to solve this problem ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1698933/resolving-deadlock0resolving Deadlockwixuser11052009-11-09T03:21:30Z2009-11-09T10:36:08Z
<p>I have a Store Procedure being called to fill one table whenever we receive incoming files.
Sometimes we receive more than one file and the procedure will be called simultaneously.
Inside the Procedure the statements are quite simple as given below</p>
<p>IF NOT EXISTS (SELECT.... WHERE A=1 B=2)
INSERT ...
ELSE
UPDATE ...
WHERE A=1 and B=2
END</p>
<p>doing this I started getting a duplicate records error, I assume that 2 same records tried to INSERT. To avoid this I put these staements inside a Transaction with SERIALIZABLE ISOLATION LEVEL.</p>
<p>things got even worse and I started getting deadlock error!!!</p>
<p>Is there something wrong I am doing here??</p>
http://stackoverflow.com/questions/1360729/why-is-lockless-concurrency-such-a-big-deal-in-clojure1Why is lockless concurrency such a big deal (in Clojure)?i_like_monkeys2009-09-01T05:53:57Z2009-11-07T23:43:42Z
<p>I'm told that Clojure has lockless concurrency and that this is Important.</p>
<p>I've used a number of languages but didn't realize they were performing locks behind the scenes.</p>
<p>Why is this an advantage in Clojure (or in any language that has this feature)?</p>
http://stackoverflow.com/questions/838824/sqlserver-deadlock1SQLServer deadlockBrad2009-05-08T08:37:27Z2009-11-05T23:44:12Z
<p>Hi,</p>
<p>I have a java application which is doing multiple concurrent CRUD operations on a database. I'm adding support for SQLServer but am having problems with deadlocking during concurrent deletes. After some investigation it appeared that the problem may be due to lock escalation on a particular table. </p>
<p>In an attempt to fix it, I decided to make all reads on the table in question be done "for update" using the UPDLOCK hint so that the deadlock could be avoided. However, I'm still seeing the problem. I've enabled tracing in SQLServer and have found the following deadlock trace in the SQLServer logs:</p>
<p>Deadlock encountered .... Printing deadlock information
Wait-for graph</p>
<p>Node:1
KEY: 5:72057594042384384 (54048e7b3828) CleanCnt:3 Mode:X Flags: 0x0
Grant List 1:
Owner:0x03D08C40 Mode: X Flg:0x0 Ref:0 Life:02000000 SPID:62 ECID:0 XactLockInfo: 0x04834274
SPID: 62 ECID: 0 Statement Type: DELETE Line #: 1
Input Buf: Language Event: (@P0 nvarchar(4000))delete from part_data where part_id = @P0
Requested By:
ResType:LockOwner Stype:'OR'Xdes:0x04B511C8 Mode: U SPID:60 BatchID:0 ECID:0 TaskProxy:(0x058BE378) Value:0x3d08500 Cost:(0/1296)</p>
<p>Node:2</p>
<p>KEY: 5:72057594042384384 (f903d6d6e0ac) CleanCnt:2 Mode:X Flags: 0x0
Grant List 0:
Owner:0x03D088A0 Mode: X Flg:0x0 Ref:0 Life:02000000 SPID:60 ECID:0 XactLockInfo: 0x04B511EC
SPID: 60 ECID: 0 Statement Type: DELETE Line #: 1
Input Buf: Language Event: (@P0 nvarchar(4000))delete from part_data where part_id = @P0
Requested By:
ResType:LockOwner Stype:'OR'Xdes:0x04834250 Mode: U SPID:62 BatchID:0 ECID:0 TaskProxy:(0x047BA378) Value:0x3d089e0 Cost:(0/4588)</p>
<p>Victim Resource Owner:
ResType:LockOwner Stype:'OR'Xdes:0x04B511C8 Mode: U SPID:60 BatchID:0 ECID:0 TaskProxy:(0x058BE378) Value:0x3d08500 Cost:(0/1296)</p>
<p>SQLServer profiler shows this as two clients holding update (U) locks and attempting to escalate to exclusive (X) locks. The SQLServer docs I have read say that only one client can have a (U) lock on a table at a given time, so I'm wondering why I'm seeing the situation shown in the trace.</p>
<p>The database object refered to in that trace is an index on a foreign key. If anyone with experience of fixing this sort of problem could offer advice it would be a big help.</p>
<p>Thanks,
Brad.</p>
<p>EDIT added deadlock graph xml as requested (please cpretty print in editor as couldn't work out syntax for indents on here):</p>
<pre><code><deadlock-list>
<deadlock victim="process989018">
<process-list>
<process id="process6aa7a8" taskpriority="0" logused="4844" waitresource="KEY: 5:72057594042384384 (5504bdfb7529)" waittime="9859" ownerId="613553" transactionname="implicit_transaction" lasttranstarted="2009-05-08T11:52:39.137" XDES="0x5fcbc30" lockMode="U" schedulerid="1" kpid="3516" status="suspended" spid="59" sbid="0" ecid="0" priority="0" transcount="2" lastbatchstarted="2009-05-08T11:52:39.183" lastbatchcompleted="2009-05-08T11:52:39.183" clientapp="jTDS" hostname="LOIRE" hostpid="123" loginname="sa" isolationlevel="read committed (2)" xactid="613553" currentdb="5" lockTimeout="4294967295" clientoption1="671088672" clientoption2="128058">
<executionStack>
<frame procname="adhoc" line="1" stmtstart="40" sqlhandle="0x0200000007c76c39efdd8317c6fa7b611b4fd958f05cfcf4">
delete from part_data where part_id = @P0 </frame>
</executionStack>
<inputbuf>(@P0 nvarchar(4000))delete from part_data where part_id = @P0</inputbuf>
</process>
<process id="process989018" taskpriority="0" logused="1528" waitresource="KEY: 5:72057594042384384 (5e0405cb0377)" waittime="1250" ownerId="613558" transactionname="implicit_transaction" lasttranstarted="2009-05-08T11:52:39.183" XDES="0x48318f0" lockMode="U" schedulerid="2" kpid="2692" status="suspended" spid="60" sbid="0" ecid="0" priority="0" transcount="2" lastbatchstarted="2009-05-08T11:52:39.183" lastbatchcompleted="2009-05-08T11:52:39.183" clientapp="jTDS" hostname="LOIRE" hostpid="123" loginname="sa" isolationlevel="read committed (2)" xactid="613558" currentdb="5" lockTimeout="4294967295" clientoption1="671088672" clientoption2="128058">
<executionStack>
<frame procname="adhoc" line="1" stmtstart="40" sqlhandle="0x0200000007c76c39efdd8317c6fa7b611b4fd958f05cfcf4">
delete from part_data where part_id = @P0 </frame>
</executionStack>
<inputbuf>(@P0 nvarchar(4000))delete from part_data where part_id = @P0</inputbuf>
</process>
</process-list>
<resource-list>
<keylock hobtid="72057594042384384" dbid="5" objectname="MESSAGESTOREDB61.dbo.part_data" indexname="idx_part_data_part_id" id="lock3cab740" mode="X" associatedObjectId="72057594042384384">
<owner-list>
<owner id="process6aa7a8" mode="X"/>
</owner-list>
<waiter-list>
<waiter id="process989018" mode="U" requestType="wait"/>
</waiter-list>
</keylock>
<keylock hobtid="72057594042384384" dbid="5" objectname="MESSAGESTOREDB61.dbo.part_data" indexname="idx_part_data_part_id" id="lock3cad340" mode="X" associatedObjectId="72057594042384384">
<owner-list>
<owner id="process989018" mode="X"/>
</owner-list>
<waiter-list>
<waiter id="process6aa7a8" mode="U" requestType="wait"/>
</waiter-list>
</keylock>
</resource-list>
</deadlock>
</deadlock-list>
</code></pre>
http://stackoverflow.com/questions/1665998/help-with-sql-server-locking0Help with SQL Server lockingMarcus2009-11-03T08:39:27Z2009-11-03T11:05:51Z
<p>Hi,
I have a locking problem between a "select" and an "insert/update":</p>
<pre><code>Select TableB.* from TableA
Join TableB on TableA.TableBId = TableB.TableBId
Start Transaction (ReadCommitted isolation)
Insert into TableA
Trigger “After Insert” on TableA: Update TableB
Commit transaction
</code></pre>
<p>The first select returns 10 identical rows (same TableB primary key). The update of TableB applies to the very row that is being selected.
The deadlock happens when TableB is read from the "select"-query at the same time as TableB is being updated.</p>
<p>It is apparent to me that a row in TableB is being the cause of the lock. But how can this happen?</p>
<p>Database: SQL Server 2005</p>
<p>Schema definitions:</p>
<p>Schema definition for Table A (actual name is VotePicture)</p>
<pre><code>/****** Object: Table [dbo].[VotePicture] Script Date: 11/03/2009 11:45:18 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[VotePicture](
[VotePictureId] [int] IDENTITY(1,1) NOT NULL,
[UserId] [int] NULL,
[PictureId] [int] NOT NULL,
[VoteId] [int] NULL,
[ShowVote] [bit] NULL,
[IPAddress] [char](15) NOT NULL,
[CreateTS] [datetime] NOT NULL,
CONSTRAINT [PK_Vote] PRIMARY KEY CLUSTERED
(
[VotePictureId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
ALTER TABLE [dbo].[VotePicture] WITH CHECK ADD CONSTRAINT [FK_Vote_User] FOREIGN KEY([UserId])
REFERENCES [dbo].[User] ([UserId])
ON DELETE SET NULL
GO
ALTER TABLE [dbo].[VotePicture] CHECK CONSTRAINT [FK_Vote_User]
GO
ALTER TABLE [dbo].[VotePicture] WITH CHECK ADD CONSTRAINT [FK_Vote_Vote] FOREIGN KEY([VoteId])
REFERENCES [dbo].[Vote] ([VoteId])
ON UPDATE CASCADE
ON DELETE CASCADE
GO
ALTER TABLE [dbo].[VotePicture] CHECK CONSTRAINT [FK_Vote_Vote]
GO
ALTER TABLE [dbo].[VotePicture] WITH NOCHECK ADD CONSTRAINT [FK_VotePicture_Picture] FOREIGN KEY([PictureId])
REFERENCES [dbo].[Picture] ([PictureId])
ON UPDATE CASCADE
ON DELETE CASCADE
GO
ALTER TABLE [dbo].[VotePicture] CHECK CONSTRAINT [FK_VotePicture_Picture]
</code></pre>
<p>Schema definition for Table B (actual name is Picture)</p>
<pre><code>/****** Object: Table [dbo].[Picture] Script Date: 11/03/2009 11:46:24 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Picture](
[PictureId] [int] IDENTITY(1,1) NOT NULL,
[PictureTypeId] [int] NOT NULL,
[Name] [nvarchar](100) NOT NULL,
[URL] [nvarchar](200) NOT NULL,
[URLPart] [nvarchar](33) NOT NULL,
[AlbumId] [int] NOT NULL,
[Comment] [text] NOT NULL,
[Age] [int] NOT NULL,
[CreateTS] [datetime] NOT NULL,
[ModifyTS] [datetime] NULL,
[HDURL] [nvarchar](200) NULL,
[UniqueHash] [nvarchar](32) NULL,
[VoteCount] [int] NOT NULL CONSTRAINT [DF_Picture_VoteCount] DEFAULT ((0)),
[TotalVotePointsAmount] [int] NOT NULL CONSTRAINT [DF_Picture_TotalVotePointsAmount] DEFAULT ((0)),
CONSTRAINT [PK_Picture] PRIMARY KEY CLUSTERED
(
[PictureId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY],
CONSTRAINT [IX_URL] UNIQUE NONCLUSTERED
(
[URL] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY],
CONSTRAINT [IX_URLPart_] UNIQUE NONCLUSTERED
(
[URLPart] ASC,
[AlbumId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[Picture] WITH CHECK ADD CONSTRAINT [FK_Picture_Album] FOREIGN KEY([AlbumId])
REFERENCES [dbo].[Album] ([AlbumId])
GO
ALTER TABLE [dbo].[Picture] CHECK CONSTRAINT [FK_Picture_Album]
GO
ALTER TABLE [dbo].[Picture] WITH CHECK ADD CONSTRAINT [FK_Picture_PictureType] FOREIGN KEY([PictureTypeId])
REFERENCES [dbo].[PictureType] ([PictureTypeId])
GO
ALTER TABLE [dbo].[Picture] CHECK CONSTRAINT [FK_Picture_PictureType]
</code></pre>
<p>Trigger on TableA</p>
<pre><code>/****** Object: Trigger [dbo].[UpdatePictureStats] Script Date: 11/03/2009 11:49:24 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
CREATE TRIGGER [dbo].[UpdatePictureStats]
ON [dbo].[VotePicture]
AFTER INSERT
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
declare @insertedPictureId int
declare @insertedVoteId int
select @insertedPictureId = (select pictureId from Inserted)
select @insertedVoteId = (select voteId from Inserted)
if @insertedVoteId is not null
BEGIN
declare @voteValue int
select @voteValue = (select Value from Vote where VoteId = @insertedVoteId)
Update Picture
set VoteCount = VoteCount + 1,
TotalVotePointsAmount = TotalVotePointsAmount + @voteValue
where Picture.PictureId = @insertedPictureId
END
END
</code></pre>
http://stackoverflow.com/questions/1660765/joining-a-boostthread-instance-in-the-destructor4Joining a boost::thread instance in the destructorlaura2009-11-02T11:37:05Z2009-11-02T14:26:57Z
<p>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 it does) in the project. </p>
<p>Class declaration (I've stripped the run() method of try/catch for brevity: according to the boost thread documentation, the result should be the same with or without it):</p>
<pre><code>class B
{
public:
void operator()(){run();}
void run();
void shutdown();
~B();
B();
boost::thread *thr;
bool shutdown_requested;
};
void B::shutdown()
{
shutdown_requested = true;
if (thr != NULL)
{
thr->interrupt();
thr->join(); // deadlock occurs here!
delete thr;
thr = NULL;
}
}
B::~B()
{
shutdown();
}
B::B()
{
thr = new boost::thread(boost::ref(*this));
}
void B::run()
{
while (!shutdown_requested)
{
boost::xtime xt;
boost::xtime_get(&xt, boost::TIME_UTC);
xt.sec += 30;
boost::this_thread::sleep(xt);
}
}
</code></pre>
<p>Snippet which does not work:</p>
<pre><code>int main()
{
B *b = new B;
Sleep(5000);
printf("deleting \n");fflush(stdout);
// b->shutdown();
delete b;
printf("done\n");fflush(stdout);
return 0;
}
</code></pre>
<p>Snippet which works:</p>
<pre><code>int main()
{
B *b = new B;
Sleep(5000);
printf("deleting \n");fflush(stdout);
b->shutdown();
delete b;
printf("done\n");fflush(stdout);
return 0;
}
</code></pre>
<p>I think the reason for this behavior has something to do with this snippet of the boost documentation:</p>
<blockquote>
<p>the user of Boost.Thread must ensure
that the referred-to object outlives
the newly-created thread of execution.</p>
</blockquote>
<p>But I don't really understand why the deadlock - joining the thread would not call the destructor on B and the object itself is not deleted when the run() method is supposed to exit.</p>