CgroupCentos7上面的Cgroup简单实验
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CgroupCentos7上面的Cgroup简单实验相关的知识,希望对你有一定的参考价值。
实验目标
- 控制CPU分配
- 控制CPU使用率
- 控制内存分配
安装配置工具
[[email protected] cpu]# yum install -y libcgroup-tools.x86_64 libcgroup
创建我们的cgroup组my1
#创建分组 [[email protected] ~]# cgcreate -g cpu,cpuset,memory:my1 #设置限制使用cpu 0 [[email protected] ~]# cgset -r cpuset.cpus=0 my1 #设置限制使用的内存条 [[email protected] ~]# cgset -r cpuset.cpus=0 my1 #设置限制cpu最多用到50% [[email protected] ~]# cgset -r cpu.cfs_period_us=100000 my1 [[email protected] ~]# cgset -r cpu.cfs_quota_us=50000 my1 #设置限制内存最大使用大小,这里单位是byte,这里限制最多用512M [[email protected] ~]# cgset -r memory.limit_in_bytes=524288000 my1
安装测试工具 matho-primes
[[email protected] small]# wget -O mathomatic-16.0.1.tar.bz2 http://download.chinaunix.net/down.php?id=42725&ResourceID=6566&site=1 [[email protected] small]# yum install -y bzip2 [[email protected] small]# bzip2 -b mathomatic-16.0.1.tar.bz2 && tar -xf mathomatic-16.0.1.tar [[email protected] small]# cd mathomatic-16.0.1/primes/ [[email protected] small]# make && make install
测试,可以看到下面的matho-primes 进程使用了第一个cpu,50%的资源
[[email protected] ~]# cgexec -g cpuset,memory,cpu:/my1 /usr/local/bin/matho-primes 0 999999999 > /dev/null & [[email protected] ~]# top top - 13:40:49 up 1 day, 2:05, 2 users, load average: 0.00, 0.01, 0.10 Tasks: 180 total, 2 running, 178 sleeping, 0 stopped, 0 zombie %Cpu0 : 50.2 us, 0.0 sy, 0.0 ni, 49.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st %Cpu1 : 0.0 us, 0.0 sy, 0.0 ni,100.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st %Cpu2 : 0.3 us, 0.0 sy, 0.0 ni, 99.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st %Cpu3 : 0.0 us, 0.0 sy, 0.0 ni,100.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 8010804 total, 2646744 free, 4564848 used, 799212 buff/cache KiB Swap: 1679356 total, 1679356 free, 0 used. 3059412 avail Mem PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 6965 root 20 0 9200 2524 488 R 49.8 0.0 0:05.44 matho-primes
Cgroup子系统
- blkio -- 这个子系统为块设备设定输入/输出限制,比如物理设备(磁盘,固态硬盘,USB 等等)。
- cpu -- 这个子系统使用调度程序提供对 CPU 的 cgroup 任务访问。
- cpuacct -- 这个子系统自动生成 cgroup 中任务所使用的 CPU 报告。
- cpuset -- 这个子系统为 cgroup 中的任务分配独立 CPU(在多核系统)和内存节点。
- devices -- 这个子系统可允许或者拒绝 cgroup 中的任务访问设备。
- freezer -- 这个子系统挂起或者恢复 cgroup 中的任务。
- memory -- 这个子系统设定 cgroup 中任务使用的内存限制,并自动生成由那些任务使用的内存资源报告。
- net_cls -- 这个子系统使用等级识别符(classid)标记网络数据包,可允许 Linux 流量控制程序(tc)识别从具体 cgroup 中生成的数据包。
- ns -- 名称空间子系统。
以上是关于CgroupCentos7上面的Cgroup简单实验的主要内容,如果未能解决你的问题,请参考以下文章