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?

posta 3 anni fa217 visualizzazioni
1 Risposta
0
Risposta accettata

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

con risposta 3 anni fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande