数据库存储在线升级

版权声明:版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/sandy9919/article/details/83538843

业务数据库存储升级,磁盘使用linux的LVM。业务数据文件在线迁移,由机械磁盘迁移至固态磁盘。

查看pv使用情况

[root@blueking ~]# pvs -o+pv_used
  PV         VG     Fmt  Attr PSize    PFree    Used   
  /dev/sda2  centos lvm2 a--   <49.00g    4.00m  48.99g
  /dev/sdb   data   lvm2 a--   <50.00g       0  <50.00g
  /dev/sdc   data   lvm2 a--  <100.00g <100.00g      0 

sdb是机械磁盘,sdc是固态磁盘

[root@blueking ~]# df -h
Filesystem               Size  Used Avail Use% Mounted on
/dev/mapper/centos-root   47G  3.7G   44G   8% /
devtmpfs                 1.9G     0  1.9G   0% /dev
tmpfs                    1.9G     0  1.9G   0% /dev/shm
tmpfs                    1.9G  8.9M  1.9G   1% /run
tmpfs                    1.9G     0  1.9G   0% /sys/fs/cgroup
/dev/sda1               1014M  177M  838M  18% /boot
/dev/mapper/data-data     50G   27G   20G  58% /opt
tmpfs                    380M  8.0K  380M   1% /run/user/42
tmpfs                    380M     0  380M   0% /run/user/0

lv是/dev/data/data,挂载目录opt。

在线迁移sdb数据至sdc

[root@blueking ~]# pvcreate /dev/sdc
  Physical volume "/dev/sdc" successfully created.
[root@blueking ~]# vgscan
  Reading volume groups from cache.
  Found volume group "data" using metadata type lvm2
  Found volume group "centos" using metadata type lvm2
[root@blueking ~]# vgdisplay 
  --- Volume group ---
  VG Name               data
  System ID             
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  3
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                1
  Open LV               1
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               <50.00 GiB
  PE Size               4.00 MiB
  Total PE              12799
  Alloc PE / Size       12799 / <50.00 GiB
  Free  PE / Size       0 / 0   
  VG UUID               9hVVbu-b84c-Uhtt-tJFU-W4Yu-lJ0M-ewr73Q
   
  --- Volume group ---
  VG Name               centos
  System ID             
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  3
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                2
  Open LV               2
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               <49.00 GiB
  PE Size               4.00 MiB
  Total PE              12543
  Alloc PE / Size       12542 / 48.99 GiB
  Free  PE / Size       1 / 4.00 MiB
  VG UUID               kE2AR5-lbFd-PV9e-N6qa-DlPa-5nRk-NX9rBi
   
[root@blueking ~]# vgextend data /dev/sdc
  Volume group "data" successfully extended
[root@blueking ~]# vgdisplay 
  --- Volume group ---
  VG Name               data
  System ID             
  Format                lvm2
  Metadata Areas        2
  Metadata Sequence No  4
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                1
  Open LV               1
  Max PV                0
  Cur PV                2
  Act PV                2
  VG Size               149.99 GiB
  PE Size               4.00 MiB
  Total PE              38398
  Alloc PE / Size       12799 / <50.00 GiB
  Free  PE / Size       25599 / <100.00 GiB
  VG UUID               9hVVbu-b84c-Uhtt-tJFU-W4Yu-lJ0M-ewr73Q
   
  --- Volume group ---
  VG Name               centos
  System ID             
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  3
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                2
  Open LV               2
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               <49.00 GiB
  PE Size               4.00 MiB
  Total PE              12543
  Alloc PE / Size       12542 / 48.99 GiB
  Free  PE / Size       1 / 4.00 MiB
  VG UUID               kE2AR5-lbFd-PV9e-N6qa-DlPa-5nRk-NX9rBi
   

迁移数据

[root@blueking ~]# pvmove /dev/sdb
  /dev/sdb: Moved: 0.00%
  /dev/sdb: Moved: 1.48%
  /dev/sdb: Moved: 3.15%
  /dev/sdb: Moved: 4.50%
  /dev/sdb: Moved: 5.59%
  /dev/sdb: Moved: 7.02%
  /dev/sdb: Moved: 7.75%
  /dev/sdb: Moved: 8.87%
  /dev/sdb: Moved: 9.81%
  /dev/sdb: Moved: 11.34%
  /dev/sdb: Moved: 12.84%
  /dev/sdb: Moved: 13.62%
  /dev/sdb: Moved: 14.99%
  /dev/sdb: Moved: 16.49%
  /dev/sdb: Moved: 17.92%
  /dev/sdb: Moved: 19.18%
  /dev/sdb: Moved: 20.29%
  /dev/sdb: Moved: 21.68%
  /dev/sdb: Moved: 23.15%
  /dev/sdb: Moved: 24.51%
  /dev/sdb: Moved: 25.90%
  /dev/sdb: Moved: 27.31%
  /dev/sdb: Moved: 28.74%
  /dev/sdb: Moved: 29.42%
  /dev/sdb: Moved: 29.93%
  /dev/sdb: Moved: 30.70%
  /dev/sdb: Moved: 31.43%
  /dev/sdb: Moved: 31.96%
  /dev/sdb: Moved: 32.23%
  /dev/sdb: Moved: 32.78%
  /dev/sdb: Moved: 33.38%
  /dev/sdb: Moved: 34.83%
  /dev/sdb: Moved: 36.26%
  /dev/sdb: Moved: 37.78%
  /dev/sdb: Moved: 39.25%
  /dev/sdb: Moved: 40.77%
  /dev/sdb: Moved: 42.15%
  /dev/sdb: Moved: 43.63%
  /dev/sdb: Moved: 45.21%
  /dev/sdb: Moved: 46.71%
  /dev/sdb: Moved: 48.10%
  /dev/sdb: Moved: 49.53%
  /dev/sdb: Moved: 50.96%
  /dev/sdb: Moved: 52.51%
  /dev/sdb: Moved: 53.94%
  /dev/sdb: Moved: 55.47%
  /dev/sdb: Moved: 56.97%
  /dev/sdb: Moved: 58.43%
  /dev/sdb: Moved: 59.80%
  /dev/sdb: Moved: 61.23%
  /dev/sdb: Moved: 62.57%
  /dev/sdb: Moved: 63.87%
  /dev/sdb: Moved: 65.23%
  /dev/sdb: Moved: 66.56%
  /dev/sdb: Moved: 67.90%
  /dev/sdb: Moved: 69.35%
  /dev/sdb: Moved: 70.95%
  /dev/sdb: Moved: 72.67%
  /dev/sdb: Moved: 74.74%
  /dev/sdb: Moved: 76.69%
  /dev/sdb: Moved: 78.26%
  /dev/sdb: Moved: 80.27%
  /dev/sdb: Moved: 81.95%
  /dev/sdb: Moved: 83.77%
  /dev/sdb: Moved: 85.56%
  /dev/sdb: Moved: 87.39%
  /dev/sdb: Moved: 89.14%
  /dev/sdb: Moved: 90.94%
  /dev/sdb: Moved: 92.68%
  /dev/sdb: Moved: 94.68%
  /dev/sdb: Moved: 96.68%
  /dev/sdb: Moved: 98.06%
  /dev/sdb: Moved: 100.00%

迁移过程中,lv没有离线,目录cp数据

