首页 > 其他 > 详细

Docker资源限制

时间:2019-06-15 20:48:18      阅读:99      评论:0      收藏:0      [点我收藏+]

九、Docker资源限制

  • 内存资源
-m or --memory=  #限制内存大小 例: --memory=4m
--memory-swap *  #限制交换分区,必须先设置内存大小,可设置的值:正数,0,-1
    正数:swap为swap-memory
    0:swap为物理机mem*2
    -1:不限制
    注意:在容器内free看到的swap不具有展现出空间指示的意义
--oom-kill-disable  #禁止容器被oom
  • CPU资源
--cpu-shares  #CPU资源共享,按比例切分当前系统上的CPU资源
--cpuset-cpus=0,1  #限制在哪个CPU上
--cpus=  #分配几个CPU
  • 压测
# docker pull lorel/docker-stress-ng
# docker run --name stress -it --rm -m 256m lorel/docker-stress-ng stress --vm 2
# docker top stress
# docker state
# docker run --name stress -it --rm --cpus 2 lorel/docker-stress-ng stress  --cpu 8
# docker run --name stress -it --rm --cpuset-cpus 0,2 lorel/docker-stress-ng stress  --cpu 8
# docker run --name stress -it --rm --cpu-shares 1024 lorel/docker-stress-ng stress  --cpu 8
# docker run --name stress2 -it --rm --cpu-shares 512 lorel/docker-stress-ng stress  --cpu 8

Docker资源限制

原文:https://www.cnblogs.com/L-dongf/p/11028733.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!