概要
docker-compose 可以方便組合多個 docker 容器服務, 但是, 當容器服務之間存在依賴關係時, docker-compose 並不能保證服務的啟動順序.
docker-compose 中的 depends_on 配置是容器的啟動順序, 並不是容器中服務的啟動順序.
問題重現
首先, 我們構造一個示例, 來演示 docker-compose 帶來的問題. docker-compose.yml 檔案如下:
version: '2'
services:
web:
image: ubuntu:14.04
depends_on:
- web
command: nc -z database 3306
database:
image: ubuntu:14.04
command: >
/bin/bash -c '
sleep 5;
echo "sleep over";
nc -lk 0.0.0.0 3306;
'
啟動後, 可以發現, 確實是先啟動 database, 後啟動 web, 但是 database 中的服務是在大約 5 秒後才完成的, 所以導致 web 的啟動失敗.
$ docker-compose up
Creating tmp_database_1 ... done
Creating tmp_database_1 ...
Creating tmp_web_1 ... done
Attaching to tmp_database_1, tmp_web_1
tmp_web_1 exited with code 1
database_1 | sleep over
問題解決方式 1.0
修改 web 的啟動指令碼, 等待 database 的埠通了之後再啟動服務
version: '2'
services:
web:
image: ubuntu:14.04
depends_on:
- database
command: >
/bin/bash -c '
while ! nc -z database 3306;
do
echo "wait for database";
sleep 1;
done;
echo "database is ready!";
echo "start web service here";
'
database:
image: ubuntu:14.04
command: >
/bin/bash -c '
sleep 5;
echo "sleep over";
nc -lk 0.0.0.0 3306;
'
再次啟動,
$ docker-compose up
Creating tmp_database_1 ... done
Creating tmp_database_1 ...
Creating tmp_web_1 ... done
Attaching to tmp_database_1, tmp_web_1
web_1 | wait for database
web_1 | wait for database
web_1 | wait for database
web_1 | wait for database
web_1 | wait for database
database_1 | sleep over
web_1 | database is ready!
web_1 | start web service here
tmp_web_1 exited with code 0
web 會在 database 啟動完成, 埠通了之後才啟動.
問題解決方式 2.0
上面的解決方式雖然能夠解決問題, 但是在 yaml 中直接插入指令碼不好維護, 也容易出錯. 如果有多個依賴, 或者多層依賴的時候, 複雜度會直線上升.
所以, 要封裝一個 entrypoint.sh 指令碼, 可以接受啟動命令, 以及需要等待的服務和埠. 指令碼內容如下:
#!/bin/bash
#set -x
#******************************************************************************
# @file : entrypoint.sh
# @author : wangyubin
# @date : 2018-08- 1 10:18:43
#
# @brief : entry point for manage service start order
# history : init
#******************************************************************************
: ${SLEEP_SECOND:=2}
wait_for() {
echo Waiting for $1 to listen on $2...
while ! nc -z $1 $2; do echo waiting...; sleep $SLEEP_SECOND; done
}
declare DEPENDS
declare CMD
while getopts "d:c:" arg
do
case $arg in
d)
DEPENDS=$OPTARG
;;
c)
CMD=$OPTARG
;;
?)
echo "unkonw argument"
exit 1
;;
esac
done
for var in ${DEPENDS//,/ }
do
host=${var%:*}
port=${var#*:}
wait_for $host $port
done
eval $CMD
這個指令碼有 2 個引數, -d 需要等待的服務和埠, -c 等待的服務和埠啟動之後, 自己的啟動命令
修改 docker-compose.yml, 使用 entrypoint.sh 指令碼來控制啟動順序.
version: '2'
services:
web:
image: ubuntu:14.04
depends_on:
- database
volumes:
- "./entrypoint.sh:/entrypoint.sh"
entrypoint: /entrypoint.sh -d database:3306 -c 'echo "start web service here"';
database:
image: ubuntu:14.04
command: >
/bin/bash -c '
sleep 5;
echo "sleep over";
nc -lk 0.0.0.0 3306;
'
實際使用中, 也可以將 entrypoint.sh 打包到釋出的映象之中, 不用通過 volumes 配置來載入 entrypoint.sh 指令碼.
測試結果如下:
$ docker-compose up
Starting tmp_database_1 ... done
Starting tmp_web_1 ... done
Attaching to tmp_database_1, tmp_web_1
web_1 | Waiting for database to listen on 3306...
web_1 | waiting...
web_1 | waiting...
web_1 | waiting...
database_1 | sleep over
web_1 | start web service here
tmp_web_1 exited with code 0
補充
依賴多個服務和埠
使用上面的 entrypoint.sh 指令碼, 也可以依賴多個服務和埠, -d 引數後面的多個服務和埠用逗號(,)隔開.
version: '2'
services:
web:
image: ubuntu:14.04
depends_on:
- mysql
- postgresql
volumes:
- "./entrypoint.sh:/entrypoint.sh"
entrypoint: /entrypoint.sh -d mysql:3306,postgresql:5432 -c 'echo "start web service here"';
mysql:
image: ubuntu:14.04
command: >
/bin/bash -c '
sleep 4;
echo "sleep over";
nc -lk 0.0.0.0 3306;
'
postgresql:
image: ubuntu:14.04
command: >
/bin/bash -c '
sleep 8;
echo "sleep over";
nc -lk 0.0.0.0 5432;
'
執行的效果可以自行嘗試.
嘗試間隔的配置
每次嘗試連線的等待時間可以通過 環境變數 SLEEP_SECOND 來配置, 預設 2 秒 下面的配置等待時間設定為 4 秒, 就會每隔 4 秒才去嘗試 mysql 服務時候可連線.
version: '2'
services:
web:
image: ubuntu:14.04
environment:
SLEEP_SECOND: 4
depends_on:
- mysql
volumes:
- "./entrypoint.sh:/entrypoint.sh"
entrypoint: /entrypoint.sh -d mysql:3306 'echo "start web service here"';
mysql:
image: ubuntu:14.04
command: >
/bin/bash -c '
sleep 4;
echo "sleep over";
nc -lk 0.0.0.0 3306;
'