[root@sqltuning opt]# scp -r mysql mongodb [email protected]:/opt
[email protected]'s password: 
thr_rwlock.h                                                                                                                                                                                             100% 6044   505.9KB/s   00:00    
sql_common.h                                                                                                                                                                                             100% 7711   864.1KB/s   00:00    
thr_mutex.h                                                                                                                                                                                              100% 5679     1.9MB/s   00:00    
mysql_time.h                                                                                                                                                                                             100% 2172   811.9KB/s   00:00    
my_list.h                                                                                                                                                                                                100% 1506   576.0KB/s   00:00    
plugin_validate_password.h                                                                                                                                                                               100% 1583   196.9KB/s   00:00    
my_thread.h                                                                                                                                                                                              100% 4877   849.7KB/s   00:00    
plugin_keyring.h                                                                                                                                                                                         100% 6290     1.4MB/s   00:00    
my_alloc.h                                                                                                                                                                                               100% 2312     1.2MB/s   00:00    
sslopt-case.h                                                                                                                                                                                            100% 2222     1.3MB/s   00:00    
plugin.h                                                                                                                                                                                                 100%   26KB   6.2MB/s   00:00    
my_sys.h                                                                                                                                                                                                 100%   39KB   7.0MB/s   00:00    
service_thd_alloc.h                                                                                                                                                                                      100% 4331   845.2KB/s   00:00    
thread_pool_priv.h                                                                                                                                                                                       100% 6132   614.2KB/s   00:00    
service_mysql_string.h                                                                                                                                                                                   100% 5355     2.0MB/s   00:00    
plugin_group_replication.h                                                                                                                                                                               100% 5669   909.0KB/s   00:00    
service_rpl_transaction_write_set.h                                                                                                                                                                      100% 2520   624.5KB/s   00:00    
plugin_ftparser.h                                                                                                                                                                                        100% 7644     2.6MB/s   00:00    
plugin_auth.h                                                                                                                                                                                            100% 5363     1.4MB/s   00:00    
service_ssl_wrapper.h                                                                                                                                                                                    100% 5149     2.9MB/s   00:00    
service_mysql_keyring.h                                                                                                                                                                                  100% 2454   969.5KB/s   00:00    
innodb_priv.h                                                                                                                                                                                            100% 2167     1.3MB/s   00:00    
plugin_auth_common.h                                                                                                                                                                                     100% 4846     1.9MB/s   00:00    
service_srv_session.h                                                                                                                                                                                    100% 4888     1.6MB/s   00:00    
service_mysql_password_policy.h                                                                                                                                                                          100% 2436     1.8MB/s   00:00    
client_plugin.h.pp                                                                                                                                                                                       100% 1988   921.4KB/s   00:00    
com_data.h                                                                                                                                                                                               100% 3105     1.1MB/s   00:00    
service_rules_table.h                                                                                                                                                                                    100% 5087     1.6MB/s   00:00    
service_security_context.h                                                                                                                                                                               100% 4058     1.3MB/s   00:00    
service_command.h                                                                                                                                                                                        100%   13KB   3.4MB/s   00:00    
plugin.h                                                                                                                                                                                                 100%   26KB   7.1MB/s   00:00    
mysql_file.h                                                                                                                                                                                             100%   38KB   3.5MB/s   00:00    
mysql_table.h                                                                                                                                                                                            100% 4041   281.0KB/s   00:00    
psi_base.h                                                                                                                                                                                               100% 3485   864.1KB/s   00:00    
mysql_thread.h                                                                                                                                                                                           100%   33KB   5.2MB/s   00:00    
mysql_sp.h                                                                                                                                                                                               100% 2837   297.3KB/s   00:00    
mysql_ps.h                                                                                                                                                                                               100% 3703   588.9KB/s   00:00    
mysql_idle.h                                                                                                                                                                                             100% 2590   402.8KB/s   00:00    
psi_memory.h                                                                                                                                                                                             100% 4076     1.5MB/s   00:00    
mysql_transaction.h                                                                                                                                                                                      100% 6828     1.2MB/s   00:00    
mysql_mdl.h                                                                                                                                                                                              100% 3309     1.3MB/s   00:00    
mysql_memory.h                                                                                                                                                                                           100% 1679   627.6KB/s   00:00    
mysql_socket.h                                                                                                                                                                                           100%   32KB   9.0MB/s   00:00    
mysql_statement.h                                                                                                                                                                                        100% 6618     2.1MB/s   00:00    
psi.h                                                                                                                                                                                                    100%   85KB   5.7MB/s   00:00    
mysql_stage.h                                                                                                                                                                                            100% 4791     1.1MB/s   00:00    
client_authentication.h                                                                                                                                                                                  100% 1077   702.7KB/s   00:00    
service_parser.h                                                                                                                                                                                         100% 9402     3.4MB/s   00:00    
service_mysql_alloc.h                                                                                                                                                                                    100% 2760     1.0MB/s   00:00    
thread_type.h                                                                                                                                                                                            100% 1384   475.4KB/s   00:00    
client_plugin.h                                                                                                                                                                                          100% 6460     3.1MB/s   00:00    
service_rpl_transaction_ctx.h                                                                                                                                                                            100% 2361   748.9KB/s   00:00    
plugin_validate_password.h                                                                                                                                                                               100% 1583   726.4KB/s   00:00    
plugin_keyring.h                                                                                                                                                                                         100% 6290     1.8MB/s   00:00    
service_locking.h                                                                                                                                                                                        100% 4334     2.3MB/s   00:00    
services.h.pp                                                                                                                                                                                            100%   21KB   6.1MB/s   00:00    
service_thd_wait.h                                                                                                                                                                                       100% 3945     3.5MB/s   00:00    
plugin_keyring.h.pp                                                                                                                                                                                      100% 4458     1.5MB/s   00:00    
plugin_ftparser.h.pp                                                                                                                                                                                     100% 4871     2.3MB/s   00:00    
mysql_lex_string.h                                                                                                                                                                                       100% 1096   523.0KB/s   00:00    
service_my_snprintf.h                                                                                                                                                                                    100% 3409     1.5MB/s   00:00    
get_password.h                                                                                                                                                                                           100% 1198   390.6KB/s   00:00    
services.h                                                                                                                                                                                               100% 1948   655.2KB/s   00:00    
service_thd_engine_lock.h                                                                                                                                                                                100% 1489   422.8KB/s   00:00    
plugin_trace.h                                                                                                                                                                                           100%   12KB   4.5MB/s   00:00    
plugin_auth.h.pp                                                                                                                                                                                         100% 5147     2.6MB/s   00:00    
plugin_audit.h                                                                                                                                                                                           100%   17KB   5.4MB/s   00:00    
plugin_audit.h.pp                                                                                                                                                                                        100%   14KB   3.8MB/s   00:00    
group_replication_priv.h                                                                                                                                                                                 100% 4727     2.7MB/s   00:00    
service_srv_session_info.h                                                                                                                                                                               100% 5234     2.5MB/s   00:00    
service_my_plugin_log.h                                                                                                                                                                                  100% 1678   891.8KB/s   00:00    
service_thread_scheduler.h                                                                                                                                                                               100% 2682   976.2KB/s   00:00    
typelib.h                                                                                                                                                                                                100% 2282     1.1MB/s   00:00    
plugin_audit.h                                                                                                                                                                                           100%   17KB   5.4MB/s   00:00    
byte_order_generic_x86.h                                                                                                                                                                                 100% 2190   801.6KB/s   00:00    
big_endian.h                                                                                                                                                                                             100% 3654     1.5MB/s   00:00    
my_compiler.h                                                                                                                                                                                            100% 5130     1.5MB/s   00:00    
mysqld_ername.h                                                                                                                                                                                          100%  117KB  20.6MB/s   00:00    
my_command.h                                                                                                                                                                                             100% 1667     1.1MB/s   00:00    
sslopt-vars.h                                                                                                                                                                                            100% 2902     1.3MB/s   00:00    
my_dbug.h                                                                                                                                                                                                100% 9391     4.9MB/s   00:00    
sql_state.h                                                                                                                                                                                              100%   15KB   3.6MB/s   00:00    
my_byteorder.h                                                                                                                                                                                           100% 5488     3.0MB/s   00:00    
sslopt-longopts.h                                                                                                                                                                                        100% 2878     1.2MB/s   00:00    
my_thread_local.h                                                                                                                                                                                        100% 2566   911.2KB/s   00:00    
errmsg.h                                                                                                                                                                                                 100% 4350     1.3MB/s   00:00    
thr_cond.h                                                                                                                                                                                               100% 5148     1.1MB/s   00:00    
mysql_com_server.h                                                                                                                                                                                       100% 1313     1.1MB/s   00:00    
little_endian.h                                                                                                                                                                                          100% 3233   286.9KB/s   00:00    
plugin_group_replication.h                                                                                                                                                                               100% 5669     1.0MB/s   00:00    
mysql_embed.h                                                                                                                                                                                            100% 1142   131.7KB/s   00:00    
keycache.h                                                                                                                                                                                               100% 7489     1.6MB/s   00:00    
my_xml.h                                                                                                                                                                                                 100% 2821     1.0MB/s   00:00    
my_global.h                                                                                                                                                                                              100%   22KB   3.9MB/s   00:00    
plugin_ftparser.h                                                                                                                                                                                        100% 7644     1.1MB/s   00:00    
m_string.h                                                                                                                                                                                               100%   10KB   3.7MB/s   00:00    
my_getopt.h                                                                                                                                                                                              100% 6456     2.0MB/s   00:00    
byte_order_generic.h                                                                                                                                                                                     100% 2555     1.3MB/s   00:00    
mysqld_error.h                                                                                                                                                                                           100%   43KB   8.4MB/s   00:00    
decimal.h                                                                                                                                                                                                100% 5175     1.6MB/s   00:00    
binary_log_types.h                                                                                                                                                                                       100% 1967   967.4KB/s   00:00    
my_config.h                                                                                                                                                                                              100%   12KB   4.5MB/s   00:00    
mysql_version.h                                                                                                                                                                                          100% 1013   415.4KB/s   00:00    
mysql_com.h                                                                                                                                                                                              100%   24KB   6.4MB/s   00:00    
m_ctype.h                                                                                                                                                                                                100%   33KB   9.2MB/s   00:00    
mysql.h                                                                                                                                                                                                  100%   28KB  11.1MB/s   00:00    
my_dir.h                                                                                                                                                                                                 100% 3012     2.1MB/s   00:00    
mysqld_multi.server                                                                                                                                                                                      100% 1061   132.7KB/s   00:00    
mysql-log-rotate                                                                                                                                                                                         100%  894   302.7KB/s   00:00    
magic                                                                                                                                                                                                    100%  773   116.9KB/s   00:00    
mysql.server.bak                                                                                                                                                                                         100%   10KB   1.1MB/s   00:00    
mysql.server                                                                                                                                                                                             100%   10KB   1.1MB/s   00:00    
INFO_SRC                                                                                                                                                                                                 100%  185   147.0KB/s   00:00    
INFO_BIN                                                                                                                                                                                                 100% 5867     1.9MB/s   00:00    
ChangeLog                                                                                                                                                                                                100%  163KB  20.1MB/s   00:00    
libmysqlservices.a                                                                                                                                                                                       100%   41KB   6.6MB/s   00:00    
libmysqld.a                                                                                                                                                                                              100%  517MB  62.6MB/s   00:08    
libmysqlclient.so.20.3.8                                                                                                                                                                                 100% 9303KB  75.7MB/s   00:00    
libtest_x_sessions_init.so                                                                                                                                                                               100%   70KB   4.2MB/s   00:00    
mysqlx.so                                                                                                                                                                                                100%   21MB  50.4MB/s   00:00    
libtest_services.so                                                                                                                                                                                      100%   46KB   5.2MB/s   00:00    
ha_example.so                                                                                                                                                                                            100%  447KB  25.3MB/s   00:00    
libtest_sql_all_col_types.so                                                                                                                                                                             100%  104KB   8.8MB/s   00:00    
rewrite_example.so                                                                                                                                                                                       100%   41KB   6.7MB/s   00:00    
adt_null.so                                                                                                                                                                                              100%   83KB  15.3MB/s   00:00    
libtest_sql_sqlmode.so                                                                                                                                                                                   100%  130KB  15.7MB/s   00:00    
locking_service.so                                                                                                                                                                                       100%   20KB   6.2MB/s   00:00    
rewriter.so                                                                                                                                                                                              100%  575KB  28.1MB/s   00:00    
libtest_sql_cmds_1.so                                                                                                                                                                                    100%  200KB   8.0MB/s   00:00    
group_replication.so                                                                                                                                                                                     100%   20MB  51.2MB/s   00:00    
mypluglib.so                                                                                                                                                                                             100%   45KB   5.7MB/s   00:00    
version_token.so                                                                                                                                                                                         100%  469KB  33.4MB/s   00:00    
libtest_sql_replication.so                                                                                                                                                                               100%  126KB  12.2MB/s   00:00    
libtest_sql_lock.so                                                                                                                                                                                      100%  113KB  24.9MB/s   00:00    
libtest_session_in_thd.so                                                                                                                                                                                100%   59KB  19.5MB/s   00:00    
test_udf_services.so                                                                                                                                                                                     100%   38KB   9.3MB/s   00:00    
libtest_sql_shutdown.so                                                                                                                                                                                  100%   98KB  22.5MB/s   00:00    
libmemcached.so                                                                                                                                                                                          100%  718KB  38.7MB/s   00:00    
authentication_ldap_sasl_client.so                                                                                                                                                                       100%  298KB  43.7MB/s   00:00    
libtest_x_sessions_deinit.so                                                                                                                                                                             100%   53KB   8.8MB/s   00:00    
innodb_engine.so                                                                                                                                                                                         100%  887KB  30.8MB/s   00:00    
libtest_session_detach.so                                                                                                                                                                                100%   84KB  10.3MB/s   00:00    
auth_socket.so                                                                                                                                                                                           100%   35KB   8.6MB/s   00:00    
libtest_sql_views_triggers.so                                                                                                                                                                            100%  130KB  17.4MB/s   00:00    
libtest_services_threaded.so                                                                                                                                                                             100%   58KB   9.9MB/s   00:00    
libtest_sql_2_sessions.so                                                                                                                                                                                100%  102KB  12.8MB/s   00:00    
keyring_file.so                                                                                                                                                                                          100%  915KB  35.9MB/s   00:00    
keyring_udf.so                                                                                                                                                                                           100%  425KB  19.3MB/s   00:00    
validate_password.so                                                                                                                                                                                     100%  197KB  17.0MB/s   00:00    
libtest_sql_commit.so                                                                                                                                                                                    100%  106KB  16.0MB/s   00:00    
test_security_context.so                                                                                                                                                                                 100%   42KB  12.2MB/s   00:00    
libpluginmecab.so                                                                                                                                                                                        100% 8755KB  74.3MB/s   00:00    
libtest_framework.so                                                                                                                                                                                     100%   45KB   5.5MB/s   00:00    
test_security_context.so                                                                                                                                                                                 100%   41KB   3.5MB/s   00:00    
auth_socket.so                                                                                                                                                                                           100%   33KB  10.4MB/s   00:00    
innodb_engine.so                                                                                                                                                                                         100%  512KB  14.7MB/s   00:00    
libtest_sql_views_triggers.so                                                                                                                                                                            100%  111KB   7.8MB/s   00:00    
libtest_x_sessions_init.so                                                                                                                                                                               100%   65KB  20.0MB/s   00:00    
libtest_session_in_thd.so                                                                                                                                                                                100%   50KB  15.2MB/s   00:00    
libtest_sql_shutdown.so                                                                                                                                                                                  100%   88KB  19.2MB/s   00:00    
libtest_framework.so                                                                                                                                                                                     100%   41KB  13.9MB/s   00:00    
semisync_slave.so                                                                                                                                                                                        100%  131KB  19.0MB/s   00:00    
connection_control.so                                                                                                                                                                                    100%  677KB   4.4MB/s   00:00    
validate_password.so                                                                                                                                                                                     100%  153KB   5.4MB/s   00:00    
mysql_no_login.so                                                                                                                                                                                        100%   32KB   6.4MB/s   00:00    
semisync_master.so                                                                                                                                                                                       100%  713KB  22.4MB/s   00:00    
libtest_sql_all_col_types.so                                                                                                                                                                             100%   91KB  27.5MB/s   00:00    
libtest_sql_errors.so                                                                                                                                                                                    100%   92KB   7.7MB/s   00:00    
keyring_udf.so                                                                                                                                                                                           100%  277KB  31.7MB/s   00:00    
libpluginmecab.so                                                                                                                                                                                        100% 8740KB  51.5MB/s   00:00    
libtest_sql_commit.so                                                                                                                                                                                    100%   91KB   9.2MB/s   00:00    
mysqlx.so                                                                                                                                                                                                100%   13MB  69.2MB/s   00:00    
libmemcached.so                                                                                                                                                                                          100%  425KB  32.5MB/s   00:00    
authentication_ldap_sasl_client.so                                                                                                                                                                       100%  109KB  28.0MB/s   00:00    
libtest_sql_sqlmode.so                                                                                                                                                                                   100%  112KB   7.5MB/s   00:00    
libtest_sql_replication.so                                                                                                                                                                               100%  103KB  33.9MB/s   00:00    
rewrite_example.so                                                                                                                                                                                       100%   40KB  18.6MB/s   00:00    
adt_null.so                                                                                                                                                                                              100%   69KB  22.6MB/s   00:00    
libtest_sql_stored_procedures_functions.so                                                                                                                                                               100%  111KB  32.2MB/s   00:00    
rewriter.so                                                                                                                                                                                              100%  387KB  39.5MB/s   00:00    
libtest_services.so                                                                                                                                                                                      100%   46KB  11.5MB/s   00:00    
locking_service.so                                                                                                                                                                                       100%   22KB   6.9MB/s   00:00    
libtest_session_info.so                                                                                                                                                                                  100%  103KB   8.2MB/s   00:00    
mypluglib.so                                                                                                                                                                                             100%   43KB  14.9MB/s   00:00    
libtest_sql_complex.so                                                                                                                                                                                   100%  112KB 567.6KB/s   00:00    
keyring_file.so                                                                                                                                                                                          100%  691KB   3.3MB/s   00:00    
group_replication.so                                                                                                                                                                                     100%   12MB  27.2MB/s   00:00    
ha_example.so                                                                                                                                                                                            100%  326KB   2.8MB/s   00:00    
libtest_services_threaded.so                                                                                                                                                                             100%   51KB  13.6MB/s   00:00    
version_token.so                                                                                                                                                                                         100%  280KB  29.2MB/s   00:00    
libtest_session_detach.so                                                                                                                                                                                100%   81KB  17.7MB/s   00:00    
libtest_sql_processlist.so                                                                                                                                                                               100%   88KB  21.6MB/s   00:00    
test_udf_services.so                                                                                                                                                                                     100%   38KB  13.1MB/s   00:00    
libtest_sql_2_sessions.so                                                                                                                                                                                100%   91KB  22.7MB/s   00:00    
libtest_x_sessions_deinit.so                                                                                                                                                                             100%   51KB  17.4MB/s   00:00    
libtest_sql_lock.so                                                                                                                                                                                      100%   94KB  22.4MB/s   00:00    
libtest_sql_cmds_1.so                                                                                                                                                                                    100%  109KB  22.6MB/s   00:00    
libtest_sql_processlist.so                                                                                                                                                                               100%   93KB  20.7MB/s   00:00    
libtest_sql_errors.so                                                                                                                                                                                    100%  104KB  22.7MB/s   00:00    
libtest_sql_stored_procedures_functions.so                                                                                                                                                               100%  130KB  22.7MB/s   00:00    
libtest_session_info.so                                                                                                                                                                                  100%  119KB  22.4MB/s   00:00    
semisync_slave.so                                                                                                                                                                                        100%  148KB  25.1MB/s   00:00    
libtest_sql_complex.so                                                                                                                                                                                   100%  134KB  25.4MB/s   00:00    
connection_control.so                                                                                                                                                                                    100%  888KB  31.8MB/s   00:00    
mysql_no_login.so                                                                                                                                                                                        100%   33KB  11.9MB/s   00:00    
semisync_master.so                                                                                                                                                                                       100%  859KB  33.1MB/s   00:00    
libmysqlclient.a                                                                                                                                                                                         100%   20MB  32.7MB/s   00:00    
char.bin                                                                                                                                                                                                 100%  256KB  16.3MB/s   00:00    
pos-id.def                                                                                                                                                                                               100% 1477   275.6KB/s   00:00    
sys.dic                                                                                                                                                                                                  100%   47MB  45.9MB/s   00:01    
right-id.def                                                                                                                                                                                             100%   55KB  18.4MB/s   00:00    
unk.dic                                                                                                                                                                                                  100% 5690     4.4MB/s   00:00    
left-id.def                                                                                                                                                                                              100%   55KB  20.2MB/s   00:00    
dicrc                                                                                                                                                                                                    100%  693   696.0KB/s   00:00    
matrix.bin                                                                                                                                                                                               100% 3383KB  50.1MB/s   00:00    
rewrite.def                                                                                                                                                                                              100% 6241     2.9MB/s   00:00    
pos-id.def                                                                                                                                                                                               100% 1477   194.1KB/s   00:00    
sys.dic                                                                                                                                                                                                  100%   36MB  61.4MB/s   00:00    
rewrite.def                                                                                                                                                                                              100% 6241     3.6MB/s   00:00    
left-id.def                                                                                                                                                                                              100%   55KB  25.5MB/s   00:00    
matrix.bin                                                                                                                                                                                               100% 3383KB  52.8MB/s   00:00    
right-id.def                                                                                                                                                                                             100%   55KB  14.7MB/s   00:00    
unk.dic                                                                                                                                                                                                  100% 5409     2.5MB/s   00:00    
dicrc                                                                                                                                                                                                    100%  693    60.8KB/s   00:00    
char.bin                                                                                                                                                                                                 100%  256KB  44.7MB/s   00:00    
sys.dic                                                                                                                                                                                                  100%   36MB  55.9MB/s   00:00    
pos-id.def                                                                                                                                                                                               100% 1477   144.7KB/s   00:00    
right-id.def                                                                                                                                                                                             100%   55KB   3.4MB/s   00:00    
matrix.bin                                                                                                                                                                                               100% 3383KB  58.5MB/s   00:00    
left-id.def                                                                                                                                                                                              100%   55KB  12.5MB/s   00:00    
dicrc                                                                                                                                                                                                    100%  693   785.3KB/s   00:00    
unk.dic                                                                                                                                                                                                  100% 5409     1.2MB/s   00:00    
rewrite.def                                                                                                                                                                                              100% 6241     1.5MB/s   00:00    
char.bin                                                                                                                                                                                                 100%  256KB  17.2MB/s   00:00    
mecabrc                                                                                                                                                                                                  100%  981   809.5KB/s   00:00    
libmysqlclient.so                                                                                                                                                                                        100% 9303KB  59.3MB/s   00:00    
libmysqlclient.so.20                                                                                                                                                                                     100% 9303KB  66.0MB/s   00:00    
libmysqld-debug.a                                                                                                                                                                                        100%  348MB  53.3MB/s   00:06    
mysqlclient.pc                                                                                                                                                                                           100%  993    80.8KB/s   00:00    
myisamchk                                                                                                                                                                                                100% 8012KB  17.5MB/s   00:00    
mysql_config_editor                                                                                                                                                                                      100% 8262KB  43.8MB/s   00:00    
mysqlcheck                                                                                                                                                                                               100% 9587KB  15.4MB/s   00:00    
mysql_client_test_embedded                                                                                                                                                                               100%  193MB  77.4MB/s   00:02    
mysql_plugin                                                                                                                                                                                             100% 5452KB  78.6MB/s   00:00    
mysqld_safe                                                                                                                                                                                              100%   28KB  16.6MB/s   00:00    
mysqld_multi                                                                                                                                                                                             100%   26KB  15.2MB/s   00:00    
mysqladmin                                                                                                                                                                                               100% 9299KB  75.0MB/s   00:00    
myisam_ftdump                                                                                                                                                                                            100% 7573KB  69.9MB/s   00:00    
mysqld-debug                                                                                                                                                                                             100%  158MB  54.0MB/s   00:02    
mysqlxtest                                                                                                                                                                                               100%   24MB  57.9MB/s   00:00    
myisampack                                                                                                                                                                                               100% 7693KB  50.3MB/s   00:00    
mysql_ssl_rsa_setup                                                                                                                                                                                      100% 5820KB  64.3MB/s   00:00    
mysql_embedded                                                                                                                                                                                           100%  192MB  59.6MB/s   00:03    
myisamlog                                                                                                                                                                                                100% 7353KB  24.0MB/s   00:00    
lz4_decompress                                                                                                                                                                                           100%  314KB  41.8MB/s   00:00    
mysql_upgrade                                                                                                                                                                                            100%   12MB  42.1MB/s   00:00    
innochecksum                                                                                                                                                                                             100% 8842KB   8.6MB/s   00:01    
mysql_secure_installation                                                                                                                                                                                100% 9237KB  62.1MB/s   00:00    
mysqlshow                                                                                                                                                                                                100% 9246KB  70.1MB/s   00:00    
my_print_defaults                                                                                                                                                                                        100% 5392KB  49.7MB/s   00:00    
mysqlimport                                                                                                                                                                                              100% 9287KB  47.2MB/s   00:00    
mysqltest_embedded                                                                                                                                                                                       100%  192MB  72.2MB/s   00:02    
mysqldump                                                                                                                                                                                                100% 9630KB  63.1MB/s   00:00    
zlib_decompress                                                                                                                                                                                          100%  121KB  21.9MB/s   00:00    
resolveip                                                                                                                                                                                                100% 5392KB  77.2MB/s   00:00    
mysql_tzinfo_to_sql                                                                                                                                                                                      100% 5015KB  71.4MB/s   00:00    
perror                                                                                                                                                                                                   100% 5526KB  66.0MB/s   00:00    
mysqlpump                                                                                                                                                                                                100%   18MB  18.1MB/s   00:01    
mysql                                                                                                                                                                                                    100%   10MB  30.1MB/s   00:00    
mysqlslap                                                                                                                                                                                                100% 9341KB  40.7MB/s   00:00    
mysql_config                                                                                                                                                                                             100% 4828   658.5KB/s   00:00    
mysqlbinlog                                                                                                                                                                                              100%   11MB  46.3MB/s   00:00    
mysqldumpslow                                                                                                                                                                                            100% 7464   925.3KB/s   00:00    
replace                                                                                                                                                                                                  100% 5188KB  68.6MB/s   00:00    
resolve_stack_dump                                                                                                                                                                                       100% 5470KB  41.4MB/s   00:00    
mysqld                                                                                                                                                                                                   100%  234MB  61.6MB/s   00:03    
mysql_install_db                                                                                                                                                                                         100%   10MB  77.8MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   76KB   5.5MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   76KB   6.8MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   82KB   2.9MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   77KB   2.8MB/s   00:00    
uninstall_rewriter.sql                                                                                                                                                                                   100%  834   124.2KB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   82KB  11.1MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   81KB   9.0MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   75KB   3.7MB/s   00:00    
mysql_system_tables_data.sql                                                                                                                                                                             100%  811   846.9KB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   77KB  12.3MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   85KB  12.7MB/s   00:00    
install_rewriter.sql                                                                                                                                                                                     100% 1812   512.1KB/s   00:00    
fill_help_tables.sql                                                                                                                                                                                     100%  917KB  39.2MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   75KB  28.7MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   90KB  32.8MB/s   00:00    
mysql_security_commands.sql                                                                                                                                                                              100% 1760   438.9KB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   76KB  12.2MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   75KB  27.8MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   78KB  15.3MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   75KB  24.5MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   76KB  30.5MB/s   00:00    
innodb_memcached_config.sql                                                                                                                                                                              100% 3999     2.3MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   77KB  25.7MB/s   00:00    
mysql_system_tables.sql                                                                                                                                                                                  100%  151KB  19.7MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   76KB  25.2MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   75KB  24.4MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   78KB  11.6MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   75KB  14.8MB/s   00:00    
errmsg-utf8.txt                                                                                                                                                                                          100%  514KB  61.0MB/s   00:00    
mysql_test_data_timezone.sql                                                                                                                                                                             100%   10KB   1.5MB/s   00:00    
hp8.xml                                                                                                                                                                                                  100% 5501     1.5MB/s   00:00    
macroman.xml                                                                                                                                                                                             100% 8057     6.5MB/s   00:00    
Index.xml                                                                                                                                                                                                100%   18KB   3.0MB/s   00:00    
dec8.xml                                                                                                                                                                                                 100% 6528     5.8MB/s   00:00    
cp866.xml                                                                                                                                                                                                100% 5612     1.3MB/s   00:00    
latin1.xml                                                                                                                                                                                               100% 9815     1.6MB/s   00:00    
README                                                                                                                                                                                                   100% 1749     1.0MB/s   00:00    
hebrew.xml                                                                                                                                                                                               100% 5516     1.3MB/s   00:00    
macce.xml                                                                                                                                                                                                100% 8046     1.3MB/s   00:00    
swe7.xml                                                                                                                                                                                                 100% 6529     5.9MB/s   00:00    
latin7.xml                                                                                                                                                                                               100% 7437     1.3MB/s   00:00    
cp852.xml                                                                                                                                                                                                100% 5527     4.5MB/s   00:00    
keybcs2.xml                                                                                                                                                                                              100% 5528     3.4MB/s   00:00    
ascii.xml                                                                                                                                                                                                100% 5511   730.6KB/s   00:00    
cp1251.xml                                                                                                                                                                                               100% 8365     6.2MB/s   00:00    
cp1256.xml                                                                                                                                                                                               100% 5568     1.3MB/s   00:00    
koi8r.xml                                                                                                                                                                                                100% 5509     5.2MB/s   00:00    
koi8u.xml                                                                                                                                                                                                100% 6531     4.9MB/s   00:00    
greek.xml                                                                                                                                                                                                100% 5727     4.3MB/s   00:00    
armscii8.xml                                                                                                                                                                                             100% 5525     1.3MB/s   00:00    
latin5.xml                                                                                                                                                                                               100% 5514     1.3MB/s   00:00    
cp850.xml                                                                                                                                                                                                100% 5505   899.9KB/s   00:00    
geostd8.xml                                                                                                                                                                                              100% 5515     4.7MB/s   00:00    
latin2.xml                                                                                                                                                                                               100% 7237     6.4MB/s   00:00    
cp1257.xml                                                                                                                                                                                               100% 8901     7.9MB/s   00:00    
cp1250.xml                                                                                                                                                                                               100% 8240     5.2MB/s   00:00    
dictionary.txt                                                                                                                                                                                           100%   25KB   7.0MB/s   00:00    
mysql.m4                                                                                                                                                                                                 100% 4221   777.1KB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   75KB  31.2MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   76KB  14.0MB/s   00:00    
errmsg.sys                                                                                                                                                                                               100%   77KB  27.0MB/s   00:00    
mysql_sys_schema.sql                                                                                                                                                                                     100%  280KB  46.4MB/s   00:00    
mysqlslap.1                                                                                                                                                                                              100%   22KB  14.4MB/s   00:00    
replace.1                                                                                                                                                                                                100% 4932     1.7MB/s   00:00    
my_print_defaults.1                                                                                                                                                                                      100% 5878     4.7MB/s   00:00    
innochecksum.1                                                                                                                                                                                           100%   18KB   8.5MB/s   00:00    
mysql_plugin.1                                                                                                                                                                                           100% 9325     7.6MB/s   00:00    
perror.1                                                                                                                                                                                                 100% 4662     5.5MB/s   00:00    
mysqlman.1                                                                                                                                                                                               100%  675     1.0MB/s   00:00    
myisampack.1                                                                                                                                                                                             100%   19KB   6.0MB/s   00:00    
mysqlimport.1                                                                                                                                                                                            100%   19KB  11.8MB/s   00:00    
mysql_upgrade.1                                                                                                                                                                                          100%   23KB  16.0MB/s   00:00    
myisamchk.1                                                                                                                                                                                              100%   49KB  18.0MB/s   00:00    
comp_err.1                                                                                                                                                                                               100% 5759     4.6MB/s   00:00    
mysql_install_db.1                                                                                                                                                                                       100%   34KB  20.3MB/s   00:00    
mysql_config_editor.1                                                                                                                                                                                    100%   23KB  15.9MB/s   00:00    
resolve_stack_dump.1                                                                                                                                                                                     100% 4128     5.2MB/s   00:00    
myisam_ftdump.1                                                                                                                                                                                          100% 6073     4.7MB/s   00:00    
zlib_decompress.1                                                                                                                                                                                        100% 3307     4.5MB/s   00:00    
mysqld_multi.1                                                                                                                                                                                           100%   16KB  12.3MB/s   00:00    
mysql_client_test_embedded.1                                                                                                                                                                             100%   24    38.4KB/s   00:00    
mysqldumpslow.1                                                                                                                                                                                          100% 6537     5.3MB/s   00:00    
mysqld_safe.1                                                                                                                                                                                            100%   22KB  12.4MB/s   00:00    
resolveip.1                                                                                                                                                                                              100% 3467     4.4MB/s   00:00    
mysql_secure_installation.1                                                                                                                                                                              100%   10KB   8.8MB/s   00:00    
mysql-stress-test.pl.1                                                                                                                                                                                   100% 9345     8.3MB/s   00:00    
mysql.server.1                                                                                                                                                                                           100%   10KB   7.8MB/s   00:00    
mysqlpump.1                                                                                                                                                                                              100%   47KB  25.2MB/s   00:00    
myisamlog.1                                                                                                                                                                                              100% 5192     5.3MB/s   00:00    
mysqltest_embedded.1                                                                                                                                                                                     100%   16    24.8KB/s   00:00    
lz4_decompress.1                                                                                                                                                                                         100% 3294     4.6MB/s   00:00    
mysql_client_test.1                                                                                                                                                                                      100% 7625     7.1MB/s   00:00    
mysqlbinlog.1                                                                                                                                                                                            100%   70KB  31.6MB/s   00:00    
mysql.1                                                                                                                                                                                                  100%   74KB  26.0MB/s   00:00    
mysql_ssl_rsa_setup.1                                                                                                                                                                                    100%   11KB   8.9MB/s   00:00    
mysqldump.1                                                                                                                                                                                              100%   62KB  24.5MB/s   00:00    
mysqladmin.1                                                                                                                                                                                             100%   26KB  14.1MB/s   00:00    
mysqlcheck.1                                                                                                                                                                                             100%   23KB  13.3MB/s   00:00    
mysql-test-run.pl.1                                                                                                                                                                                      100%   55KB  24.7MB/s   00:00    
mysql_tzinfo_to_sql.1                                                                                                                                                                                    100% 4640     4.6MB/s   00:00    
mysql_config.1                                                                                                                                                                                           100% 7928     7.3MB/s   00:00    
mysqlshow.1                                                                                                                                                                                              100%   16KB  12.1MB/s   00:00    
mysqld.8                                                                                                                                                                                                 100% 3847     4.1MB/s   00:00    
COPYING                                                                                                                                                                                                  100%   18KB  10.7MB/s   00:00    
README                                                                                                                                                                                                   100% 2478   502.0KB/s   00:00    
ibdata1                                                                                                                                                                                                  100%   12MB  71.4MB/s   00:00    
auto.cnf                                                                                                                                                                                                 100%   56   113.0KB/s   00:00    
db.opt                                                                                                                                                                                                   100%   65     8.2KB/s   00:00    
db.frm                                                                                                                                                                                                   100% 9582    10.3MB/s   00:00    
db.MYI                                                                                                                                                                                                   100% 5120     7.9MB/s   00:00    
db.MYD                                                                                                                                                                                                   100%  976     1.8MB/s   00:00    
user.frm                                                                                                                                                                                                 100%   11KB  11.3MB/s   00:00    
user.MYI                                                                                                                                                                                                 100% 4096     5.5MB/s   00:00    
user.MYD                                                                                                                                                                                                 100%  384   885.3KB/s   00:00    
func.frm                                                                                                                                                                                                 100% 8665     9.8MB/s   00:00    
func.MYI                                                                                                                                                                                                 100% 1024     2.0MB/s   00:00    
func.MYD                                                                                                                                                                                                 100%    0     0.0KB/s   00:00    
plugin.frm                                                                                                                                                                                               100% 8586     9.7MB/s   00:00    
plugin.ibd                                                                                                                                                                                               100%   96KB  42.6MB/s   00:00    
servers.frm                                                                                                                                                                                              100% 8838     9.2MB/s   00:00    
servers.ibd                                                                                                                                                                                              100%   96KB  41.6MB/s   00:00    
tables_priv.frm                                                                                                                                                                                          100% 8955     9.6MB/s   00:00    
tables_priv.MYI                                                                                                                                                                                          100% 9216     9.9MB/s   00:00    
tables_priv.MYD                                                                                                                                                                                          100% 1894     3.4MB/s   00:00    
columns_priv.frm                                                                                                                                                                                         100% 8820     8.9MB/s   00:00    
columns_priv.MYI                                                                                                                                                                                         100% 4096     6.6MB/s   00:00    
columns_priv.MYD                                                                                                                                                                                         100%    0     0.0KB/s   00:00    
help_topic.frm                                                                                                                                                                                           100% 8770   997.4KB/s   00:00    
help_topic.ibd                                                                                                                                                                                           100% 9216KB  72.5MB/s   00:00    
help_category.frm                                                                                                                                                                                        100% 8700     3.7MB/s   00:00    
help_category.ibd                                                                                                                                                                                        100%  112KB  41.9MB/s   00:00    
help_relation.frm                                                                                                                                                                                        100% 8630     1.2MB/s   00:00    
help_relation.ibd                                                                                                                                                                                        100%  128KB  47.8MB/s   00:00    
help_keyword.frm                                                                                                                                                                                         100% 8612     1.2MB/s   00:00    
help_keyword.ibd                                                                                                                                                                                         100%  240KB  57.6MB/s   00:00    
time_zone_name.frm                                                                                                                                                                                       100% 8606     9.1MB/s   00:00    
time_zone_name.ibd                                                                                                                                                                                       100%   96KB  42.7MB/s   00:00    
time_zone.frm                                                                                                                                                                                            100% 8636     8.8MB/s   00:00    
time_zone.ibd                                                                                                                                                                                            100%   96KB  39.7MB/s   00:00    
time_zone_transition.frm                                                                                                                                                                                 100% 8686     8.3MB/s   00:00    
time_zone_transition.ibd                                                                                                                                                                                 100%   96KB  42.3MB/s   00:00    
time_zone_transition_type.frm                                                                                                                                                                            100% 8748     9.1MB/s   00:00    
time_zone_transition_type.ibd                                                                                                                                                                            100%   96KB  40.9MB/s   00:00    
time_zone_leap_second.frm                                                                                                                                                                                100% 8624     9.1MB/s   00:00    
time_zone_leap_second.ibd                                                                                                                                                                                100%   96KB  39.0MB/s   00:00    
proc.frm                                                                                                                                                                                                 100% 9996     4.9MB/s   00:00    
proc.MYI                                                                                                                                                                                                 100% 4096     1.7MB/s   00:00    
proc.MYD                                                                                                                                                                                                 100%  293KB   5.4MB/s   00:00    
procs_priv.frm                                                                                                                                                                                           100% 8875     7.3MB/s   00:00    
procs_priv.MYI                                                                                                                                                                                           100% 4096     4.7MB/s   00:00    
procs_priv.MYD                                                                                                                                                                                           100%    0     0.0KB/s   00:00    
general_log.frm                                                                                                                                                                                          100% 8776     4.2MB/s   00:00    
general_log.CSM                                                                                                                                                                                          100%   35    16.8KB/s   00:00    
general_log.CSV                                                                                                                                                                                          100%    0     0.0KB/s   00:00    
slow_log.frm                                                                                                                                                                                             100% 9016     4.9MB/s   00:00    
slow_log.CSM                                                                                                                                                                                             100%   35    20.9KB/s   00:00    
slow_log.CSV                                                                                                                                                                                             100%    0     0.0KB/s   00:00    
event.frm                                                                                                                                                                                                100%   10KB   8.5MB/s   00:00    
event.MYI                                                                                                                                                                                                100% 2048   532.6KB/s   00:00    
event.MYD                                                                                                                                                                                                100%    0     0.0KB/s   00:00    
ndb_binlog_index.frm                                                                                                                                                                                     100% 8986     4.0MB/s   00:00    
ndb_binlog_index.MYI                                                                                                                                                                                     100% 1024   794.4KB/s   00:00    
ndb_binlog_index.MYD                                                                                                                                                                                     100%    0     0.0KB/s   00:00    
innodb_table_stats.frm                                                                                                                                                                                   100% 8830     4.9MB/s   00:00    
innodb_table_stats.ibd                                                                                                                                                                                   100%   96KB  27.9MB/s   00:00    
innodb_index_stats.frm                                                                                                                                                                                   100%   13KB   5.7MB/s   00:00    
innodb_index_stats.ibd                                                                                                                                                                                   100%   96KB  28.0MB/s   00:00    
slave_relay_log_info.frm                                                                                                                                                                                 100% 9468     8.1MB/s   00:00    
slave_relay_log_info.ibd                                                                                                                                                                                 100%   96KB  27.3MB/s   00:00    
slave_master_info.frm                                                                                                                                                                                    100%   11KB   9.2MB/s   00:00    
slave_master_info.ibd                                                                                                                                                                                    100%   96KB  27.1MB/s   00:00    
slave_worker_info.frm                                                                                                                                                                                    100% 9364     8.0MB/s   00:00    
slave_worker_info.ibd                                                                                                                                                                                    100%   96KB  28.9MB/s   00:00    
gtid_executed.frm                                                                                                                                                                                        100% 8784     7.4MB/s   00:00    
gtid_executed.ibd                                                                                                                                                                                        100%   96KB  29.8MB/s   00:00    
server_cost.frm                                                                                                                                                                                          100% 8692     7.6MB/s   00:00    
server_cost.ibd                                                                                                                                                                                          100%   96KB  30.9MB/s   00:00    
engine_cost.frm                                                                                                                                                                                          100% 8780     7.9MB/s   00:00    
engine_cost.ibd                                                                                                                                                                                          100%   96KB  29.9MB/s   00:00    
proxies_priv.frm                                                                                                                                                                                         100% 8800     7.8MB/s   00:00    
proxies_priv.MYI                                                                                                                                                                                         100% 9216     8.4MB/s   00:00    
proxies_priv.MYD                                                                                                                                                                                         100%  837     1.2MB/s   00:00    
db.opt                                                                                                                                                                                                   100%   61    11.2KB/s   00:00    
cond_instances.frm                                                                                                                                                                                       100% 8624     7.6MB/s   00:00    
events_waits_current.frm                                                                                                                                                                                 100% 9401     7.9MB/s   00:00    
events_waits_history.frm                                                                                                                                                                                 100% 9401     8.3MB/s   00:00    
events_waits_history_long.frm                                                                                                                                                                            100% 9401     8.2MB/s   00:00    
events_waits_summary_by_instance.frm                                                                                                                                                                     100% 8878     8.2MB/s   00:00    
events_waits_summary_by_host_by_event_name.frm                                                                                                                                                           100% 8844     8.0MB/s   00:00    
events_waits_summary_by_user_by_event_name.frm                                                                                                                                                           100% 8844     8.0MB/s   00:00    
events_waits_summary_by_account_by_event_name.frm                                                                                                                                                        100% 8874     8.2MB/s   00:00    
events_waits_summary_by_thread_by_event_name.frm                                                                                                                                                         100% 8854     8.1MB/s   00:00    
events_waits_summary_global_by_event_name.frm                                                                                                                                                            100% 8814     7.9MB/s   00:00    
file_instances.frm                                                                                                                                                                                       100% 8654     7.3MB/s   00:00    
file_summary_by_event_name.frm                                                                                                                                                                           100% 9740     8.1MB/s   00:00    
file_summary_by_instance.frm                                                                                                                                                                             100% 9844     8.6MB/s   00:00    
socket_instances.frm                                                                                                                                                                                     100% 8818     7.4MB/s   00:00    
socket_summary_by_instance.frm                                                                                                                                                                           100% 9804     7.5MB/s   00:00    
socket_summary_by_event_name.frm                                                                                                                                                                         100% 9740     8.1MB/s   00:00    
host_cache.frm                                                                                                                                                                                           100%   10KB   9.0MB/s   00:00    
mutex_instances.frm                                                                                                                                                                                      100% 8684     7.8MB/s   00:00    
objects_summary_global_by_type.frm                                                                                                                                                                       100% 8908     7.9MB/s   00:00    
performance_timers.frm                                                                                                                                                                                   100% 8776     7.6MB/s   00:00    
rwlock_instances.frm                                                                                                                                                                                     100% 8758     7.1MB/s   00:00    
setup_actors.frm                                                                                                                                                                                         100% 8701     7.5MB/s   00:00    
setup_consumers.frm                                                                                                                                                                                      100% 8605     7.4MB/s   00:00    
setup_instruments.frm                                                                                                                                                                                    100% 8637     7.8MB/s   00:00    
setup_objects.frm                                                                                                                                                                                        100% 8784     7.6MB/s   00:00    
setup_timers.frm                                                                                                                                                                                         100% 8650     7.4MB/s   00:00    
table_io_waits_summary_by_index_usage.frm                                                                                                                                                                100%   10KB   8.6MB/s   00:00    
table_io_waits_summary_by_table.frm                                                                                                                                                                      100%   10KB   8.5MB/s   00:00    
table_lock_waits_summary_by_table.frm                                                                                                                                                                    100%   13KB  10.6MB/s   00:00    
threads.frm                                                                                                                                                                                              100% 9335     8.0MB/s   00:00    
events_stages_current.frm                                                                                                                                                                                100% 9103     8.0MB/s   00:00    
events_stages_history.frm                                                                                                                                                                                100% 9103     7.8MB/s   00:00    
events_stages_history_long.frm                                                                                                                                                                           100% 9103     8.0MB/s   00:00    
events_stages_summary_by_thread_by_event_name.frm                                                                                                                                                        100% 8854     7.6MB/s   00:00    
events_stages_summary_by_host_by_event_name.frm                                                                                                                                                          100% 8844     7.9MB/s   00:00    
events_stages_summary_by_user_by_event_name.frm                                                                                                                                                          100% 8844     7.6MB/s   00:00    
events_stages_summary_by_account_by_event_name.frm                                                                                                                                                       100% 8874     7.5MB/s   00:00    
events_stages_summary_global_by_event_name.frm                                                                                                                                                           100% 8814     7.7MB/s   00:00    
events_statements_current.frm                                                                                                                                                                            100%   10KB   8.9MB/s   00:00    
events_statements_history.frm                                                                                                                                                                            100%   10KB   8.7MB/s   00:00    
events_statements_history_long.frm                                                                                                                                                                       100%   10KB   8.7MB/s   00:00    
events_statements_summary_by_thread_by_event_name.frm                                                                                                                                                    100% 9980     8.4MB/s   00:00    
events_statements_summary_by_host_by_event_name.frm                                                                                                                                                      100% 9970     8.3MB/s   00:00    
events_statements_summary_by_user_by_event_name.frm                                                                                                                                                      100% 9970     8.1MB/s   00:00    
events_statements_summary_by_account_by_event_name.frm                                                                                                                                                   100%   10KB   8.8MB/s   00:00    
events_statements_summary_global_by_event_name.frm                                                                                                                                                       100% 9940     8.3MB/s   00:00    
events_transactions_current.frm                                                                                                                                                                          100% 9800     7.5MB/s   00:00    
events_transactions_history.frm                                                                                                                                                                          100% 9800     8.5MB/s   00:00    
events_transactions_history_long.frm                                                                                                                                                                     100% 9800     8.1MB/s   00:00    
events_transactions_summary_by_thread_by_event_name.frm                                                                                                                                                  100% 9448     8.5MB/s   00:00    
events_transactions_summary_by_host_by_event_name.frm                                                                                                                                                    100% 9438     8.2MB/s   00:00    
events_transactions_summary_by_user_by_event_name.frm                                                                                                                                                    100% 9438     8.1MB/s   00:00    
events_transactions_summary_by_account_by_event_name.frm                                                                                                                                                 100% 9468     8.1MB/s   00:00    
events_transactions_summary_global_by_event_name.frm                                                                                                                                                     100% 9408     8.3MB/s   00:00    
hosts.frm                                                                                                                                                                                                100% 8676     7.8MB/s   00:00    
users.frm                                                                                                                                                                                                100% 8676     7.5MB/s   00:00    
accounts.frm                                                                                                                                                                                             100% 8706     7.7MB/s   00:00    
memory_summary_global_by_event_name.frm                                                                                                                                                                  100% 9180     7.9MB/s   00:00    
memory_summary_by_thread_by_event_name.frm                                                                                                                                                               100% 9220     8.1MB/s   00:00    
memory_summary_by_account_by_event_name.frm                                                                                                                                                              100% 9240     7.9MB/s   00:00    
memory_summary_by_host_by_event_name.frm                                                                                                                                                                 100% 9210     3.8MB/s   00:00    
memory_summary_by_user_by_event_name.frm                                                                                                                                                                 100% 9210     7.8MB/s   00:00    
events_statements_summary_by_digest.frm                                                                                                                                                                  100%   10KB   8.3MB/s   00:00    
events_statements_summary_by_program.frm                                                                                                                                                                 100%   10KB   8.5MB/s   00:00    
prepared_statements_instances.frm                                                                                                                                                                        100%   10KB   8.0MB/s   00:00    
replication_connection_configuration.frm                                                                                                                                                                 100%   17KB  11.6MB/s   00:00    
replication_group_member_stats.frm                                                                                                                                                                       100% 9134     7.3MB/s   00:00    
replication_group_members.frm                                                                                                                                                                            100% 8750     6.3MB/s   00:00    
replication_connection_status.frm                                                                                                                                                                        100% 9215     6.5MB/s   00:00    
replication_applier_configuration.frm                                                                                                                                                                    100% 8624     7.8MB/s   00:00    
replication_applier_status.frm                                                                                                                                                                           100% 8759     7.8MB/s   00:00    
replication_applier_status_by_coordinator.frm                                                                                                                                                            100% 8849     7.2MB/s   00:00    
replication_applier_status_by_worker.frm                                                                                                                                                                 100% 8953     7.7MB/s   00:00    
session_connect_attrs.frm                                                                                                                                                                                100% 8716     7.5MB/s   00:00    
session_account_connect_attrs.frm                                                                                                                                                                        100% 8716     7.8MB/s   00:00    
table_handles.frm                                                                                                                                                                                        100% 8928     7.3MB/s   00:00    
metadata_locks.frm                                                                                                                                                                                       100% 8998     7.1MB/s   00:00    
user_variables_by_thread.frm                                                                                                                                                                             100% 8668     7.4MB/s   00:00    
variables_by_thread.frm                                                                                                                                                                                  100% 8668     7.4MB/s   00:00    
global_variables.frm                                                                                                                                                                                     100% 8628     7.3MB/s   00:00    
session_variables.frm                                                                                                                                                                                    100% 8628     7.4MB/s   00:00    
status_by_thread.frm                                                                                                                                                                                     100% 8668     7.4MB/s   00:00    
status_by_user.frm                                                                                                                                                                                       100% 8658     5.8MB/s   00:00    
status_by_host.frm                                                                                                                                                                                       100% 8658     6.4MB/s   00:00    
status_by_account.frm                                                                                                                                                                                    100% 8688     6.7MB/s   00:00    
global_status.frm                                                                                                                                                                                        100% 8628     6.8MB/s   00:00    
session_status.frm                                                                                                                                                                                       100% 8628     7.4MB/s   00:00    
db.opt                                                                                                                                                                                                   100%   61    29.7KB/s   00:00    
version.frm                                                                                                                                                                                              100%  461   504.4KB/s   00:00    
sys_config.frm                                                                                                                                                                                           100% 8672     5.0MB/s   00:00    
sys_config.ibd                                                                                                                                                                                           100%   96KB  29.2MB/s   00:00    
statements_with_full_table_scans.frm                                                                                                                                                                     100% 5656     3.8MB/s   00:00    
sys_config_insert_set_user.TRN                                                                                                                                                                           100%   42    36.5KB/s   00:00    
processlist.frm                                                                                                                                                                                          100% 8183     2.7MB/s   00:00    
sys_config.TRG                                                                                                                                                                                           100%  720   523.3KB/s   00:00    
statements_with_sorting.frm                                                                                                                                                                              100% 4305   213.4KB/s   00:00    
sys_config_update_set_user.TRN                                                                                                                                                                           100%   42    39.3KB/s   00:00    
x@0024statements_with_sorting.frm                                                                                                                                                                        100% 4172   110.6KB/s   00:00    
innodb_buffer_stats_by_schema.frm                                                                                                                                                                        100% 2492     1.7MB/s   00:00    
schema_index_statistics.frm                                                                                                                                                                              100% 3606     2.4MB/s   00:00    
x@0024innodb_buffer_stats_by_schema.frm                                                                                                                                                                  100% 2430     1.8MB/s   00:00    
statements_with_temp_tables.frm                                                                                                                                                                          100% 4325     1.7MB/s   00:00    
innodb_buffer_stats_by_table.frm                                                                                                                                                                         100% 2782     1.2MB/s   00:00    
x@0024ps_schema_table_statistics_io.frm                                                                                                                                                                  100% 2926     1.6MB/s   00:00    
x@0024innodb_buffer_stats_by_table.frm                                                                                                                                                                   100% 2720     1.5MB/s   00:00    
host_summary.frm                                                                                                                                                                                         100% 4005     1.8MB/s   00:00    
innodb_lock_waits.frm                                                                                                                                                                                    100% 5264     3.9MB/s   00:00    
x@0024host_summary.frm                                                                                                                                                                                   100% 3651     1.5MB/s   00:00    
x@0024innodb_lock_waits.frm                                                                                                                                                                              100% 5116     3.9MB/s   00:00    
waits_by_user_by_latency.frm                                                                                                                                                                             100% 3413     1.4MB/s   00:00    
schema_object_overview.frm                                                                                                                                                                               100% 3725     3.0MB/s   00:00    
user_summary_by_file_io_type.frm                                                                                                                                                                         100% 2924     1.7MB/s   00:00    
schema_auto_increment_columns.frm                                                                                                                                                                        100% 6163     3.6MB/s   00:00    
user_summary_by_file_io.frm                                                                                                                                                                              100% 2343     1.7MB/s   00:00    
x@0024schema_flattened_keys.frm                                                                                                                                                                          100% 2469     2.4MB/s   00:00    
x@0024user_summary_by_file_io.frm                                                                                                                                                                        100% 2284   692.6KB/s   00:00    
schema_redundant_indexes.frm                                                                                                                                                                             100% 5226     3.0MB/s   00:00    
user_summary_by_statement_type.frm                                                                                                                                                                       100% 4425     1.6MB/s   00:00    
ps_check_lost_instrumentation.frm                                                                                                                                                                        100% 1093   840.7KB/s   00:00    
latest_file_io.frm                                                                                                                                                                                       100% 3441     2.3MB/s   00:00    
waits_by_host_by_latency.frm                                                                                                                                                                             100% 3210     1.8MB/s   00:00    
x@0024latest_file_io.frm                                                                                                                                                                                 100% 3261     2.4MB/s   00:00    
waits_global_by_latency.frm                                                                                                                                                                              100% 2427     1.1MB/s   00:00    
io_by_thread_by_latency.frm                                                                                                                                                                              100% 4390     3.2MB/s   00:00    
user_summary_by_stages.frm                                                                                                                                                                               100% 2725     1.4MB/s   00:00    
x@0024io_by_thread_by_latency.frm                                                                                                                                                                        100% 4154     3.0MB/s   00:00    
x@0024user_summary_by_stages.frm                                                                                                                                                                         100% 2607     1.7MB/s   00:00    
io_global_by_file_by_bytes.frm                                                                                                                                                                           100% 4169     3.1MB/s   00:00    
x@0024schema_index_statistics.frm                                                                                                                                                                        100% 3370     2.4MB/s   00:00    
x@0024io_global_by_file_by_bytes.frm                                                                                                                                                                     100% 3800     2.7MB/s   00:00    
user_summary.frm                                                                                                                                                                                         100% 4697     3.0MB/s   00:00    
io_global_by_file_by_latency.frm                                                                                                                                                                         100% 2561     1.9MB/s   00:00    
schema_table_statistics.frm                                                                                                                                                                              100% 3987     3.4MB/s   00:00    
x@0024io_global_by_file_by_latency.frm                                                                                                                                                                   100% 2266     1.6MB/s   00:00    
x@0024user_summary.frm                                                                                                                                                                                   100% 4396     2.4MB/s   00:00    
io_global_by_wait_by_bytes.frm                                                                                                                                                                           100% 5166     3.5MB/s   00:00    
x@0024schema_table_statistics.frm                                                                                                                                                                        100% 3391     3.1MB/s   00:00    
x@0024io_global_by_wait_by_bytes.frm                                                                                                                                                                     100% 4623     3.1MB/s   00:00    
host_summary_by_file_io_type.frm                                                                                                                                                                         100% 2976     1.4MB/s   00:00    
io_global_by_wait_by_latency.frm                                                                                                                                                                         100% 4983     3.5MB/s   00:00    
schema_table_statistics_with_buffer.frm                                                                                                                                                                  100% 5400     3.6MB/s   00:00    
x@0024io_global_by_wait_by_latency.frm                                                                                                                                                                   100% 4381     3.0MB/s   00:00    
host_summary_by_file_io.frm                                                                                                                                                                              100% 2343     1.7MB/s   00:00    
memory_by_user_by_current_bytes.frm                                                                                                                                                                      100% 3475     2.6MB/s   00:00    
schema_table_lock_waits.frm                                                                                                                                                                              100% 5103     3.2MB/s   00:00    
x@0024memory_by_user_by_current_bytes.frm                                                                                                                                                                100% 3227     2.8MB/s   00:00    
x@0024host_summary_by_file_io.frm                                                                                                                                                                        100% 2284     1.6MB/s   00:00    
memory_by_host_by_current_bytes.frm                                                                                                                                                                      100% 3475     3.1MB/s   00:00    
x@0024schema_table_lock_waits.frm                                                                                                                                                                        100% 5029     3.5MB/s   00:00    
x@0024memory_by_host_by_current_bytes.frm                                                                                                                                                                100% 3227     2.3MB/s   00:00    
statement_analysis.frm                                                                                                                                                                                   100% 7048     3.8MB/s   00:00    
memory_by_thread_by_current_bytes.frm                                                                                                                                                                    100% 3214     2.7MB/s   00:00    
x@0024statement_analysis.frm                                                                                                                                                                             100% 6738     2.9MB/s   00:00    
x@0024memory_by_thread_by_current_bytes.frm                                                                                                                                                              100% 2967     2.4MB/s   00:00    
host_summary_by_statement_type.frm                                                                                                                                                                       100% 4459     1.9MB/s   00:00    
memory_global_by_current_bytes.frm                                                                                                                                                                       100% 3405     2.7MB/s   00:00    
statements_with_errors_or_warnings.frm                                                                                                                                                                   100% 3758     2.5MB/s   00:00    
x@0024memory_global_by_current_bytes.frm                                                                                                                                                                 100% 3157     2.8MB/s   00:00    
metrics.frm                                                                                                                                                                                              100%   10KB   2.9MB/s   00:00    
memory_global_total.frm                                                                                                                                                                                  100%  827   526.1KB/s   00:00    
host_summary_by_stages.frm                                                                                                                                                                               100% 2758     1.1MB/s   00:00    
x@0024memory_global_total.frm                                                                                                                                                                            100%  765   591.4KB/s   00:00    
session.frm                                                                                                                                                                                              100% 3044     1.4MB/s   00:00    
x@0024schema_table_statistics_with_buffer.frm                                                                                                                                                            100% 4679     3.1MB/s   00:00    
x@0024statements_with_errors_or_warnings.frm                                                                                                                                                             100% 3684     3.4MB/s   00:00    
schema_tables_with_full_table_scans.frm                                                                                                                                                                  100% 1982     2.0MB/s   00:00    
schema_unused_indexes.frm                                                                                                                                                                                100% 2294     1.8MB/s   00:00    
x@0024schema_tables_with_full_table_scans.frm                                                                                                                                                            100% 1923     1.3MB/s   00:00    
x@0024host_summary_by_stages.frm                                                                                                                                                                         100% 2640     1.6MB/s   00:00    
x@0024statements_with_full_table_scans.frm                                                                                                                                                               100% 5481     3.8MB/s   00:00    
x@0024ps_digest_avg_latency_distribution.frm                                                                                                                                                             100%  844   699.2KB/s   00:00    
x@0024ps_digest_95th_percentile_by_avg_us.frm                                                                                                                                                            100% 1747     1.5MB/s   00:00    
statements_with_runtimes_in_95th_percentile.frm                                                                                                                                                          100% 3479     2.9MB/s   00:00    
x@0024statements_with_runtimes_in_95th_percentile.frm                                                                                                                                                    100% 3228    91.7KB/s   00:00    
x@0024statements_with_temp_tables.frm                                                                                                                                                                    100% 4192     1.9MB/s   00:00    
x@0024user_summary_by_file_io_type.frm                                                                                                                                                                   100% 2806     1.7MB/s   00:00    
x@0024user_summary_by_statement_type.frm                                                                                                                                                                 100% 4248     2.0MB/s   00:00    
user_summary_by_statement_latency.frm                                                                                                                                                                    100% 4100     2.0MB/s   00:00    
x@0024user_summary_by_statement_latency.frm                                                                                                                                                              100% 3923     1.3MB/s   00:00    
x@0024host_summary_by_file_io_type.frm                                                                                                                                                                   100% 2858     1.4MB/s   00:00    
x@0024host_summary_by_statement_type.frm                                                                                                                                                                 100% 4282     1.7MB/s   00:00    
host_summary_by_statement_latency.frm                                                                                                                                                                    100% 4100     1.8MB/s   00:00    
x@0024host_summary_by_statement_latency.frm                                                                                                                                                              100% 3923     1.8MB/s   00:00    
wait_classes_global_by_avg_latency.frm                                                                                                                                                                   100% 3580     1.5MB/s   00:00    
x@0024wait_classes_global_by_avg_latency.frm                                                                                                                                                             100% 3236     1.5MB/s   00:00    
wait_classes_global_by_latency.frm                                                                                                                                                                       100% 3420     1.4MB/s   00:00    
x@0024wait_classes_global_by_latency.frm                                                                                                                                                                 100% 3187     1.5MB/s   00:00    
x@0024waits_by_user_by_latency.frm                                                                                                                                                                       100% 3236     1.6MB/s   00:00    
x@0024waits_by_host_by_latency.frm                                                                                                                                                                       100% 3033     1.4MB/s   00:00    
x@0024waits_global_by_latency.frm                                                                                                                                                                        100% 2250     1.4MB/s   00:00    
[email protected]                                                                                                                                                                                    100% 7679     3.6MB/s   00:00    
[email protected]                                                                                                                                                                                        100% 3170     3.0MB/s   00:00    
session_ssl_status.frm                                                                                                                                                                                   100% 2034     1.8MB/s   00:00    
cav3.ext                                                                                                                                                                                                 100%   25    21.4KB/s   00:00    
certv3.ext                                                                                                                                                                                               100%   26    26.9KB/s   00:00    
.rnd                                                                                                                                                                                                     100% 1024   748.9KB/s   00:00    
ca-key.pem                                                                                                                                                                                               100% 1679     1.0MB/s   00:00    
ca-req.pem                                                                                                                                                                                               100%  944   645.5KB/s   00:00    
ca.pem                                                                                                                                                                                                   100% 1107     1.9MB/s   00:00    
server-key.pem                                                                                                                                                                                           100% 1675     2.5MB/s   00:00    
server-req.pem                                                                                                                                                                                           100%  952   108.8KB/s   00:00    
server-cert.pem                                                                                                                                                                                          100% 1107     1.7MB/s   00:00    
client-key.pem                                                                                                                                                                                           100% 1675   988.7KB/s   00:00    
client-req.pem                                                                                                                                                                                           100%  952   734.7KB/s   00:00    
client-cert.pem                                                                                                                                                                                          100% 1107   623.5KB/s   00:00    
ib_logfile1                                                                                                                                                                                              100%  256MB  78.1MB/s   00:03    
ib_logfile2                                                                                                                                                                                              100%  256MB  62.4MB/s   00:04    
ib_logfile0                                                                                                                                                                                              100%  256MB  63.8MB/s   00:04    
ibtmp1                                                                                                                                                                                                   100%   12MB  59.8MB/s   00:00    
sqltuning.pid                                                                                                                                                                                            100%    5     1.4KB/s   00:00    
ib_buffer_pool                                                                                                                                                                                           100%  297   669.4KB/s   00:00    
mysql_error.log                                                                                                                                                                                          100%   97KB 581.2KB/s   00:00    
mysql_solw.log                                                                                                                                                                                           100% 1692     2.3MB/s   00:00    
mysql-bin.000001                                                                                                                                                                                         100%  701     1.2MB/s   00:00    
mysql-bin.000002                                                                                                                                                                                         100%  573   495.8KB/s   00:00    
mysql-bin.000003                                                                                                                                                                                         100%  177    17.4KB/s   00:00    
mysql-bin.000004                                                                                                                                                                                         100%  177   135.5KB/s   00:00    
mysql-bin.000005                                                                                                                                                                                         100%  154     2.2KB/s   00:00    
mysql-bin.000006                                                                                                                                                                                         100%  177     4.4KB/s   00:00    
mysql-bin.000007                                                                                                                                                                                         100%  177    16.5KB/s   00:00    
mysql-bin.000008                                                                                                                                                                                         100%  154   199.9KB/s   00:00    
mysql-bin.000009                                                                                                                                                                                         100%  154   190.2KB/s   00:00    
mysql-bin.index                                                                                                                                                                                          100%  288   395.2KB/s   00:00    
LICENSE.txt                                                                                                                                                                                              100% 7523     7.5KB/s   00:00    
README                                                                                                                                                                                                   100% 2195    54.7KB/s   00:00    
THIRD-PARTY-NOTICES                                                                                                                                                                                      100%   56KB 958.0KB/s   00:00    
MPL-2                                                                                                                                                                                                    100%   16KB 310.7KB/s   00:00    
MONGOD-MIB.txt                                                                                                                                                                                           100%   30KB 508.6KB/s   00:00    
MONGODBINC-MIB.txt                                                                                                                                                                                       100%  371    50.1KB/s   00:00    
mongod.conf.master                                                                                                                                                                                       100% 1465   113.8KB/s   00:00    
mongod.conf.subagent                                                                                                                                                                                     100%  668    64.1KB/s   00:00    
README-snmp.txt                                                                                                                                                                                          100%  735   451.8KB/s   00:00    
mongodump                                                                                                                                                                                                100%   12MB  34.5MB/s   00:00    
mongorestore                                                                                                                                                                                             100%   13MB  43.3MB/s   00:00    
mongoexport                                                                                                                                                                                              100%   10MB  63.1MB/s   00:00    
mongoimport                                                                                                                                                                                              100%   11MB  69.2MB/s   00:00    
mongostat                                                                                                                                                                                                100%   11MB  66.4MB/s   00:00    
mongotop                                                                                                                                                                                                 100%   10MB  63.5MB/s   00:00    
bsondump                                                                                                                                                                                                 100%   10MB  53.3MB/s   00:00    
mongofiles                                                                                                                                                                                               100%   10MB  54.3MB/s   00:00    
mongoreplay                                                                                                                                                                                              100%   13MB  51.4MB/s   00:00    
mongoperf                                                                                                                                                                                                100%   57MB  63.3MB/s   00:00    
mongod                                                                                                                                                                                                   100%   58MB  72.3MB/s   00:00    
mongos                                                                                                                                                                                                   100%   33MB  67.1MB/s   00:00    
mongo                                                                                                                                                                                                    100%   32MB  51.3MB/s   00:00    
mongodecrypt                                                                                                                                                                                             100%   10MB  26.1MB/s   00:00    
mongoldap                                                                                                                                                                                                100%   16MB  40.1MB/s   00:00    
install_compass                                                                                                                                                                                          100% 5782    17.6KB/s   00:00    
mongodb.conf                                                                                                                                                                                             100%  111     1.3KB/s   00:00    
mongod.lock                                                                                                                                                                                              100%    5     6.3KB/s   00:00    
WiredTigerLog.0000000054                                                                                                                                                                                 100%  100MB  68.1MB/s   00:01    
WiredTigerPreplog.0000000001                                                                                                                                                                             100%  100MB  74.6MB/s   00:01    
WiredTigerPreplog.0000000002                                                                                                                                                                             100%  100MB  66.6MB/s   00:01    
WiredTiger.lock                                                                                                                                                                                          100%   21     1.3KB/s   00:00    
WiredTiger                                                                                                                                                                                               100%   48     2.9KB/s   00:00    
WiredTiger.wt                                                                                                                                                                                            100%  164KB  45.5MB/s   00:00    
WiredTiger.turtle                                                                                                                                                                                        100% 1053   128.8KB/s   00:00    
sizeStorer.wt                                                                                                                                                                                            100%   36KB  20.1MB/s   00:00    
_mdb_catalog.wt                                                                                                                                                                                          100%   36KB   2.9MB/s   00:00    
storage.bson                                                                                                                                                                                             100%  114    72.1KB/s   00:00    
collection-0--185124367468780565.wt                                                                                                                                                                      100%   16KB  11.8MB/s   00:00    
index-1--185124367468780565.wt                                                                                                                                                                           100%   16KB  11.9MB/s   00:00    
collection-2--185124367468780565.wt                                                                                                                                                                      100%   36KB   8.7MB/s   00:00    
index-3--185124367468780565.wt                                                                                                                                                                           100%   36KB   8.8MB/s   00:00    
metrics.2018-08-07T16-52-39Z-00000                                                                                                                                                                       100%   10MB  35.7MB/s   00:00    
metrics.2018-08-10T17-32-39Z-00000                                                                                                                                                                       100% 8919KB  34.0MB/s   00:00    
metrics.2018-09-20T05-47-26Z-00000                                                                                                                                                                       100%   10MB  68.3MB/s   00:00    
metrics.2018-09-22T12-18-25Z-00000                                                                                                                                                                       100%   10MB  67.2MB/s   00:00    
metrics.2018-09-24T16-58-25Z-00000                                                                                                                                                                       100%   10MB  71.6MB/s   00:00    
metrics.2018-09-26T21-03-25Z-00000                                                                                                                                                                       100%   10MB  58.5MB/s   00:00    
metrics.2018-09-29T00-12-25Z-00000                                                                                                                                                                       100%   10MB  59.0MB/s   00:00    
metrics.2018-10-01T02-52-25Z-00000                                                                                                                                                                       100%   10MB  63.2MB/s   00:00    
metrics.2018-10-03T05-27-25Z-00000                                                                                                                                                                       100%   10MB  72.6MB/s   00:00    
metrics.2018-10-05T08-32-25Z-00000                                                                                                                                                                       100%   10MB  61.6MB/s   00:00    
metrics.2018-10-07T11-47-25Z-00000                                                                                                                                                                       100%   10MB  68.5MB/s   00:00    
metrics.2018-10-09T14-27-25Z-00000                                                                                                                                                                       100%   10MB  76.6MB/s   00:00    
metrics.2018-10-11T16-27-25Z-00000                                                                                                                                                                       100%   10MB  66.5MB/s   00:00    
metrics.2018-10-13T18-47-25Z-00000                                                                                                                                                                       100%   10MB  73.3MB/s   00:00    
metrics.2018-10-15T21-22-25Z-00000                                                                                                                                                                       100%   10MB  46.4MB/s   00:00    
metrics.2018-10-18T00-17-25Z-00000                                                                                                                                                                       100%   10MB  44.5MB/s   00:00    
metrics.2018-10-20T03-12-25Z-00000                                                                                                                                                                       100%   10MB  80.4MB/s   00:00    
metrics.2018-10-22T05-27-25Z-00000                                                                                                                                                                       100%   10MB  80.3MB/s   00:00    
metrics.2018-10-24T07-32-25Z-00000                                                                                                                                                                       100%   10MB  81.2MB/s   00:00    
metrics.2018-10-26T09-37-25Z-00000                                                                                                                                                                       100%   10MB  78.1MB/s   00:00    
metrics.2018-10-28T12-12-25Z-00000                                                                                                                                                                       100% 7625KB  64.0MB/s   00:00    
metrics.interim                                                                                                                                                                                          100%   17KB  12.4MB/s   00:00    
collection-4--185124367468780565.wt                                                                                                                                                                      100%   36KB  17.9MB/s   00:00    
index-5--185124367468780565.wt                                                                                                                                                                           100%   36KB 930.5KB/s   00:00    
index-6--185124367468780565.wt                                                                                                                                                                           100%   36KB  19.8MB/s   00:00    
collection-7--185124367468780565.wt                                                                                                                                                                      100% 4096     5.9MB/s   00:00    
index-8--185124367468780565.wt                                                                                                                                                                           100% 4096   598.4KB/s   00:00    
index-9--185124367468780565.wt                                                                                                                                                                           100% 4096     5.8MB/s   00:00    
collection-10--185124367468780565.wt                                                                                                                                                                     100%   16KB  10.6MB/s   00:00    
index-11--185124367468780565.wt                                                                                                                                                                          100%   16KB   1.9MB/s   00:00    
index-12--185124367468780565.wt                                                                                                                                                                          100%   16KB   2.2MB/s   00:00    
collection-0--5664729540585014286.wt                                                                                                                                                                     100%   36KB  17.6MB/s   00:00    
index-1--5664729540585014286.wt                                                                                                                                                                          100%   36KB   2.8MB/s   00:00    
collection-2--5664729540585014286.wt                                                                                                                                                                     100% 1432KB  65.1MB/s   00:00    
index-3--5664729540585014286.wt                                                                                                                                                                          100%   36KB   2.5MB/s   00:00    
collection-4--5664729540585014286.wt                                                                                                                                                                     100%   52KB  23.3MB/s   00:00    
index-5--5664729540585014286.wt                                                                                                                                                                          100%   16KB   4.3MB/s   00:00    
collection-6--5664729540585014286.wt                                                                                                                                                                     100%   45MB  44.9MB/s   00:01    
index-7--5664729540585014286.wt                                                                                                                                                                          100% 5516KB  12.7MB/s   00:00    
collection-8--5664729540585014286.wt                                                                                                                                                                     100%   48MB  62.8MB/s   00:00    
index-9--5664729540585014286.wt                                                                                                                                                                          100% 4500KB  36.3MB/s   00:00    
collection-10--5664729540585014286.wt                                                                                                                                                                    100%  619MB  60.1MB/s   00:10    
index-11--5664729540585014286.wt                                                                                                                                                                         100%   75MB  40.6MB/s   00:01    
collection-12--5664729540585014286.wt                                                                                                                                                                    100%   37MB  31.2MB/s   00:01    
index-13--5664729540585014286.wt                                                                                                                                                                         100% 3548KB  19.5MB/s   00:00    
collection-14--5664729540585014286.wt                                                                                                                                                                    100%   32MB  65.7MB/s   00:00    
index-15--5664729540585014286.wt                                                                                                                                                                         100% 3452KB  56.5MB/s   00:00    
collection-0-1372859541311545716.wt                                                                                                                                                                      100% 4868KB  41.8MB/s   00:00    
index-1-1372859541311545716.wt                                                                                                                                                                           100%  300KB  13.1MB/s   00:00    
collection-2-1372859541311545716.wt                                                                                                                                                                      100%  250MB  59.3MB/s   00:04    
index-3-1372859541311545716.wt                                                                                                                                                                           100%   18MB  64.1MB/s   00:00    
collection-4-1372859541311545716.wt                                                                                                                                                                      100% 1396KB  40.7MB/s   00:00    
index-5-1372859541311545716.wt                                                                                                                                                                           100%  100KB   3.9MB/s   00:00    
collection-6-1372859541311545716.wt                                                                                                                                                                      100%  368KB  28.1MB/s   00:00    
index-7-1372859541311545716.wt                                                                                                                                                                           100%  100KB   6.5MB/s   00:00    
collection-8-1372859541311545716.wt                                                                                                                                                                      100%   36MB  65.4MB/s   00:00    
index-9-1372859541311545716.wt                                                                                                                                                                           100% 3036KB   6.1MB/s   00:00    
collection-10-1372859541311545716.wt                                                                                                                                                                     100% 1164KB  15.6MB/s   00:00    
index-11-1372859541311545716.wt                                                                                                                                                                          100%  100KB   5.7MB/s   00:00    
collection-12-1372859541311545716.wt                                                                                                                                                                     100% 1472KB  23.5MB/s   00:00    
index-13-1372859541311545716.wt                                                                                                                                                                          100%  112KB  10.6MB/s   00:00    
collection-14-1372859541311545716.wt                                                                                                                                                                     100%   40KB  19.6MB/s   00:00    
index-15-1372859541311545716.wt                                                                                                                                                                          100%   16KB   7.0MB/s   00:00    
WiredTigerLAS.wt                                                                                                                                                                                         100% 4096     5.1MB/s   00:00    
mongodb.log.2018-06-11T03-29-15                                                                                                                                                                          100% 6716     1.4MB/s   00:00    
mongodb.log.2018-06-13T08-12-29                                                                                                                                                                          100%   24KB   1.7MB/s   00:00    
mongodb.log.2018-06-15T02-27-45                                                                                                                                                                          100%   15KB   1.2MB/s   00:00    
mongodb.log.2018-09-20T05-47-23                                                                                                                                                                          100%  685KB  16.2MB/s   00:00    
mongodb.log                                                                                                                                                                                              100%  919MB  79.2MB/s   00:11    
[root@sqltuning opt]# 

查询cp进度

[root@blueking opt]# du -sh mysql
2.3G	mysql
[root@blueking opt]# du -sh mysql
2.4G	mysql
[root@blueking opt]# du -sh mysql
2.7G	mysql
[root@blueking opt]# du -sh mysql
3.1G	mysql
[root@blueking opt]# du -sh mongodb
3.2G	mongodb
[root@blueking opt]# 

数据迁移之后pv使用情况

[root@blueking ~]# pvs -o+pv_used
  PV         VG     Fmt  Attr PSize    PFree   Used   
  /dev/sda2  centos lvm2 a--   <49.00g   4.00m  48.99g
  /dev/sdb   data   lvm2 a--   <50.00g <50.00g      0 
  /dev/sdc   data   lvm2 a--  <100.00g  50.00g <50.00g
[root@blueking ~]# lvscan
  ACTIVE            '/dev/data/data' [<50.00 GiB] inherit
  ACTIVE            '/dev/centos/root' [46.99 GiB] inherit
  ACTIVE            '/dev/centos/swap' [2.00 GiB] inherit

sdb中的数据已经迁移至sdc,lv状态active。

[root@blueking ~]# vgreduce data /dev/sdb
  Removed "/dev/sdb" from volume group "data"
[root@blueking ~]# pvs
  PV         VG     Fmt  Attr PSize    PFree 
  /dev/sda2  centos lvm2 a--   <49.00g  4.00m
  /dev/sdb          lvm2 ---    50.00g 50.00g
  /dev/sdc   data   lvm2 a--  <100.00g 50.00g

