Please use docker swarm only if you need to:
-
Provide redundancy in terms of API containers: In case a container went down, the incoming requests will be redirected to another running instance.
-
Coordinate between the containers: Swarm will orchestrate between the APIs and choose one of them to listen to the incoming request.
-
Scale up the Inference service in order to get a faster prediction especially if there's traffic on the service.
Docker swarm can scale up the API into multiple replicas and can be used on one or multiple hosts(Linux users only). In both cases, a docker swarm setup is required for all hosts.
1- Initialize Swarm:
docker swarm init
2- On the manager host, open the cpu-inference.yaml file and specify the number of replicas needed. In case you are using multiple hosts (With multiple hosts section), the number of replicas will be divided across all hosts.
version: "3"
services:
api:
ports:
- "7770:7770"
image: yolov3_inference_api_cpu
volumes:
- "/mnt/models:/models"
deploy:
replicas: 1
update_config:
parallelism: 2
delay: 10s
restart_policy:
condition: on-failure
Notes about cpu-inference.yaml:
- the volumes field on the left of ":" should be an absolute path, can be changeable by the user, and represents the models directory on your Operating System
- the following volume's field ":/models" should never be changed
Deploy the API:
docker stack deploy -c cpu-inference.yaml yolov3-cpu
1- Make sure hosts are reachable on the same network.
2- Choose a host to be the manager and run the following command on the chosen host to generate a token so the other hosts can join:
docker swarm join-token worker
A command will appear on your terminal, copy and paste it on the other hosts, as seen in the below image
3- Deploy your application using:
docker stack deploy -c cpu-inference.yaml yolov3-cpu
1- In order to scale up the service to 4 replicas for example use this command:
docker service scale yolov3-cpu_api=4
2- To check the available workers:
docker node ls
3- To check on which node the container is running:
docker service ps yolov3-cpu_api
4- To check the number of replicas:
docker service ls
Here are two graphs showing time of prediction for different number of requests at the same time.
We can see that both graphs got the same result no matter what is the number of received requests at the same time. When we increase the number of workers (hosts) we are able to speed up the inference by at least 2 times. For example we can see in the last column we were able to process 40 requests in:
- 8 seconds with 20 replicas in 1 machine
- 5.8 seconds with 20 replicas in each of the 2 machines
- 3.9 seconds with 20 replicas in each of the 3 machines
Moreover, in case one of the machines is down the others are always ready to receive requests.
Finally since we are predicting on CPU scaling more replicas doesn't mean a faster prediction, 4 containers was faster than 20.