目標(biāo):
通過(guò)nova服務(wù)的flavor模板中的元數(shù)據(jù),來(lái)限制虛擬機(jī)CPU烦粒、磁盤IO資源等瘸羡,以保證物理機(jī)以正常速度運(yùn)行,也可以使不同的虛擬機(jī)以同樣的速度運(yùn)行。
準(zhǔn)備:
-openstack
-nova
-vm
過(guò)程:
創(chuàng)建vm模板:
test模板 id為10 內(nèi)存4G 硬盤100G vcpu4個(gè)
[root@controller ~]# nova flavor-create test 10 4096 100 4
限制磁盤速度:
讀寫速度均為10MB
[root@controller ~]# nova flavor-key test set quota:disk_read_bytes_sec=10240000
[root@controller ~]# nova flavor-key test set quota:disk_write_bytes_sec=10240000
限制cpu占用比例(5%):
[root@controller ~]# nova flavor-key test set quota:cpu_period=1000000
[root@controller ~]# nova flavor-key test set quota:cpu_quota=50000
測(cè)試:
創(chuàng)建虛擬機(jī):
[root@controller ~]# nova boot --image centos7.2 --flavor test --nic net-name=int-net1 test
磁盤讀寫測(cè)試:
設(shè)置不同的塊大小缆镣,測(cè)試結(jié)果均為10MB芽突。
[root@test ~]# dd if=/dev/zero of=testfile bs=8k count=5000 oflag=direct
5000+0 records in
5000+0 records out
40960000 bytes (41 MB) copied, 3.90028 s, 10.5 MB/s
[root@test ~]# dd if=/dev/zero of=testfile bs=1M count=50 oflag=direct
50+0 records in
50+0 records out
52428800 bytes (52 MB) copied, 4.9546 s, 10.6 MB/s
[root@test ~]# dd if=/dev/zero of=testfile bs=10M count=50 oflag=direct
50+0 records in
50+0 records out
524288000 bytes (524 MB) copied, 50.9428 s, 10.3 MB/s
cpu測(cè)試:
虛擬機(jī)cpu限制為5%等于400%*0.05=20%,也就是說(shuō)虛擬機(jī)最多使用已分配資源的20%董瞻。
創(chuàng)建cpu負(fù)載:
[root@test ~]# stress -c 24
stress: info: [10215] dispatching hogs: 4 cpu, 0 io, 0 vm, 0 hdd
cpu負(fù)載情況:
[root@test ~]# top -s
Tasks: 122 total, 18 running, 104 sleeping, 0 stopped, 0 zombie
%Cpu0 : 5.0 us, 0.0 sy, 0.0 ni, 0.0 id, 0.0 wa, 0.0 hi, 0.0 si, 95.0 st
%Cpu1 : 5.0 us, 0.0 sy, 0.0 ni, 0.0 id, 0.0 wa, 0.0 hi, 0.0 si, 95.0 st
%Cpu2 : 5.3 us, 0.0 sy, 0.0 ni, 0.0 id, 0.0 wa, 0.0 hi, 0.0 si, 94.7 st
%Cpu3 : 5.0 us, 0.0 sy, 0.0 ni, 0.0 id, 0.0 wa, 0.0 hi, 0.0 si, 95.0 st
KiB Mem : 4047276 total, 3837488 free, 84040 used, 125748 buff/cache
KiB Swap: 0 total, 0 free, 0 used. 3801536 avail Mem
5+5+5.3+5=20%,可見(jiàn)cpu資源被限制寞蚌。
附:
云主機(jī)類型:
[root@controller ~]# nova flavor-show test
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------+
| Property | Value |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------+
| OS-FLV-DISABLED:disabled | False |
| OS-FLV-EXT-DATA:ephemeral | 0 |
| disk | 100 |
| extra_specs | {"quota:disk_read_bytes_sec": "10240000", "quota:cpu_period": "1000000", "quota:disk_write_bytes_sec": "10240000", "quota:cpu_quota": "50000"} |
| id | 21e74ec4-d7a2-4902-917c-a4487cecc5cc |
| name | test |
| os-flavor-access:is_public | True |
| ram | 4096 |
| rxtx_factor | 1.0 |
| swap | |
| vcpus | 4 |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------+