分析PostgreSQL DBA数据库的性能指标变化
短信预约 -IT技能 免费直播动态提醒
本篇内容主要讲解“分析PostgreSQL DBA数据库的性能指标变化”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“分析PostgreSQL DBA数据库的性能指标变化”吧!
不同的网络环境(延时)对数据库的性能指标有很大的影响,下面用tc工具来模拟增加网络延时来观察数据库的性能指标变化.
安装tc
使用python的封装工具tcconfig,安装命令:
pip3 install tcconfig
性能测试
网络无延时
[pg12@localhost ~]$ pgbench -S -c 10 -h localhost -T 20 test
starting vacuum...end.
transaction type: <builtin: select only>
scaling factor: 1
query mode: simple
number of clients: 10
number of threads: 1
duration: 20 s
number of transactions actually processed: 298322
latency average = 0.671 ms
tps = 14911.921647 (including connections establishing)
tps = 14916.752171 (excluding connections establishing)
TPS接近15K
网络延时延时10ms
设置网络延时为10ms
tcset --device lo --delay=10 --overwrite
再次测试
[pg12@localhost ~]$ pgbench -S -c 10 -h 192.168.26.28 -T 20 test
starting vacuum...end.
transaction type: <builtin: select only>
scaling factor: 1
query mode: simple
number of clients: 10
number of threads: 1
duration: 20 s
number of transactions actually processed: 8459
latency average = 23.655 ms
tps = 422.736098 (including connections establishing)
tps = 424.325926 (excluding connections establishing)
TPS直接降至400多,差不多只有原来的1/40
网络延时50ms
设置网络延时为50ms
tcset --device lo --delay=50 --overwrite
再次测试
[pg12@localhost ~]$ pgbench -S -c 10 -h 192.168.26.28 -T 20 test
starting vacuum...end.
transaction type: <builtin: select only>
scaling factor: 1
query mode: simple
number of clients: 10
number of threads: 1
duration: 20 s
number of transactions actually processed: 1650
latency average = 121.406 ms
tps = 82.368327 (including connections establishing)
tps = 83.671552 (excluding connections establishing)
这一次结果是80多,差不多是最初的1/200
为什么OLTP分布式数据库的TPS的提升是很难的一个事情,其中一个原因是网络延时.
到此,相信大家对“分析PostgreSQL DBA数据库的性能指标变化”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341