码迷,mamicode.com
首页 > 其他好文 > 详细

KVM虚拟机内存超配后-虚拟机内存减半现象分析及解决

时间:2014-12-19 01:58:23      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:cloudstack   kvm   memballoon   内存超分   内存减半   

现象:

cloudstack4.3,4.4版本,使用kvm虚拟机时,如果配置了内存超用,会发现创建的虚拟机内存为计算方案的一半。


分析:

配置完超配系数为2以后,创建虚拟机,打开虚拟机(计算方案为2C/2G)的xml配置文件如下:

  <name>i-2-32-VM</name>
  <uuid>eb1a307f-ff54-4f40-aa88-d6071535cd92</uuid>
  <description>CentOS 5.5 (64-bit)</description>
  <memory unit=‘KiB‘>2097152</memory>
  <currentMemory unit=‘KiB‘>1048576</currentMemory>


可以看到,虚拟机中实际显示的为currentMemory(minRam),即为当前内存为1G。

但memory unit实际为最大使用内存(maxRam)。


可以看到,2G实际被定义为虚拟机的maxRam,但实际分配为minRam,即看到的减半现象。


解决:

1.编辑agent配置文件,添加参数“vm.memballoon.disable=true

[root@SJCloudKVM-5 agent]# cat /etc/cloudstack/agent/agent.properties | grep memballoon 
vm.memballoon.disable=true

2.重启libvirtd和cloudstack-agent服务。

3.关闭,并重新启动虚拟机。


关于vm.memballoon.disable=true的解释:

# vm.memballoon.disable=true
# Disable memory ballooning on vm guests for overcommit, by default overcommit  feature enables balloon and sets currentMemory to a minimum value.


本文出自 “systems” 博客,请务必保留此出处http://systems.blog.51cto.com/2500547/1591576

KVM虚拟机内存超配后-虚拟机内存减半现象分析及解决

标签:cloudstack   kvm   memballoon   内存超分   内存减半   

原文地址:http://systems.blog.51cto.com/2500547/1591576

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!