Server IP : 172.67.216.182 / Your IP : 104.23.175.216 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/perfschema/t/ |
Upload File : |
# Tests for PERFORMANCE_SCHEMA table io # Show the impact of an index # Setup --source include/not_embedded.inc --source include/have_perfschema.inc let $engine_type= MyISAM; --disable_warnings drop table if exists test.no_index_tab; drop table if exists test.index_tab; --enable_warnings let $table_io_select= select SUM(NUMBER_OF_BYTES) from performance_schema.events_waits_history_long where event_name like 'wait/io/table/%' and object_schema = 'test' and object_name = ; --source ../include/table_io_setup_helper.inc # Code to test eval create table test.no_index_tab ( a int, b char(30) default 'Default') engine = $engine_type; eval create table test.index_tab ( a int, b char(30) default 'Default', unique key uidx(a)) engine = $engine_type; # Make sure the proper engine is used show create table test.no_index_tab; show create table test.index_tab; truncate table performance_schema.events_waits_history_long; update performance_schema.setup_consumers set enabled='YES'; --echo # Printing of 100 inserts per table is suppressed --disable_query_log let $run= 100; while ($run) { eval insert into test.no_index_tab set a = $run; eval insert into test.index_tab set a = $run; dec $run; } --enable_query_log update performance_schema.setup_consumers set enabled='NO'; eval $table_io_select 'no_index_tab'; # Attention: There is no visible impact of index maintenance on table io # because the maintenance is handled by the storage engine themself. eval $table_io_select 'index_tab'; select count(*) from test.no_index_tab; select count(*) from test.index_tab; # Testing Code # For getting avg(a) inspection of # - all rows (test.no_index_tab) # - all unique index values (test.index_tab, assuming the optimizer decides to # process only the unique index) # --> No difference between numvber of accesses for no_index_tab and index_tab truncate table performance_schema.events_waits_history_long; update performance_schema.setup_consumers set enabled='YES'; select avg(a) from test.no_index_tab; update performance_schema.setup_consumers set enabled='NO'; eval $table_io_select 'no_index_tab'; truncate table performance_schema.events_waits_history_long; update performance_schema.setup_consumers set enabled='YES'; select avg(a) from test.index_tab; update performance_schema.setup_consumers set enabled='NO'; eval $table_io_select 'index_tab'; # With where a = 50 inspection of # - all rows (test.no_index_tab) # - 1 up to maybe a few unique index values (test.index_tab, assuming that the # optimizer decides to exploit the unique index) # --> index_tab requires much less accesses than no_index_tab truncate table performance_schema.events_waits_history_long; update performance_schema.setup_consumers set enabled='YES'; select 1 as my_column from test.no_index_tab where a = 50; update performance_schema.setup_consumers set enabled='NO'; eval $table_io_select 'no_index_tab'; truncate table performance_schema.events_waits_history_long; update performance_schema.setup_consumers set enabled='YES'; select 1 as my_column from test.index_tab where a = 50; update performance_schema.setup_consumers set enabled='NO'; eval $table_io_select 'index_tab'; # With where a = 50 inspection of # - all rows (test.no_index_tab) # - 1 up to maybe a few unique index values (test.index_tab, assuming that the # optimizer decides to exploit the unique index) # and remove one row for both cases # --> index_tab requires much less accesses than no_index_tab truncate table performance_schema.events_waits_history_long; update performance_schema.setup_consumers set enabled='YES'; delete from test.no_index_tab where a = 51; update performance_schema.setup_consumers set enabled='NO'; eval $table_io_select 'no_index_tab'; truncate table performance_schema.events_waits_history_long; update performance_schema.setup_consumers set enabled='YES'; delete from test.index_tab where a = 51; update performance_schema.setup_consumers set enabled='NO'; eval $table_io_select 'index_tab'; # In case of failures, this will tell if table io are lost. show global status like 'performance_schema_%'; # Cleanup drop table test.no_index_tab; drop table test.index_tab; --source ../include/table_io_cleanup_helper.inc