免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1386 | 回复: 0
打印 上一主题 下一主题

mysql 内存的计算方法 [复制链接]

论坛徽章:
2
CU大牛徽章
日期:2013-04-17 11:46:28CU大牛徽章
日期:2013-04-17 11:46:39
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-05-10 17:13 |只看该作者 |倒序浏览
今天使用tuning-primer 分析mysql ,看了代码后对内存的分配有了一些了解,分享一下
实际内存使用主要分为几部分
1、全局buffer   (global buffer),包括
$innodb_buffer_pool_size
$innodb_additional_mem_pool_size
$innodb_log_buffer_size
$key_buffer_size
$query_cache_size

2、每个连接的buffer   (per_thread_buffer)
$read_buffer_size
$read_rnd_buffer_size
$sort_buffer_size
$thread_stack
$join_buffer_size
$binlog_cache_size

所以最大需要内存是:
per_thread_buffer * max_connections + global_buffer

现实中配置了那么大内存不一定使用了那么大内存,配置了最大连接不一定有那么多连接,所以有配置最大值和实际使用值
比如配置了max_connections=5000,实际发生的最大连接是500
per_thread_buffer*max_used_connections + global_buffer


对代码的文本做了一些修改,方便查看,结果展示如下:


MEMORY USAGE
Configured Max Global Buffers $innodb_buffer_pool_size+$innodb_additional_mem_pool_size+$innodb_log_buffer_size+$key_buffer_size+$query_cache_size: 30.58 G
Configured every thread Buffers ($read_buffer_size+$read_rnd_buffer_size+$sort_buffer_size+$thread_stack+$join_buffer_size+$binlog_cache_size): 12 M
Configured Max all thread Buffers * max_connections (5000) : 60.57 G
Really Max all thread Buffers * max_used_connections (255) : 3.08 G
Max Memory Ever Allocated lobal_buffers+per_thread_max_buffers : 33.67 G
Configured Max Memory Limit(total_memoryHR) max need buffer memory global_buffers+per_thread_buffers: 91.16 G
Physical Memory : 64.00 G


可见配置还是有些不合理,这样配根本支持不了5000连接,改最大连接为2000-2500左右还是合理的。




您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP