(no title)
RedCrowbar | 2 years ago
Transaction deadlocks are another common issue that is triggered by concurrent transactions even at lower levels and should be retried also.
RedCrowbar | 2 years ago
Transaction deadlocks are another common issue that is triggered by concurrent transactions even at lower levels and should be retried also.
bcrosby95|2 years ago
We handle this by passing our transaction a function to run - it will retry a few times if it gets a deadlock. But I don't consider this to be very low level.
ahoka|2 years ago
Oh neat, I was just thinking about something like this the other day.