本文包含以下内容:
首先,你需要了解基本信息。
1主机CPU特征视图
使用virshnodeinfo查看一些基本信息。
virsh nodeinfo CPU model: x86_64 CPU(s): 32 CPU frequency: 1200 MHz CPU socket(s): 1 Core(s) per socket: 8 Thread(s) per core: 2 NUMA cell(s): 2 Memory size: 132119080 KiB通过virsh功能,您可以查看物理CPU的详细信息,包括物理CPU的数量、每个CPU中的核心数量以及是否启用了超线程。
virsh capabilities <capabilities> <host> <uuid>36353332-3030-3643-5534-3235445a564a</uuid> <cpu> <arch>x86_64</arch> <model>SandyBridge</model> <vendor>Intel</vendor> <topology sockets='1' cores='8' threads='2'/> <feature name='erms'/> <feature name='smep'/> ... </cpu> <power_management> <suspend_disk/> </power_management> <migration_features> <live/> <uri_transports> <uri_transport>tcp</uri_transport> </uri_transports> </migration_features> <topology> <cells num='2'> <cell id='0'> <cpus num='16'> <cpu id='0' socket_id='0' core_id='0' siblings='0,16'/> ... <cpu id='23' socket_id='0' core_id='7' siblings='7,23'/> </cpus> </cell> <cell id='1'> <cpus num='16'> <cpu id='8' socket_id='1' core_id='0' siblings='8,24'/> ... <cpu id='31' socket_id='1' core_id='7' siblings='15,31'/> </cpus> </cell> </cells> </topology> <secmodel> <model>none</model> <doi>0</doi> </secmodel> <secmodel> <model>dac</model> <doi>0</doi> </secmodel> </host> ... </capabilities>使用virshfreecell命令检查可用的空闲内存空
virsh freecell --all 0: 787288 KiB 1: 94192 KiB -------------------- Total: 881480 KiB物理CPU的特性也可以通过/proc/cpuinfo查看。
cat /proc/cpuinfo rocessor : 0 vendor_id : GenuineIntel cpu family : 6 model : 62 model name : Intel(R) Xeon(R) CPU E5-2640 v2 @ 2.00GHz stepping : 4 cpu MHz : 1200.000 cache size : 20480 KB physical id : 0 siblings : 16 core id : 0 cpu cores : 8 apicid : 0 initial apicid : 0 fpu : yes fpu_exception : yes cpuid level : 13 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms bogomips : 3990.67 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: ...基于以上信息,我们可以得出以下信息:
1)物理CPU为E5-2640V2,8核2核。超线程开启,物理机系统上可以看到32个CPUs
2)物理机内存128G。
2虚拟机CPU使用视图
可以使用virshvcpuinfo命令查看虚拟机vcpu和物理cpu的对应关系。
virsh vcpuinfo 21 VCPU: 0 CPU: 25 State: running CPU time: 10393.0s CPU Affinity: --------yyyyyyyy--------yyyyyyyy VCPU: 1 CPU: 8 State: running CPU time: 7221.2s CPU Affinity: --------yyyyyyyy--------yyyyyyyy ...可以看到vcpu0被调度到物理机CPU25,目前正在使用中,使用时间为10393.0s
CPU Affinity: --------yyyyyyyy--------yyyyyyyyYyyyyyy代表物理cpu内部可以使用的逻辑核心。可以看出,这个虚拟机可以在这些CPU8-15、24-31之间进行调度。为什么这些CPU0-7,16-23不能用?是因为系统的自动numa平衡服务在工作,一个虚拟机默认只能使用同一个物理CPU内部的逻辑核。
使用emulatorpin查看虚拟机可以使用哪些物理和逻辑CPU。
virsh # emulatorpin 21 emulator: CPU Affinity ---------------------------------- *: 0-31我们可以看到,我们都可以使用0-31,这意味着我们也可以强制将CPU调度到任何CPU。
3个在线锁定虚拟机的cpu
强制虚拟机仅在26-31个CPU之间调度。
virsh emulatorpin 21 26-31 --live查看结果
virsh emulatorpin 21 emulator: CPU Affinity ---------------------------------- *: 26-31检查vcpu信息
virsh vcpuinfo 21 VCPU: 0 CPU: 28 State: running CPU time: 10510.5s CPU Affinity: --------------------------yyyyyy VCPU: 1 CPU: 28 State: running CPU time: 7289.7s CPU Affinity: --------------------------yyyyyy ...查看xml文件
virsh # dumpxml 21 <domain type='kvm' id='21'> <name>cacti-230</name> <uuid>23a6455c-5cd1-20cd-ecfe-2ba89be72c41</uuid> <memory unit='KiB'>4194304</memory> <currentMemory unit='KiB'>4194304</currentMemory> <vcpu placement='static'>4</vcpu> <cputune> <emulatorpin cpuset='26-31'/> </cputune>我们还可以强制vcpu和物理cpu之间的一对一绑定。
vcpu0被强制绑定到物理机器cpu28。
vcpu1被强制绑定到物理cpu29。
vcpu2被强制绑定到物理cpu30。
vcpu3被强制绑定到物理cpu31。
virsh vcpupin 21 0 28 virsh vcpupin 21 1 29 virsh vcpupin 21 2 30 virsh vcpupin 21 3 31检查xml文件,有效。
virsh # dumpxml 21 <domain type='kvm' id='21'> <name>cacti-230</name> <uuid>23a6455c-5cd1-20cd-ecfe-2ba89be72c41</uuid> <memory unit='KiB'>4194304</memory> <currentMemory unit='KiB'>4194304</currentMemory> <vcpu placement='static'>4</vcpu> <cputune> <vcpupin vcpu='0' cpuset='28'/> <vcpupin vcpu='1' cpuset='29'/> <vcpupin vcpu='2' cpuset='30'/> <vcpupin vcpu='3' cpuset='31'/> <emulatorpin cpuset='26-31'/> </cputune>这是vcpuino命令。您可以看到配置生效了。
virsh vcpuinfo 22 VCPU: 0 CPU: 28 State: running CPU time: 1.8s CPU Affinity: ----------------------------y--- VCPU: 1 CPU: 29 State: running CPU time: 0.0s CPU Affinity: -----------------------------y-- ...4CPU钉住技术应用场景
钉扎前后的效果比较
无cpu固定
前cpu压力和后cpu压力差别很大。
cpu固定了吗
前后CPU性能平衡。
cpupin的实际libvirt也是通过cgroup实现的,也可以通过cgroup直接限制kvm虚拟机进程,以便以后分享给大家。
5cpu引脚简单性能测试
cpu管脚对cpu性能的影响有多大?进行了一个简单的测试。
测试环境
硬件
NTEL(R)至强(R)CPUX5650@2.67GHz2[/brCentOS7更新至内核3.10.0-123.8.1.el7.x86_64
虚拟机
CentOS7更新至内核3.10.0
已进行cpu绑定
相比
综合评分
绑定1464.1解绑定1444.7
综合评分性能提升1.34%
[/]
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)