patternsqlMinor
What does exchangevent indicate in SQL deadlock graph?
Viewed 0 times
graphwhatsqlindicatedeadlockexchangeventdoes
Problem
Have a deadlock XDL file with several exchange events listed. Not sure if these are good or bad or what causes them. What causes exchange events in SQL deadlock graph?
Solution
Exchange Events provide details and context on the deadlock itself. Specifically the
I'm not an expert on reading deadlock graph data, but my research seems to indicate that kind of
You may find SentryOne's higher level read on deadlocks helpful in understanding what's going on.
WaitType e_waitPipeGetRow is a resource that one SELECT statement owns and another SELECT statement is waiting on, ergo being blocked by the first SELECT (for example due to resource contention). This StackOverflow answer provides more context on it and deadlocks specifically.I'm not an expert on reading deadlock graph data, but my research seems to indicate that kind of
WaitType is potentially related to intra-query parallelism deadlocks (as mentioned in the previously linked StackOverflow answer).You may find SentryOne's higher level read on deadlocks helpful in understanding what's going on.
Context
StackExchange Database Administrators Q#282959, answer score: 6
Revisions (0)
No revisions yet.