Comments - Table contention

1 week, 2 days ago Daniel Black

What constitutes a failed transaction? A deadlock?

Looking at SHOW ENGINE INNODB STATUS can report the latest deadlock. Does this look like the processes you are talking about?

READ COMMITTED can help will some, but not all forms of deadlock. As can specific indexing to ensure a minimial number of records are locked at the same time.

Also handling deadlock exceptions in your application code is a good way of doing it. The deadlock handling depends on the application which is why the database doesn't do this automaticly.

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.