mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
merge
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
use performance_schema;
|
||||
select name from mutex_instances where name not rlike '/(DEBUG_SYNC::mutex|LOCK_des_key_file)$' group by name;
|
||||
select name from mutex_instances where name not rlike '/(DEBUG_SYNC::mutex)$' group by name;
|
||||
name
|
||||
wait/synch/mutex/archive/archive_mutex
|
||||
wait/synch/mutex/aria/LOCK_trn_list
|
||||
@ -42,6 +42,7 @@ wait/synch/mutex/sql/LOCK_crypt
|
||||
wait/synch/mutex/sql/LOCK_delayed_create
|
||||
wait/synch/mutex/sql/LOCK_delayed_insert
|
||||
wait/synch/mutex/sql/LOCK_delayed_status
|
||||
wait/synch/mutex/sql/LOCK_des_key_file
|
||||
wait/synch/mutex/sql/LOCK_error_log
|
||||
wait/synch/mutex/sql/LOCK_error_messages
|
||||
wait/synch/mutex/sql/LOCK_event_queue
|
||||
@ -120,7 +121,9 @@ wait/synch/cond/sql/Master_info::data_cond
|
||||
wait/synch/cond/sql/Master_info::start_cond
|
||||
wait/synch/cond/sql/Master_info::stop_cond
|
||||
wait/synch/cond/sql/MDL_context::COND_wait_status
|
||||
wait/synch/cond/sql/MYSQL_BIN_LOG::COND_queue_busy
|
||||
wait/synch/cond/sql/MYSQL_BIN_LOG::update_cond
|
||||
wait/synch/cond/sql/MYSQL_RELAY_LOG::COND_queue_busy
|
||||
wait/synch/cond/sql/MYSQL_RELAY_LOG::update_cond
|
||||
wait/synch/cond/sql/Query_cache::COND_cache_status_changed
|
||||
wait/synch/cond/sql/Relay_log_info::data_cond
|
||||
|
@ -57,6 +57,7 @@ where event_name like "%MYSQL_BIN_LOG%"
|
||||
order by event_name;
|
||||
EVENT_NAME COUNT_STAR
|
||||
wait/synch/cond/sql/MYSQL_BIN_LOG::COND_prep_xids NONE
|
||||
wait/synch/cond/sql/MYSQL_BIN_LOG::COND_queue_busy NONE
|
||||
wait/synch/mutex/sql/MYSQL_BIN_LOG::LOCK_index MANY
|
||||
wait/synch/mutex/sql/MYSQL_BIN_LOG::LOCK_prep_xids NONE
|
||||
"Expect no slave relay log"
|
||||
@ -73,6 +74,7 @@ where event_name like "%MYSQL_RELAY_LOG%"
|
||||
and event_name not like "%MYSQL_RELAY_LOG::update_cond"
|
||||
order by event_name;
|
||||
EVENT_NAME COUNT_STAR SUM_TIMER_WAIT MIN_TIMER_WAIT AVG_TIMER_WAIT MAX_TIMER_WAIT
|
||||
wait/synch/cond/sql/MYSQL_RELAY_LOG::COND_queue_busy 0 0 0 0 0
|
||||
wait/synch/mutex/sql/MYSQL_RELAY_LOG::LOCK_index 0 0 0 0 0
|
||||
"============ Performance schema on slave ============"
|
||||
select * from performance_schema.file_summary_by_instance
|
||||
@ -130,6 +132,7 @@ where event_name like "%MYSQL_BIN_LOG%"
|
||||
order by event_name;
|
||||
EVENT_NAME COUNT_STAR
|
||||
wait/synch/cond/sql/MYSQL_BIN_LOG::COND_prep_xids NONE
|
||||
wait/synch/cond/sql/MYSQL_BIN_LOG::COND_queue_busy NONE
|
||||
wait/synch/mutex/sql/MYSQL_BIN_LOG::LOCK_index MANY
|
||||
wait/synch/mutex/sql/MYSQL_BIN_LOG::LOCK_prep_xids NONE
|
||||
"Expect a slave relay log"
|
||||
@ -169,5 +172,6 @@ where event_name like "%MYSQL_RELAY_LOG%"
|
||||
and event_name not like "%MYSQL_RELAY_LOG::update_cond"
|
||||
order by event_name;
|
||||
EVENT_NAME COUNT_STAR
|
||||
wait/synch/cond/sql/MYSQL_RELAY_LOG::COND_queue_busy NONE
|
||||
wait/synch/mutex/sql/MYSQL_RELAY_LOG::LOCK_index MANY
|
||||
include/stop_slave.inc
|
||||
|
@ -3,6 +3,7 @@
|
||||
--source include/have_maria.inc
|
||||
--source include/have_archive.inc
|
||||
--source include/have_blackhole.inc
|
||||
--source include/have_ssl.inc
|
||||
|
||||
use performance_schema;
|
||||
|
||||
@ -15,7 +16,7 @@ use performance_schema;
|
||||
# "where" filters out instances that can be conditionally compiled out
|
||||
#
|
||||
|
||||
select name from mutex_instances where name not rlike '/(DEBUG_SYNC::mutex|LOCK_des_key_file)$' group by name;
|
||||
select name from mutex_instances where name not rlike '/(DEBUG_SYNC::mutex)$' group by name;
|
||||
select name from rwlock_instances group by name;
|
||||
select name from cond_instances where name not rlike '/(DEBUG_SYNC::cond)$' group by name;
|
||||
select event_name from file_instances group by event_name;
|
||||
|
Reference in New Issue
Block a user