Looking what units are used in PFS_single_stat ...
select * from table_io_waits_summary_by_table where object_name='ten';
|
returns data in picoseconds.
The data is converted using a"normalizer":
int table_tiws_by_table::rnd_init(bool scan)
|
{
|
m_normalizer= time_normalizer::get(wait_timer);
|
return 0;
|
}
|
wait_timer is a global variable (can be set through P_S.setup_timers)
enum_timer_name wait_timer= TIMER_NAME_CYCLE;
|
the normalizer is used here
(gdb) wher
|
#0 PFS_stat_row::set (this=0x7fff90005090, normalizer=0x55555748eb70, stat=0x7ffff01549d0) at /home/psergey/dev-git/10.1/storage/perfschema/table_helper.h:223
|
#1 0x0000555555ecf42d in PFS_table_io_stat_row::set (this=0x7fff90005018, normalizer=0x55555748eb70, stat=0x7ffff01549c8) at /home/psergey/dev-git/10.1/storage/perfschema/table_helper.h:299
|
#2 0x0000555555ecfa31 in table_tiws_by_table::make_row (this=0x7fff90004e60, share=0x7ffff54389c0) at /home/psergey/dev-git/10.1/storage/perfschema/table_tiws_by_table.cc:171
|
#3 0x0000555555ecf866 in table_tiws_by_table::rnd_next (this=0x7fff90004e60) at /home/psergey/dev-git/10.1/storage/perfschema/table_tiws_by_table.cc:127
|
#4 0x0000555555ea18e2 in ha_perfschema::rnd_next (this=0x7fff90013a68, buf=0x7fff90013f88 "") at /home/psergey/dev-git/10.1/storage/perfschema/ha_perfschema.cc:359
|
like so:
m_count= stat->m_count;
|
...
|
m_sum= normalizer->wait_to_pico(stat->m_sum);
|
m_avg= normalizer->wait_to_pico(stat->m_sum / m_count);
|
the resulting data is in pico-seconds.
Studying how to get execution time.
when the server is started with performance_schema=ON (and no other changes from the default), it actually does count time spent accessing the tables.
Proof: put a breakpoint in start_table_io_wait_v1, see this to execute:
if (pfs_table->m_io_timed)
{
timer_start= get_timer_raw_value_and_function(wait_timer, & state->m_timer);
state->m_timer_start= timer_start;
Put a breakpoint in end_table_io_wait_v1, see this:
if (flags & STATE_FLAG_TIMED)
{
timer_end= state->m_timer();
wait_time= timer_end - state->m_timer_start;