Create Strategy to alert from email deadlocks in database

0

Hi.

we have the Mysql database with Saas in AWS and I need to know how I do an alert that after a 1minute alarm to me from email with the deadlock?

已提问 3 年前217 查看次数
1 回答
0
已接受的回答

marcoborges wrote:
Hi.

we have the Mysql database with Saas in AWS and I need to know how I do an alert that after a 1minute alarm to me from email with the deadlock?

Currently there is no support for for lock alerts.
For deadlocks the engine should detect them and cancel one of the transactions.
For lock waits , something like the following can be run.

SELECT trx_id,
trx_state,
trx_wait_started,
trx_requested_lock_id,
time_to_sec(timediff(now(),trx_started)) AS time_in_state,
lock_type,
lock_table,
lock_index,
lock_data
FROM information_schema.innodb_trx
LEFT JOIN information_schema.innodb_locks
ON trx_requested_lock_id=lock_id;

Kyle

已回答 3 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则