How to setup alert for Blocking Locks in mysql RDS instance?

0

How to setup alert for Blocking Locks in mysql RDS instance?

1 Answer
0

Hi,

Please check https://aws.amazon.com/blogs/database/monitor-errors-in-amazon-aurora-mysql-and-amazon-rds-for-mysql-using-amazon-cloudwatch-and-send-notifications-using-amazon-sns/. This provides an overview of how you can configure the deadlock events and alerting on Amazon RDS MySQL engine

AWS
Arun
answered a year ago
  • Hi Arun,

    I have already set-up that alert. But that can send you alert only when deadlock happens. I want to setup alerts when there are blocking sessions in database for defined interval of time.

    SELECT r.trx_id waiting_trx_id, r.trx_mysql_thread_id waiting_thread, r.trx_query waiting_query, b.trx_id blocking_trx_id, b.trx_mysql_thread_id blocking_thread, b.trx_query blocking_query FROM information_schema.innodb_lock_waits w INNER JOIN information_schema.innodb_trx b ON b.trx_id = w.blocking_trx_id INNER JOIN information_schema.innodb_trx r ON r.trx_id = w.requesting_trx_id;

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions