博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MariaDB 10之并行复制--延迟测试结果
阅读量:5856 次
发布时间:2019-06-19

本文共 3585 字,大约阅读时间需要 11 分钟。

测试参数:

sysbench  --test=/root/sysbench0.5/sysbench/tests/db/insert.lua --mysql-table-engine=innodb --oltp-table-size=1000000 --max-requests=0 --max-time=300 --num-threads=16 --oltp-tables-count=10 --report-interval=10 --mysql-host=10.8.8.100 --mysql-port=3312 --mysql-user=admin --mysql-password=123456  --mysql-db=test run

10张100万行表,并发16个线程,纯插入操作。

MySQL参数:

sync_binlog = 0innodb_flush_log_at_trx_commit = 0innodb_flush_method = O_DIRECTinnodb_flush_neighbors = 1innodb_buffer_pool_size = 10Ginnodb_io_capacity = 500innodb_log_file_size = 512Minnodb_log_files_in_group = 3innodb_log_buffer_size = 16M

普通复制延迟:

              Master_Log_File: mysql-bin.000004          Read_Master_Log_Pos: 567748597               Relay_Log_File: host-100-relay-bin.000005                Relay_Log_Pos: 66853042        Relay_Master_Log_File: mysql-bin.000003             Slave_IO_Running: Yes            Slave_SQL_Running: Yes              Replicate_Do_DB:           Replicate_Ignore_DB:            Replicate_Do_Table:        Replicate_Ignore_Table:       Replicate_Wild_Do_Table:   Replicate_Wild_Ignore_Table:                    Last_Errno: 0                   Last_Error:                  Skip_Counter: 0          Exec_Master_Log_Pos: 469504741

还剩1117MB没追完

MariaDB [(none)]> select 1024-469504741/1024/1024+567748597/1024/1024;+----------------------------------------------+| 1024-469504741/1024/1024+567748597/1024/1024 |+----------------------------------------------+|                                1117.69264221 |+----------------------------------------------+1 row in set (0.00 sec)

并行复制(8个并发线程,未开启GTID模式)延迟:

              Master_Log_File: mysql-bin.000022          Read_Master_Log_Pos: 333773843               Relay_Log_File: host-100-relay-bin.000073                Relay_Log_Pos: 134217580        Relay_Master_Log_File: mysql-bin.000021             Slave_IO_Running: Yes            Slave_SQL_Running: Yes              Replicate_Do_DB:           Replicate_Ignore_DB:            Replicate_Do_Table:        Replicate_Ignore_Table:       Replicate_Wild_Do_Table:   Replicate_Wild_Ignore_Table:                    Last_Errno: 0                   Last_Error:                  Skip_Counter: 0          Exec_Master_Log_Pos: 722396020

还剩653MB没追完

MariaDB [(none)]> select 1024-722396020/1024/1024+333773843/1024/1024;+----------------------------------------------+| 1024-722396020/1024/1024+333773843/1024/1024 |+----------------------------------------------+|                                 653.38101101 |+----------------------------------------------+1 row in set (0.00 sec)

并行复制(8个并发线程,开启GTID模式)延迟:

              Master_Log_File: mysql-bin.000002          Read_Master_Log_Pos: 365095829               Relay_Log_File: host-100-relay-bin.000008                Relay_Log_Pos: 134217572        Relay_Master_Log_File: mysql-bin.000001             Slave_IO_Running: Yes            Slave_SQL_Running: Yes              Replicate_Do_DB:           Replicate_Ignore_DB:            Replicate_Do_Table:        Replicate_Ignore_Table:       Replicate_Wild_Do_Table:   Replicate_Wild_Ignore_Table:                    Last_Errno: 0                   Last_Error:                  Skip_Counter: 0          Exec_Master_Log_Pos: 811005100

还剩598MB没追完

MariaDB [(none)]> select 1024-811005100/1024/1024+365095829/1024/1024;+----------------------------------------------+| 1024-811005100/1024/1024+365095829/1024/1024 |+----------------------------------------------+|                                 598.74778080 |+----------------------------------------------+1 row in set (0.00 sec)

结论:

在我这个测试中,并行复制的速度要快于普通复制的两倍多。

转载地址:http://rhajx.baihongyu.com/

你可能感兴趣的文章
Lync Server 2010移动功能部署PART A:内部篇
查看>>
存在即合理-开发语言
查看>>
多快好省的实施ITIL
查看>>
识字:七年之庠/痒
查看>>
烂泥:高负载均衡学习haproxy之TCP应用
查看>>
[Asp.Net]GridView中根据前后列之间的关联关系合并单元格
查看>>
发送到快捷方式不见了
查看>>
phinx武林秘籍(上)
查看>>
计算网络带宽需求的正确姿势
查看>>
如何建立云环境下的性能测试策略
查看>>
论网站内容建设策略
查看>>
10月18日云栖精选夜读:解读OpenMessaging开源项目,阿里巴巴发起首个分布式消息领域的国际标准...
查看>>
如何把SVG小图片转换为 html字体图表
查看>>
MongDB的安装和基本操作 二(增删改查)
查看>>
RvmTranslator 3.1 is released
查看>>
WCF的三个名称/命名空间,你是否傻傻分不清楚?
查看>>
解析深度学习的未来十大趋势
查看>>
中桥国际:如何应对客户端计算趋势
查看>>
云栖长卷:一张图看懂云栖七年
查看>>
飞利浦的选择:传统IT系统迁移到云平台
查看>>