当前位置:网站首页>8.Swarm创建维护和水平扩展Service
8.Swarm创建维护和水平扩展Service
2020-11-06 22:33:00 【太猪-YJ】
创建service
docker service create --name demo busybox sh -c "while true;do sleep 3600;done"
查看service,此时只有一个副本 replicas 1/1
docker service ls
ID NAME MODE REPLICAS IMAGE PORTS
qbpicc7rvm49 demo replicated 1/1 busybox:latest
查看service详细信息
docker service ps demo
ID NAME IMAGE NODE DESIRED STATE CURRENT STATE ERROR PORTS
nlgymox7pt59 demo.1 busybox:latest localhost.localdomain Running Running about a minute ago
设置service副本数为5
docker service scale demo=5
再次查看service,次数副本数 replicas 5/5
docker service ls
ID NAME MODE REPLICAS IMAGE PORTS
qbpicc7rvm49 demo replicated 5/5 busybox:latest
发现启动了5个service副本,分布在3个worker node上
docker service ps demo
ID NAME IMAGE NODE DESIRED STATE CURRENT STATE ERROR PORTS
nlgymox7pt59 demo.1 busybox:latest localhost.localdomain Running Running 6 minutes ago
wjnahehppsvu demo.2 busybox:latest localhost.localdomain Running Running 2 minutes ago
ogojxvke7t9b demo.3 busybox:latest localhost.localdomain Running Running 3 minutes ago
dweehxcozoku demo.4 busybox:latest localhost.localdomain Running Running 2 minutes ago
1ix2fdj39m03 demo.5 busybox:latest localhost.localdomain Running Running 2 minutes ago
我们去其中一个worker node上删除一个service副本
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
a8661d168e78 busybox:latest "sh -c 'while true;d…" 4 minutes ago Up 4 minutes demo.3.ogojxvke7t9bza62haisw3as2
2f800599e183 busybox:latest "sh -c 'while true;d…" 8 minutes ago Up 8 minutes demo.1.nlgymox7pt59vrdj7lfjk8e4b
docker rm -f 2f800599e183
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
a8661d168e78 busybox:latest "sh -c 'while true;d…" 38 minutes ago Up 38 minutes demo.3.ogojxvke7t9bza62haisw3as2
然后再回到swarm manager节点上,查看service副本数变成4个,但是短暂时间后,又变回5个
docker service ls
ID NAME MODE REPLICAS IMAGE PORTS
qbpicc7rvm49 demo replicated 5/5 busybox:latest
再查看demo副本详细信息,demo.1确实是被删除过,但是在swarm manager的管理下,某个workder node又开启了一个service的副本,保证service的副本数是有效的。
docker service ps demo
ID NAME IMAGE NODE DESIRED STATE CURRENT STATE ERROR PORTS
z5vhrcrec1d4 demo.1 busybox:latest localhost.localdomain Running Running 6 minutes ago
nlgymox7pt59 \_ demo.1 busybox:latest localhost.localdomain Shutdown Failed 6 minutes ago "task: non-zero exit (137)"
wjnahehppsvu demo.2 busybox:latest localhost.localdomain Running Running 44 minutes ago
ogojxvke7t9b demo.3 busybox:latest localhost.localdomain Running Running 44 minutes ago
dweehxcozoku demo.4 busybox:latest localhost.localdomain Running Running 44 minutes ago
1ix2fdj39m03 demo.5 busybox:latest localhost.localdomain Running Running 44 minutes ago
我们要删除service,需要在swarm manager节点上
docker service rm demo
demo
docker service ls
ID NAME MODE REPLICAS IMAGE PORTS
版权声明
本文为[太猪-YJ]所创,转载请带上原文链接,感谢
https://my.oschina.net/xiaoyoung/blog/4700188
边栏推荐
- 2020-08-29: process thread differences, in addition to the inclusion relationship, the underlying details?
- 磁存储芯片STT-MRAM的特点
- New features of vue3
- What the hell is fastthreadlocal? The existence of ThreadLocal!!
- The memorandum model of behavior model
- The Interpreter pattern of behavior pattern
- A concise tutorial for Nacos, ribbon and feign
- How does varhart xgantt represent working days on a calendar
- Utility class functions (continuous update)
- 大佬们如何在nginx镜像里面增加模块?
猜你喜欢
Countdown | 2020 PostgreSQL Asia Conference - agenda arrangement of Chinese sub Forum
南京标志设计,logo设计公司
Points to be considered when deleting mapping field of index in ES
Novice guidance and event management system in game development
Jenkins installation and deployment process
移动端像素适配方案
Practice of Xiaoxiong school development board: real equipment access of smart street lamp sandbox experiment
Experiment one
Composition of MRAM cache
How to manage the authority of database account?
随机推荐
How to manage the authority of database account?
Application layer software development Godfather teaches you how to refactor, senior programmers must professional skills
南京标识标牌设计制作,导视VI系统设计
Exclusive interview with Alibaba cloud database for 2020 PostgreSQL Asia Conference: Zeng Wenjing
win7 APPCRASH(解决方法)(转)
Plug in bilibilibili new version 0.5.5
2020-08-15: under what circumstances should data tasks be optimized?
2020-08-20:GO语言中的协程与Python中的协程的区别?
Stm32f030c6t6 compatible to replace mm32spin05pf
Benefits and functions of auto maintenance app development
Event monitoring problem
The essence of transaction and the principle of deadlock
条形码识别性能低,如何优化Dynamsoft Barcode Reader解码性能
应用层软件开发教父教你如何重构,资深程序员必备专业技能
上海巨微专用蓝牙广播芯片
Method of code refactoring -- Analysis of method refactoring
vue3 新特性
2020-08-17:详细说下数据倾斜怎么解决?
Mobile pixel adaptation scheme
Characteristics of magnetic memory chip STT-MRAM