移除sdb,可以看到sdb已经不在vg组中。

[root@blueking ~]# vgdisplay -v
  --- Volume group ---
  VG Name               data
  System ID             
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  8
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                1
  Open LV               1
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               <100.00 GiB
  PE Size               4.00 MiB
  Total PE              25599
  Alloc PE / Size       12799 / <50.00 GiB
  Free  PE / Size       12800 / 50.00 GiB
  VG UUID               9hVVbu-b84c-Uhtt-tJFU-W4Yu-lJ0M-ewr73Q
   
  --- Logical volume ---
  LV Path                /dev/data/data
  LV Name                data
  VG Name                data
  LV UUID                IXCNcA-aJmv-mKIE-oKzI-iXQ5-FXkC-oe1xyd
  LV Write Access        read/write
  LV Creation host, time localhost.localdomain, 2018-08-20 14:11:26 +0800
  LV Status              available
  # open                 1
  LV Size                <50.00 GiB
  Current LE             12799
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     8192
  Block device           253:2
   
  --- Physical volumes ---
  PV Name               /dev/sdc     
  PV UUID               NsVmYp-GXuJ-5tSc-jJ0I-Z5xX-MPqa-PCGIZ1
  PV Status             allocatable
  Total PE / Free PE    25599 / 12800

移除pv

[root@blueking ~]# pvremove /dev/sdb
  Labels on physical volume "/dev/sdb" successfully wiped.
[root@blueking ~]# pvs
  PV         VG     Fmt  Attr PSize    PFree 
  /dev/sda2  centos lvm2 a--   <49.00g  4.00m
  /dev/sdc   data   lvm2 a--  <100.00g 50.00g

数据迁移完成,存储成功升级。

参考https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/4/html/Cluster_Logical_Volume_Manager/disk_remove_ex.html

猜你喜欢

转载自blog.csdn.net/sandy9919/article/details/83538843