[Feature-#3291][Improvement][Docker] Reduce docker image size, remove nginx and improve log out (#4529)
* [Improvement][Docker] Reduce docker image size * [Improvement][Docker] Improve log out * [Improvement][Docker] Chmod +x to script files * [Improvement][Docker] Remove frontend and fix docker statck deploy * [Fix][Docker] Fix e2e test * [Improvement][Docker] Revert log appender * [Improvement][Docker] Remove stdout log appender
This commit is contained in:
parent
a0e35c78f8
commit
6441dcb9a4
|
|
@ -4,43 +4,45 @@
|
||||||
.zip
|
.zip
|
||||||
.gz
|
.gz
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.target
|
||||||
.idea/
|
.idea/
|
||||||
|
target/
|
||||||
dist/
|
dist/
|
||||||
all-dependencies.txt
|
all-dependencies.txt
|
||||||
self-modules.txt
|
self-modules.txt
|
||||||
third-party-dependencies.txt
|
third-party-dependencies.txt
|
||||||
**/target/
|
|
||||||
.settings
|
.settings
|
||||||
.nbproject
|
.nbproject
|
||||||
.classpath
|
.classpath
|
||||||
.project
|
.project
|
||||||
**/*.iml
|
*.iml
|
||||||
*.ipr
|
*.ipr
|
||||||
*.iws
|
*.iws
|
||||||
*.tgz
|
*.tgz
|
||||||
.*.swp
|
.*.swp
|
||||||
.vim
|
.vim
|
||||||
.tmp
|
.tmp
|
||||||
**/node_modules
|
node_modules
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
.vscode
|
.vscode
|
||||||
logs/*
|
logs/*
|
||||||
|
.mvn/
|
||||||
.www
|
.www
|
||||||
t.*
|
t.*
|
||||||
|
.factorypath
|
||||||
|
Chart.lock
|
||||||
yarn.lock
|
yarn.lock
|
||||||
package-lock.json
|
package-lock.json
|
||||||
config.gypi
|
config.gypi
|
||||||
test/coverage
|
test/coverage
|
||||||
/docs/zh_CN/介绍
|
/docs/zh_CN/介绍
|
||||||
/docs/zh_CN/贡献代码.md
|
/docs/zh_CN/贡献代码.md
|
||||||
/dolphinscheduler-common/src/main/resources/zookeeper.properties
|
dolphinscheduler-common/src/main/resources/zookeeper.properties
|
||||||
|
dolphinscheduler-dao/src/main/resources/dao/data_source.properties
|
||||||
dolphinscheduler-alert/logs/
|
dolphinscheduler-alert/logs/
|
||||||
dolphinscheduler-alert/src/main/resources/alert.properties_bak
|
dolphinscheduler-alert/src/main/resources/alert.properties_bak
|
||||||
dolphinscheduler-alert/src/main/resources/logback.xml
|
dolphinscheduler-alert/src/main/resources/logback.xml
|
||||||
dolphinscheduler-server/src/main/resources/logback.xml
|
dolphinscheduler-server/src/main/resources/logback.xml
|
||||||
dolphinscheduler-ui/dist/
|
dolphinscheduler-ui/dist
|
||||||
dolphinscheduler-ui/node
|
dolphinscheduler-ui/node
|
||||||
dolphinscheduler-dao/src/main/resources/dao/data_source.properties
|
docker/build/apache-dolphinscheduler*
|
||||||
|
|
||||||
.mvn/wrapper/*.jar
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,53 +15,37 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
FROM nginx:alpine
|
FROM openjdk:8-jdk-alpine
|
||||||
|
|
||||||
ARG VERSION
|
ARG VERSION
|
||||||
|
|
||||||
ENV TZ Asia/Shanghai
|
ENV TZ Asia/Shanghai
|
||||||
ENV LANG C.UTF-8
|
ENV LANG C.UTF-8
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DOCKER true
|
||||||
|
|
||||||
#1. install dos2unix shadow bash openrc python sudo vim wget iputils net-tools ssh pip tini kazoo.
|
# 1. install command/library/software
|
||||||
#If install slowly, you can replcae alpine's mirror with aliyun's mirror, Example:
|
# If install slowly, you can replcae alpine's mirror with aliyun's mirror, Example:
|
||||||
#RUN sed -i "s/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g" /etc/apk/repositories
|
# RUN sed -i "s/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g" /etc/apk/repositories
|
||||||
|
# RUN sed -i 's/dl-cdn.alpinelinux.org/mirror.tuna.tsinghua.edu.cn/g' /etc/apk/repositories
|
||||||
RUN apk update && \
|
RUN apk update && \
|
||||||
apk --update add --no-cache dos2unix shadow bash openrc python2 python3 sudo vim wget iputils net-tools openssh-server py-pip tini && \
|
apk add --no-cache tzdata dos2unix bash python2 python3 procps sudo shadow tini postgresql-client && \
|
||||||
apk add --update procps && \
|
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
|
||||||
openrc boot
|
apk del tzdata && \
|
||||||
|
rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
#2. install jdk
|
# 2. add dolphinscheduler
|
||||||
RUN apk add openjdk8
|
|
||||||
ENV JAVA_HOME /usr/lib/jvm/java-1.8-openjdk
|
|
||||||
ENV PATH $JAVA_HOME/bin:$PATH
|
|
||||||
|
|
||||||
#3. add dolphinscheduler
|
|
||||||
ADD ./apache-dolphinscheduler-incubating-${VERSION}-dolphinscheduler-bin.tar.gz /opt/
|
ADD ./apache-dolphinscheduler-incubating-${VERSION}-dolphinscheduler-bin.tar.gz /opt/
|
||||||
RUN mv /opt/apache-dolphinscheduler-incubating-${VERSION}-dolphinscheduler-bin/ /opt/dolphinscheduler/
|
RUN ln -s /opt/apache-dolphinscheduler-incubating-${VERSION}-dolphinscheduler-bin /opt/dolphinscheduler
|
||||||
ENV DOLPHINSCHEDULER_HOME /opt/dolphinscheduler
|
ENV DOLPHINSCHEDULER_HOME /opt/dolphinscheduler
|
||||||
|
|
||||||
#4. install pg
|
# 3. add configuration and modify permissions and set soft links
|
||||||
RUN apk add postgresql postgresql-contrib
|
|
||||||
#5. modify nginx
|
|
||||||
RUN echo "daemon off;" >> /etc/nginx/nginx.conf && \
|
|
||||||
rm -rf /etc/nginx/conf.d/*
|
|
||||||
ADD ./conf/nginx/dolphinscheduler.conf /etc/nginx/conf.d
|
|
||||||
|
|
||||||
#6. add configuration and modify permissions and set soft links
|
|
||||||
ADD ./checkpoint.sh /root/checkpoint.sh
|
ADD ./checkpoint.sh /root/checkpoint.sh
|
||||||
ADD ./startup-init-conf.sh /root/startup-init-conf.sh
|
ADD ./startup-init-conf.sh /root/startup-init-conf.sh
|
||||||
ADD ./startup.sh /root/startup.sh
|
ADD ./startup.sh /root/startup.sh
|
||||||
ADD ./conf/dolphinscheduler/*.tpl /opt/dolphinscheduler/conf/
|
ADD ./conf/dolphinscheduler/*.tpl /opt/dolphinscheduler/conf/
|
||||||
ADD ./conf/dolphinscheduler/logback/* /opt/dolphinscheduler/conf/
|
ADD ./conf/dolphinscheduler/logback/* /opt/dolphinscheduler/conf/
|
||||||
ADD conf/dolphinscheduler/env/dolphinscheduler_env.sh /opt/dolphinscheduler/conf/env/
|
ADD conf/dolphinscheduler/env/dolphinscheduler_env.sh /opt/dolphinscheduler/conf/env/
|
||||||
RUN chmod +x /root/checkpoint.sh && \
|
RUN dos2unix /root/checkpoint.sh && \
|
||||||
chmod +x /root/startup-init-conf.sh && \
|
|
||||||
chmod +x /root/startup.sh && \
|
|
||||||
chmod +x /opt/dolphinscheduler/conf/env/dolphinscheduler_env.sh && \
|
|
||||||
chmod +x /opt/dolphinscheduler/script/*.sh && \
|
|
||||||
chmod +x /opt/dolphinscheduler/bin/*.sh && \
|
|
||||||
dos2unix /root/checkpoint.sh && \
|
|
||||||
dos2unix /root/startup-init-conf.sh && \
|
dos2unix /root/startup-init-conf.sh && \
|
||||||
dos2unix /root/startup.sh && \
|
dos2unix /root/startup.sh && \
|
||||||
dos2unix /opt/dolphinscheduler/conf/env/dolphinscheduler_env.sh && \
|
dos2unix /opt/dolphinscheduler/conf/env/dolphinscheduler_env.sh && \
|
||||||
|
|
@ -69,13 +53,10 @@ RUN chmod +x /root/checkpoint.sh && \
|
||||||
dos2unix /opt/dolphinscheduler/bin/*.sh && \
|
dos2unix /opt/dolphinscheduler/bin/*.sh && \
|
||||||
rm -rf /bin/sh && \
|
rm -rf /bin/sh && \
|
||||||
ln -s /bin/bash /bin/sh && \
|
ln -s /bin/bash /bin/sh && \
|
||||||
mkdir -p /tmp/xls
|
mkdir -p /tmp/xls && \
|
||||||
|
|
||||||
#7. remove apk index cache and disable coredup for sudo
|
|
||||||
RUN rm -rf /var/cache/apk/* && \
|
|
||||||
echo "Set disable_coredump false" >> /etc/sudo.conf
|
echo "Set disable_coredump false" >> /etc/sudo.conf
|
||||||
|
|
||||||
#8. expose port
|
# 4. expose port
|
||||||
EXPOSE 2181 2888 3888 5432 5678 1234 12345 50051 8888
|
EXPOSE 5678 1234 12345 50051
|
||||||
|
|
||||||
ENTRYPOINT ["/sbin/tini", "--", "/root/startup.sh"]
|
ENTRYPOINT ["/sbin/tini", "--", "/root/startup.sh"]
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,9 @@ Official Website: https://dolphinscheduler.apache.org
|
||||||
|
|
||||||
#### You can start a dolphinscheduler instance
|
#### You can start a dolphinscheduler instance
|
||||||
```
|
```
|
||||||
$ docker run -dit --name dolphinscheduler \
|
$ docker run -dit --name dolphinscheduler \
|
||||||
-e DATABASE_USERNAME=test -e DATABASE_PASSWORD=test -e DATABASE_DATABASE=dolphinscheduler \
|
-e DATABASE_USERNAME=test -e DATABASE_PASSWORD=test -e DATABASE_DATABASE=dolphinscheduler \
|
||||||
-p 8888:8888 \
|
-p 12345:12345 \
|
||||||
dolphinscheduler all
|
dolphinscheduler all
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -33,7 +33,7 @@ You can specify **existing postgres service**. Example:
|
||||||
$ docker run -dit --name dolphinscheduler \
|
$ docker run -dit --name dolphinscheduler \
|
||||||
-e DATABASE_HOST="192.168.x.x" -e DATABASE_PORT="5432" -e DATABASE_DATABASE="dolphinscheduler" \
|
-e DATABASE_HOST="192.168.x.x" -e DATABASE_PORT="5432" -e DATABASE_DATABASE="dolphinscheduler" \
|
||||||
-e DATABASE_USERNAME="test" -e DATABASE_PASSWORD="test" \
|
-e DATABASE_USERNAME="test" -e DATABASE_PASSWORD="test" \
|
||||||
-p 8888:8888 \
|
-p 12345:12345 \
|
||||||
dolphinscheduler all
|
dolphinscheduler all
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -43,7 +43,7 @@ You can specify **existing zookeeper service**. Example:
|
||||||
$ docker run -dit --name dolphinscheduler \
|
$ docker run -dit --name dolphinscheduler \
|
||||||
-e ZOOKEEPER_QUORUM="l92.168.x.x:2181"
|
-e ZOOKEEPER_QUORUM="l92.168.x.x:2181"
|
||||||
-e DATABASE_USERNAME="test" -e DATABASE_PASSWORD="test" -e DATABASE_DATABASE="dolphinscheduler" \
|
-e DATABASE_USERNAME="test" -e DATABASE_PASSWORD="test" -e DATABASE_DATABASE="dolphinscheduler" \
|
||||||
-p 8888:8888 \
|
-p 12345:12345 \
|
||||||
dolphinscheduler all
|
dolphinscheduler all
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -90,15 +90,6 @@ $ docker run -dit --name dolphinscheduler \
|
||||||
dolphinscheduler alert-server
|
dolphinscheduler alert-server
|
||||||
```
|
```
|
||||||
|
|
||||||
* Start a **frontend**, For example:
|
|
||||||
|
|
||||||
```
|
|
||||||
$ docker run -dit --name dolphinscheduler \
|
|
||||||
-e FRONTEND_API_SERVER_HOST="192.168.x.x" -e FRONTEND_API_SERVER_PORT="12345" \
|
|
||||||
-p 8888:8888 \
|
|
||||||
dolphinscheduler frontend
|
|
||||||
```
|
|
||||||
|
|
||||||
**Note**: You must be specify `DATABASE_HOST` `DATABASE_PORT` `DATABASE_DATABASE` `DATABASE_USERNAME` `DATABASE_PASSWORD` `ZOOKEEPER_QUORUM` when start a standalone dolphinscheduler server.
|
**Note**: You must be specify `DATABASE_HOST` `DATABASE_PORT` `DATABASE_DATABASE` `DATABASE_USERNAME` `DATABASE_PASSWORD` `ZOOKEEPER_QUORUM` when start a standalone dolphinscheduler server.
|
||||||
|
|
||||||
## How to build a docker image
|
## How to build a docker image
|
||||||
|
|
@ -302,18 +293,6 @@ This environment variable sets enterprise wechat agent id for `alert-server`. Th
|
||||||
|
|
||||||
This environment variable sets enterprise wechat users for `alert-server`. The default value is empty.
|
This environment variable sets enterprise wechat users for `alert-server`. The default value is empty.
|
||||||
|
|
||||||
**`FRONTEND_API_SERVER_HOST`**
|
|
||||||
|
|
||||||
This environment variable sets api server host for `frontend`. The default value is `127.0.0.1`.
|
|
||||||
|
|
||||||
**Note**: You must be specify it when start a standalone dolphinscheduler server. Like `api-server`.
|
|
||||||
|
|
||||||
**`FRONTEND_API_SERVER_PORT`**
|
|
||||||
|
|
||||||
This environment variable sets api server port for `frontend`. The default value is `123451`.
|
|
||||||
|
|
||||||
**Note**: You must be specify it when start a standalone dolphinscheduler server. Like `api-server`.
|
|
||||||
|
|
||||||
## Initialization scripts
|
## Initialization scripts
|
||||||
|
|
||||||
If you would like to do additional initialization in an image derived from this one, add one or more environment variable under `/root/start-init-conf.sh`, and modify template files in `/opt/dolphinscheduler/conf/*.tpl`.
|
If you would like to do additional initialization in an image derived from this one, add one or more environment variable under `/root/start-init-conf.sh`, and modify template files in `/opt/dolphinscheduler/conf/*.tpl`.
|
||||||
|
|
@ -322,7 +301,7 @@ For example, to add an environment variable `API_SERVER_PORT` in `/root/start-in
|
||||||
|
|
||||||
```
|
```
|
||||||
export API_SERVER_PORT=5555
|
export API_SERVER_PORT=5555
|
||||||
```
|
```
|
||||||
|
|
||||||
and to modify `/opt/dolphinscheduler/conf/application-api.properties.tpl` template file, add server port:
|
and to modify `/opt/dolphinscheduler/conf/application-api.properties.tpl` template file, add server port:
|
||||||
```
|
```
|
||||||
|
|
@ -339,8 +318,4 @@ $(cat ${DOLPHINSCHEDULER_HOME}/conf/${line})
|
||||||
EOF
|
EOF
|
||||||
" > ${DOLPHINSCHEDULER_HOME}/conf/${line%.*}
|
" > ${DOLPHINSCHEDULER_HOME}/conf/${line%.*}
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "generate nginx config"
|
|
||||||
sed -i "s/FRONTEND_API_SERVER_HOST/${FRONTEND_API_SERVER_HOST}/g" /etc/nginx/conf.d/dolphinscheduler.conf
|
|
||||||
sed -i "s/FRONTEND_API_SERVER_PORT/${FRONTEND_API_SERVER_PORT}/g" /etc/nginx/conf.d/dolphinscheduler.conf
|
|
||||||
```
|
```
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,9 @@ Official Website: https://dolphinscheduler.apache.org
|
||||||
|
|
||||||
#### 你可以运行一个dolphinscheduler实例
|
#### 你可以运行一个dolphinscheduler实例
|
||||||
```
|
```
|
||||||
$ docker run -dit --name dolphinscheduler \
|
$ docker run -dit --name dolphinscheduler \
|
||||||
-e DATABASE_USERNAME=test -e DATABASE_PASSWORD=test -e DATABASE_DATABASE=dolphinscheduler \
|
-e DATABASE_USERNAME=test -e DATABASE_PASSWORD=test -e DATABASE_DATABASE=dolphinscheduler \
|
||||||
-p 8888:8888 \
|
-p 12345:12345 \
|
||||||
dolphinscheduler all
|
dolphinscheduler all
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -33,7 +33,7 @@ dolphinscheduler all
|
||||||
$ docker run -dit --name dolphinscheduler \
|
$ docker run -dit --name dolphinscheduler \
|
||||||
-e DATABASE_HOST="192.168.x.x" -e DATABASE_PORT="5432" -e DATABASE_DATABASE="dolphinscheduler" \
|
-e DATABASE_HOST="192.168.x.x" -e DATABASE_PORT="5432" -e DATABASE_DATABASE="dolphinscheduler" \
|
||||||
-e DATABASE_USERNAME="test" -e DATABASE_PASSWORD="test" \
|
-e DATABASE_USERNAME="test" -e DATABASE_PASSWORD="test" \
|
||||||
-p 8888:8888 \
|
-p 12345:12345 \
|
||||||
dolphinscheduler all
|
dolphinscheduler all
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -43,7 +43,7 @@ dolphinscheduler all
|
||||||
$ docker run -dit --name dolphinscheduler \
|
$ docker run -dit --name dolphinscheduler \
|
||||||
-e ZOOKEEPER_QUORUM="l92.168.x.x:2181"
|
-e ZOOKEEPER_QUORUM="l92.168.x.x:2181"
|
||||||
-e DATABASE_USERNAME="test" -e DATABASE_PASSWORD="test" -e DATABASE_DATABASE="dolphinscheduler" \
|
-e DATABASE_USERNAME="test" -e DATABASE_PASSWORD="test" -e DATABASE_DATABASE="dolphinscheduler" \
|
||||||
-p 8888:8888 \
|
-p 12345:12345 \
|
||||||
dolphinscheduler all
|
dolphinscheduler all
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -90,15 +90,6 @@ $ docker run -dit --name dolphinscheduler \
|
||||||
dolphinscheduler alert-server
|
dolphinscheduler alert-server
|
||||||
```
|
```
|
||||||
|
|
||||||
* 启动一个 **frontend**, 如下:
|
|
||||||
|
|
||||||
```
|
|
||||||
$ docker run -dit --name dolphinscheduler \
|
|
||||||
-e FRONTEND_API_SERVER_HOST="192.168.x.x" -e FRONTEND_API_SERVER_PORT="12345" \
|
|
||||||
-p 8888:8888 \
|
|
||||||
dolphinscheduler frontend
|
|
||||||
```
|
|
||||||
|
|
||||||
**注意**: 当你运行dolphinscheduler中的部分服务时,你必须指定这些环境变量 `DATABASE_HOST` `DATABASE_PORT` `DATABASE_DATABASE` `DATABASE_USERNAME` `DATABASE_PASSWORD` `ZOOKEEPER_QUORUM`。
|
**注意**: 当你运行dolphinscheduler中的部分服务时,你必须指定这些环境变量 `DATABASE_HOST` `DATABASE_PORT` `DATABASE_DATABASE` `DATABASE_USERNAME` `DATABASE_PASSWORD` `ZOOKEEPER_QUORUM`。
|
||||||
|
|
||||||
## 如何构建一个docker镜像
|
## 如何构建一个docker镜像
|
||||||
|
|
@ -302,18 +293,6 @@ Dolphin Scheduler映像使用了几个容易遗漏的环境变量。虽然这些
|
||||||
|
|
||||||
配置`alert-server`的邮件服务企业微信`USERS`,默认值 `空`。
|
配置`alert-server`的邮件服务企业微信`USERS`,默认值 `空`。
|
||||||
|
|
||||||
**`FRONTEND_API_SERVER_HOST`**
|
|
||||||
|
|
||||||
配置`frontend`的连接`api-server`的地址,默认值 `127.0.0.1`。
|
|
||||||
|
|
||||||
**Note**: 当单独运行`api-server`时,你应该指定`api-server`这个值。
|
|
||||||
|
|
||||||
**`FRONTEND_API_SERVER_PORT`**
|
|
||||||
|
|
||||||
配置`frontend`的连接`api-server`的端口,默认值 `12345`。
|
|
||||||
|
|
||||||
**Note**: 当单独运行`api-server`时,你应该指定`api-server`这个值。
|
|
||||||
|
|
||||||
## 初始化脚本
|
## 初始化脚本
|
||||||
|
|
||||||
如果你想在编译的时候或者运行的时候附加一些其它的操作及新增一些环境变量,你可以在`/root/start-init-conf.sh`文件中进行修改,同时如果涉及到配置文件的修改,请在`/opt/dolphinscheduler/conf/*.tpl`中修改相应的配置文件
|
如果你想在编译的时候或者运行的时候附加一些其它的操作及新增一些环境变量,你可以在`/root/start-init-conf.sh`文件中进行修改,同时如果涉及到配置文件的修改,请在`/opt/dolphinscheduler/conf/*.tpl`中修改相应的配置文件
|
||||||
|
|
@ -322,7 +301,7 @@ Dolphin Scheduler映像使用了几个容易遗漏的环境变量。虽然这些
|
||||||
|
|
||||||
```
|
```
|
||||||
export API_SERVER_PORT=5555
|
export API_SERVER_PORT=5555
|
||||||
```
|
```
|
||||||
|
|
||||||
当添加以上环境变量后,你应该在相应的模板文件`/opt/dolphinscheduler/conf/application-api.properties.tpl`中添加这个环境变量配置:
|
当添加以上环境变量后,你应该在相应的模板文件`/opt/dolphinscheduler/conf/application-api.properties.tpl`中添加这个环境变量配置:
|
||||||
```
|
```
|
||||||
|
|
@ -339,8 +318,4 @@ $(cat ${DOLPHINSCHEDULER_HOME}/conf/${line})
|
||||||
EOF
|
EOF
|
||||||
" > ${DOLPHINSCHEDULER_HOME}/conf/${line%.*}
|
" > ${DOLPHINSCHEDULER_HOME}/conf/${line%.*}
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "generate nginx config"
|
|
||||||
sed -i "s/FRONTEND_API_SERVER_HOST/${FRONTEND_API_SERVER_HOST}/g" /etc/nginx/conf.d/dolphinscheduler.conf
|
|
||||||
sed -i "s/FRONTEND_API_SERVER_PORT/${FRONTEND_API_SERVER_PORT}/g" /etc/nginx/conf.d/dolphinscheduler.conf
|
|
||||||
```
|
```
|
||||||
|
|
|
||||||
0
docker/build/conf/dolphinscheduler/env/dolphinscheduler_env.sh
vendored
Normal file → Executable file
0
docker/build/conf/dolphinscheduler/env/dolphinscheduler_env.sh
vendored
Normal file → Executable file
|
|
@ -20,14 +20,6 @@
|
||||||
<configuration scan="true" scanPeriod="120 seconds"> <!--debug="true" -->
|
<configuration scan="true" scanPeriod="120 seconds"> <!--debug="true" -->
|
||||||
|
|
||||||
<property name="log.base" value="logs"/>
|
<property name="log.base" value="logs"/>
|
||||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
||||||
<encoder>
|
|
||||||
<pattern>
|
|
||||||
[%level] %date{yyyy-MM-dd HH:mm:ss.SSS} %logger{96}:[%line] - %msg%n
|
|
||||||
</pattern>
|
|
||||||
<charset>UTF-8</charset>
|
|
||||||
</encoder>
|
|
||||||
</appender>
|
|
||||||
|
|
||||||
<appender name="ALERTLOGFILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
<appender name="ALERTLOGFILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||||
<file>${log.base}/dolphinscheduler-alert.log</file>
|
<file>${log.base}/dolphinscheduler-alert.log</file>
|
||||||
|
|
@ -45,7 +37,6 @@
|
||||||
</appender>
|
</appender>
|
||||||
|
|
||||||
<root level="INFO">
|
<root level="INFO">
|
||||||
<appender-ref ref="STDOUT"/>
|
|
||||||
<appender-ref ref="APILOGFILE"/>
|
<appender-ref ref="APILOGFILE"/>
|
||||||
</root>
|
</root>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,14 +20,6 @@
|
||||||
<configuration scan="true" scanPeriod="120 seconds"> <!--debug="true" -->
|
<configuration scan="true" scanPeriod="120 seconds"> <!--debug="true" -->
|
||||||
|
|
||||||
<property name="log.base" value="logs"/>
|
<property name="log.base" value="logs"/>
|
||||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
||||||
<encoder>
|
|
||||||
<pattern>
|
|
||||||
[%level] %date{yyyy-MM-dd HH:mm:ss.SSS} %logger{96}:[%line] - %msg%n
|
|
||||||
</pattern>
|
|
||||||
<charset>UTF-8</charset>
|
|
||||||
</encoder>
|
|
||||||
</appender>
|
|
||||||
|
|
||||||
<!-- api server logback config start -->
|
<!-- api server logback config start -->
|
||||||
<appender name="APILOGFILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
<appender name="APILOGFILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||||
|
|
@ -55,7 +47,6 @@
|
||||||
|
|
||||||
|
|
||||||
<root level="INFO">
|
<root level="INFO">
|
||||||
<appender-ref ref="STDOUT"/>
|
|
||||||
<appender-ref ref="APILOGFILE"/>
|
<appender-ref ref="APILOGFILE"/>
|
||||||
</root>
|
</root>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,14 +20,6 @@
|
||||||
<configuration scan="true" scanPeriod="120 seconds"> <!--debug="true" -->
|
<configuration scan="true" scanPeriod="120 seconds"> <!--debug="true" -->
|
||||||
|
|
||||||
<property name="log.base" value="logs"/>
|
<property name="log.base" value="logs"/>
|
||||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
||||||
<encoder>
|
|
||||||
<pattern>
|
|
||||||
[%level] %date{yyyy-MM-dd HH:mm:ss.SSS} %logger{96}:[%line] - %msg%n
|
|
||||||
</pattern>
|
|
||||||
<charset>UTF-8</charset>
|
|
||||||
</encoder>
|
|
||||||
</appender>
|
|
||||||
|
|
||||||
<conversionRule conversionWord="messsage"
|
<conversionRule conversionWord="messsage"
|
||||||
converterClass="org.apache.dolphinscheduler.server.log.SensitiveDataConverter"/>
|
converterClass="org.apache.dolphinscheduler.server.log.SensitiveDataConverter"/>
|
||||||
|
|
@ -74,7 +66,6 @@
|
||||||
<!-- master server logback config end -->
|
<!-- master server logback config end -->
|
||||||
|
|
||||||
<root level="INFO">
|
<root level="INFO">
|
||||||
<appender-ref ref="STDOUT"/>
|
|
||||||
<appender-ref ref="TASKLOGFILE"/>
|
<appender-ref ref="TASKLOGFILE"/>
|
||||||
<appender-ref ref="MASTERLOGFILE"/>
|
<appender-ref ref="MASTERLOGFILE"/>
|
||||||
</root>
|
</root>
|
||||||
|
|
|
||||||
|
|
@ -20,14 +20,6 @@
|
||||||
<configuration scan="true" scanPeriod="120 seconds"> <!--debug="true" -->
|
<configuration scan="true" scanPeriod="120 seconds"> <!--debug="true" -->
|
||||||
|
|
||||||
<property name="log.base" value="logs"/>
|
<property name="log.base" value="logs"/>
|
||||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
||||||
<encoder>
|
|
||||||
<pattern>
|
|
||||||
[%level] %date{yyyy-MM-dd HH:mm:ss.SSS} %logger{96}:[%line] - %msg%n
|
|
||||||
</pattern>
|
|
||||||
<charset>UTF-8</charset>
|
|
||||||
</encoder>
|
|
||||||
</appender>
|
|
||||||
|
|
||||||
<!-- worker server logback config start -->
|
<!-- worker server logback config start -->
|
||||||
<conversionRule conversionWord="messsage"
|
<conversionRule conversionWord="messsage"
|
||||||
|
|
@ -75,7 +67,6 @@
|
||||||
<!-- worker server logback config end -->
|
<!-- worker server logback config end -->
|
||||||
|
|
||||||
<root level="INFO">
|
<root level="INFO">
|
||||||
<appender-ref ref="STDOUT"/>
|
|
||||||
<appender-ref ref="TASKLOGFILE"/>
|
<appender-ref ref="TASKLOGFILE"/>
|
||||||
<appender-ref ref="WORKERLOGFILE"/>
|
<appender-ref ref="WORKERLOGFILE"/>
|
||||||
</root>
|
</root>
|
||||||
|
|
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
#
|
|
||||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
||||||
# contributor license agreements. See the NOTICE file distributed with
|
|
||||||
# this work for additional information regarding copyright ownership.
|
|
||||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
||||||
# (the "License"); you may not use this file except in compliance with
|
|
||||||
# the License. You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
#
|
|
||||||
|
|
||||||
server {
|
|
||||||
listen 8888;
|
|
||||||
server_name localhost;
|
|
||||||
#charset koi8-r;
|
|
||||||
#access_log /var/log/nginx/host.access.log main;
|
|
||||||
location / {
|
|
||||||
root /opt/dolphinscheduler/ui;
|
|
||||||
index index.html index.html;
|
|
||||||
}
|
|
||||||
location /dolphinscheduler {
|
|
||||||
proxy_pass http://FRONTEND_API_SERVER_HOST:FRONTEND_API_SERVER_PORT;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header x_real_ipP $remote_addr;
|
|
||||||
proxy_set_header remote_addr $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_connect_timeout 300s;
|
|
||||||
proxy_read_timeout 300s;
|
|
||||||
proxy_send_timeout 300s;
|
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
|
||||||
proxy_set_header Connection "upgrade";
|
|
||||||
}
|
|
||||||
#error_page 404 /404.html;
|
|
||||||
# redirect server error pages to the static page /50x.html
|
|
||||||
#
|
|
||||||
error_page 500 502 503 504 /50x.html;
|
|
||||||
location = /50x.html {
|
|
||||||
root /usr/share/nginx/html;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -47,7 +47,12 @@ echo -e "mv $(pwd)/dolphinscheduler-dist/target/apache-dolphinscheduler-incubati
|
||||||
mv $(pwd)/dolphinscheduler-dist/target/apache-dolphinscheduler-incubating-${VERSION}-dolphinscheduler-bin.tar.gz $(pwd)/docker/build/
|
mv $(pwd)/dolphinscheduler-dist/target/apache-dolphinscheduler-incubating-${VERSION}-dolphinscheduler-bin.tar.gz $(pwd)/docker/build/
|
||||||
|
|
||||||
# docker build
|
# docker build
|
||||||
echo -e "docker build --build-arg VERSION=${VERSION} -t $DOCKER_REPO:${VERSION} $(pwd)/docker/build/\n"
|
BUILD_COMMAND="docker build --build-arg VERSION=${VERSION} -t $DOCKER_REPO:${VERSION} $(pwd)/docker/build/"
|
||||||
sudo docker build --build-arg VERSION=${VERSION} -t $DOCKER_REPO:${VERSION} $(pwd)/docker/build/
|
echo -e "$BUILD_COMMAND\n"
|
||||||
|
if (docker info 2> /dev/null | grep -i "ERROR"); then
|
||||||
|
sudo $BUILD_COMMAND
|
||||||
|
else
|
||||||
|
$BUILD_COMMAND
|
||||||
|
fi
|
||||||
|
|
||||||
echo "------ dolphinscheduler end - build -------"
|
echo "------ dolphinscheduler end - build -------"
|
||||||
|
|
|
||||||
|
|
@ -95,12 +95,6 @@ export ENTERPRISE_WECHAT_SECRET=${ENTERPRISE_WECHAT_SECRET:-""}
|
||||||
export ENTERPRISE_WECHAT_AGENT_ID=${ENTERPRISE_WECHAT_AGENT_ID:-""}
|
export ENTERPRISE_WECHAT_AGENT_ID=${ENTERPRISE_WECHAT_AGENT_ID:-""}
|
||||||
export ENTERPRISE_WECHAT_USERS=${ENTERPRISE_WECHAT_USERS:-""}
|
export ENTERPRISE_WECHAT_USERS=${ENTERPRISE_WECHAT_USERS:-""}
|
||||||
|
|
||||||
#============================================================================
|
|
||||||
# Frontend
|
|
||||||
#============================================================================
|
|
||||||
export FRONTEND_API_SERVER_HOST=${FRONTEND_API_SERVER_HOST:-"127.0.0.1"}
|
|
||||||
export FRONTEND_API_SERVER_PORT=${FRONTEND_API_SERVER_PORT:-"12345"}
|
|
||||||
|
|
||||||
echo "generate app config"
|
echo "generate app config"
|
||||||
ls ${DOLPHINSCHEDULER_HOME}/conf/ | grep ".tpl" | while read line; do
|
ls ${DOLPHINSCHEDULER_HOME}/conf/ | grep ".tpl" | while read line; do
|
||||||
eval "cat << EOF
|
eval "cat << EOF
|
||||||
|
|
@ -108,7 +102,3 @@ $(cat ${DOLPHINSCHEDULER_HOME}/conf/${line})
|
||||||
EOF
|
EOF
|
||||||
" > ${DOLPHINSCHEDULER_HOME}/conf/${line%.*}
|
" > ${DOLPHINSCHEDULER_HOME}/conf/${line%.*}
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "generate nginx config"
|
|
||||||
sed -i "s/FRONTEND_API_SERVER_HOST/${FRONTEND_API_SERVER_HOST}/g" /etc/nginx/conf.d/dolphinscheduler.conf
|
|
||||||
sed -i "s/FRONTEND_API_SERVER_PORT/${FRONTEND_API_SERVER_PORT}/g" /etc/nginx/conf.d/dolphinscheduler.conf
|
|
||||||
|
|
@ -43,7 +43,7 @@ initDatabase() {
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
v=$(sudo -u postgres PGPASSWORD=${DATABASE_PASSWORD} psql -h ${DATABASE_HOST} -p ${DATABASE_PORT} -U ${DATABASE_USERNAME} -d ${DATABASE_DATABASE} -tAc "select 1")
|
v=$(PGPASSWORD=${DATABASE_PASSWORD} psql -h ${DATABASE_HOST} -p ${DATABASE_PORT} -U ${DATABASE_USERNAME} -d ${DATABASE_DATABASE} -tAc "select 1")
|
||||||
if [ "$(echo ${v} | grep 'FATAL' | wc -l)" -eq 1 ]; then
|
if [ "$(echo ${v} | grep 'FATAL' | wc -l)" -eq 1 ]; then
|
||||||
echo "Error: Can't connect to database...${v}"
|
echo "Error: Can't connect to database...${v}"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
@ -70,12 +70,6 @@ initZK() {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
# start nginx
|
|
||||||
initNginx() {
|
|
||||||
echo "start nginx"
|
|
||||||
nginx &
|
|
||||||
}
|
|
||||||
|
|
||||||
# start master-server
|
# start master-server
|
||||||
initMasterServer() {
|
initMasterServer() {
|
||||||
echo "start master-server"
|
echo "start master-server"
|
||||||
|
|
@ -115,19 +109,17 @@ initAlertServer() {
|
||||||
printUsage() {
|
printUsage() {
|
||||||
echo -e "Dolphin Scheduler is a distributed and easy-to-expand visual DAG workflow scheduling system,"
|
echo -e "Dolphin Scheduler is a distributed and easy-to-expand visual DAG workflow scheduling system,"
|
||||||
echo -e "dedicated to solving the complex dependencies in data processing, making the scheduling system out of the box for data processing.\n"
|
echo -e "dedicated to solving the complex dependencies in data processing, making the scheduling system out of the box for data processing.\n"
|
||||||
echo -e "Usage: [ all | master-server | worker-server | api-server | alert-server | frontend ]\n"
|
echo -e "Usage: [ all | master-server | worker-server | api-server | alert-server ]\n"
|
||||||
printf "%-13s: %s\n" "all" "Run master-server, worker-server, api-server, alert-server and frontend."
|
printf "%-13s: %s\n" "all" "Run master-server, worker-server, api-server and alert-server"
|
||||||
printf "%-13s: %s\n" "master-server" "MasterServer is mainly responsible for DAG task split, task submission monitoring."
|
printf "%-13s: %s\n" "master-server" "MasterServer is mainly responsible for DAG task split, task submission monitoring."
|
||||||
printf "%-13s: %s\n" "worker-server" "WorkerServer is mainly responsible for task execution and providing log services.."
|
printf "%-13s: %s\n" "worker-server" "WorkerServer is mainly responsible for task execution and providing log services."
|
||||||
printf "%-13s: %s\n" "api-server" "ApiServer is mainly responsible for processing requests from the front-end UI layer."
|
printf "%-13s: %s\n" "api-server" "ApiServer is mainly responsible for processing requests and providing the front-end UI layer."
|
||||||
printf "%-13s: %s\n" "alert-server" "AlertServer mainly include Alarms."
|
printf "%-13s: %s\n" "alert-server" "AlertServer mainly include Alarms."
|
||||||
printf "%-13s: %s\n" "frontend" "Frontend mainly provides various visual operation interfaces of the system."
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# init config file
|
# init config file
|
||||||
source /root/startup-init-conf.sh
|
source /root/startup-init-conf.sh
|
||||||
|
|
||||||
LOGFILE=/var/log/nginx/access.log
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
(all)
|
(all)
|
||||||
initZK
|
initZK
|
||||||
|
|
@ -137,8 +129,7 @@ case "$1" in
|
||||||
initApiServer
|
initApiServer
|
||||||
initAlertServer
|
initAlertServer
|
||||||
initLoggerServer
|
initLoggerServer
|
||||||
initNginx
|
LOGFILE=${DOLPHINSCHEDULER_LOGS}/dolphinscheduler-api-server.log
|
||||||
LOGFILE=/var/log/nginx/access.log
|
|
||||||
;;
|
;;
|
||||||
(master-server)
|
(master-server)
|
||||||
initZK
|
initZK
|
||||||
|
|
@ -164,10 +155,6 @@ case "$1" in
|
||||||
initAlertServer
|
initAlertServer
|
||||||
LOGFILE=${DOLPHINSCHEDULER_LOGS}/dolphinscheduler-alert.log
|
LOGFILE=${DOLPHINSCHEDULER_LOGS}/dolphinscheduler-alert.log
|
||||||
;;
|
;;
|
||||||
(frontend)
|
|
||||||
initNginx
|
|
||||||
LOGFILE=/var/log/nginx/access.log
|
|
||||||
;;
|
|
||||||
(help)
|
(help)
|
||||||
printUsage
|
printUsage
|
||||||
exit 1
|
exit 1
|
||||||
|
|
@ -183,4 +170,3 @@ mkdir -p ${DOLPHINSCHEDULER_LOGS} && mkdir -p /var/log/nginx/ && cat /dev/null >
|
||||||
|
|
||||||
echo "tail begin"
|
echo "tail begin"
|
||||||
exec bash -c "tail -n 1 -f ${LOGFILE}"
|
exec bash -c "tail -n 1 -f ${LOGFILE}"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ else
|
||||||
echo "Server start failed "$server_num
|
echo "Server start failed "$server_num
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
ready=`curl http://127.0.0.1:8888/dolphinscheduler/login -d 'userName=admin&userPassword=dolphinscheduler123' -v | grep "login success" | wc -l`
|
ready=`curl http://127.0.0.1:12345/dolphinscheduler/login -d 'userName=admin&userPassword=dolphinscheduler123' -v | grep "login success" | wc -l`
|
||||||
if [ $ready -eq 1 ]
|
if [ $ready -eq 1 ]
|
||||||
then
|
then
|
||||||
echo "Servers is ready"
|
echo "Servers is ready"
|
||||||
|
|
|
||||||
|
|
@ -81,29 +81,6 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- dolphinscheduler
|
- dolphinscheduler
|
||||||
|
|
||||||
dolphinscheduler-frontend:
|
|
||||||
image: apache/dolphinscheduler:latest
|
|
||||||
container_name: dolphinscheduler-frontend
|
|
||||||
command: ["frontend"]
|
|
||||||
ports:
|
|
||||||
- 8888:8888
|
|
||||||
environment:
|
|
||||||
TZ: Asia/Shanghai
|
|
||||||
FRONTEND_API_SERVER_HOST: dolphinscheduler-api
|
|
||||||
FRONTEND_API_SERVER_PORT: 12345
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "nc", "-z", "localhost", "8888"]
|
|
||||||
interval: 30s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 3
|
|
||||||
start_period: 30s
|
|
||||||
depends_on:
|
|
||||||
- dolphinscheduler-api
|
|
||||||
volumes:
|
|
||||||
- dolphinscheduler-logs:/var/log/nginx
|
|
||||||
networks:
|
|
||||||
- dolphinscheduler
|
|
||||||
|
|
||||||
dolphinscheduler-alert:
|
dolphinscheduler-alert:
|
||||||
image: apache/dolphinscheduler:latest
|
image: apache/dolphinscheduler:latest
|
||||||
container_name: dolphinscheduler-alert
|
container_name: dolphinscheduler-alert
|
||||||
|
|
@ -209,7 +186,7 @@ services:
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 3
|
retries: 3
|
||||||
start_period: 30s
|
start_period: 30s
|
||||||
depends_on:
|
depends_on:
|
||||||
- dolphinscheduler-postgresql
|
- dolphinscheduler-postgresql
|
||||||
- dolphinscheduler-zookeeper
|
- dolphinscheduler-zookeeper
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,7 @@ services:
|
||||||
POSTGRESQL_USERNAME: root
|
POSTGRESQL_USERNAME: root
|
||||||
POSTGRESQL_PASSWORD: root
|
POSTGRESQL_PASSWORD: root
|
||||||
POSTGRESQL_DATABASE: dolphinscheduler
|
POSTGRESQL_DATABASE: dolphinscheduler
|
||||||
|
POSTGRESQL_REPLICATION_PASSWORD: dolphinscheduler@123
|
||||||
volumes:
|
volumes:
|
||||||
- dolphinscheduler-postgresql:/bitnami/postgresql
|
- dolphinscheduler-postgresql:/bitnami/postgresql
|
||||||
networks:
|
networks:
|
||||||
|
|
@ -64,37 +65,15 @@ services:
|
||||||
DATABASE_PASSWORD: root
|
DATABASE_PASSWORD: root
|
||||||
DATABASE_DATABASE: dolphinscheduler
|
DATABASE_DATABASE: dolphinscheduler
|
||||||
ZOOKEEPER_QUORUM: dolphinscheduler-zookeeper:2181
|
ZOOKEEPER_QUORUM: dolphinscheduler-zookeeper:2181
|
||||||
|
ZOOKEEPER_ROOT: /dolphinscheduler
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "/root/checkpoint.sh", "ApiApplicationServer"]
|
test: ["CMD", "/root/checkpoint.sh", "ApiApplicationServer"]
|
||||||
interval: 30
|
interval: 30s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 3
|
retries: 3
|
||||||
start_period: 30s
|
start_period: 30s
|
||||||
volumes:
|
volumes:
|
||||||
- dolphinscheduler-logs:/opt/dolphinscheduler/logs
|
- dolphinscheduler-logs:/opt/dolphinscheduler/logs
|
||||||
networks:
|
|
||||||
- dolphinscheduler
|
|
||||||
deploy:
|
|
||||||
mode: replicated
|
|
||||||
replicas: 1
|
|
||||||
|
|
||||||
dolphinscheduler-frontend:
|
|
||||||
image: apache/dolphinscheduler:latest
|
|
||||||
command: ["frontend"]
|
|
||||||
ports:
|
|
||||||
- 8888:8888
|
|
||||||
environment:
|
|
||||||
TZ: Asia/Shanghai
|
|
||||||
FRONTEND_API_SERVER_HOST: dolphinscheduler-api
|
|
||||||
FRONTEND_API_SERVER_PORT: 12345
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "nc", "-z", "localhost", "8888"]
|
|
||||||
interval: 30
|
|
||||||
timeout: 5s
|
|
||||||
retries: 3
|
|
||||||
start_period: 30s
|
|
||||||
volumes:
|
|
||||||
- dolphinscheduler-logs:/var/log/nginx
|
|
||||||
networks:
|
networks:
|
||||||
- dolphinscheduler
|
- dolphinscheduler
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -127,13 +106,13 @@ services:
|
||||||
DATABASE_DATABASE: dolphinscheduler
|
DATABASE_DATABASE: dolphinscheduler
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "/root/checkpoint.sh", "AlertServer"]
|
test: ["CMD", "/root/checkpoint.sh", "AlertServer"]
|
||||||
interval: 30
|
interval: 30s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 3
|
retries: 3
|
||||||
start_period: 30s
|
start_period: 30s
|
||||||
volumes:
|
volumes:
|
||||||
- dolphinscheduler-logs:/opt/dolphinscheduler/logs
|
- dolphinscheduler-logs:/opt/dolphinscheduler/logs
|
||||||
networks:
|
networks:
|
||||||
- dolphinscheduler
|
- dolphinscheduler
|
||||||
deploy:
|
deploy:
|
||||||
mode: replicated
|
mode: replicated
|
||||||
|
|
@ -142,9 +121,9 @@ services:
|
||||||
dolphinscheduler-master:
|
dolphinscheduler-master:
|
||||||
image: apache/dolphinscheduler:latest
|
image: apache/dolphinscheduler:latest
|
||||||
command: ["master-server"]
|
command: ["master-server"]
|
||||||
ports:
|
ports:
|
||||||
- 5678:5678
|
- 5678:5678
|
||||||
environment:
|
environment:
|
||||||
TZ: Asia/Shanghai
|
TZ: Asia/Shanghai
|
||||||
MASTER_EXEC_THREADS: "100"
|
MASTER_EXEC_THREADS: "100"
|
||||||
MASTER_EXEC_TASK_NUM: "20"
|
MASTER_EXEC_TASK_NUM: "20"
|
||||||
|
|
@ -161,7 +140,7 @@ services:
|
||||||
ZOOKEEPER_QUORUM: dolphinscheduler-zookeeper:2181
|
ZOOKEEPER_QUORUM: dolphinscheduler-zookeeper:2181
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "/root/checkpoint.sh", "MasterServer"]
|
test: ["CMD", "/root/checkpoint.sh", "MasterServer"]
|
||||||
interval: 30
|
interval: 30s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 3
|
retries: 3
|
||||||
start_period: 30s
|
start_period: 30s
|
||||||
|
|
@ -176,10 +155,10 @@ services:
|
||||||
dolphinscheduler-worker:
|
dolphinscheduler-worker:
|
||||||
image: apache/dolphinscheduler:latest
|
image: apache/dolphinscheduler:latest
|
||||||
command: ["worker-server"]
|
command: ["worker-server"]
|
||||||
ports:
|
ports:
|
||||||
- 1234:1234
|
- 1234:1234
|
||||||
- 50051:50051
|
- 50051:50051
|
||||||
environment:
|
environment:
|
||||||
TZ: Asia/Shanghai
|
TZ: Asia/Shanghai
|
||||||
WORKER_EXEC_THREADS: "100"
|
WORKER_EXEC_THREADS: "100"
|
||||||
WORKER_HEARTBEAT_INTERVAL: "10"
|
WORKER_HEARTBEAT_INTERVAL: "10"
|
||||||
|
|
@ -196,7 +175,7 @@ services:
|
||||||
ZOOKEEPER_QUORUM: dolphinscheduler-zookeeper:2181
|
ZOOKEEPER_QUORUM: dolphinscheduler-zookeeper:2181
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "/root/checkpoint.sh", "WorkerServer"]
|
test: ["CMD", "/root/checkpoint.sh", "WorkerServer"]
|
||||||
interval: 30
|
interval: 30s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 3
|
retries: 3
|
||||||
start_period: 30s
|
start_period: 30s
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
############### project ##############
|
############### project ##############
|
||||||
# login url
|
# login url
|
||||||
LOGIN_URL=http://127.0.0.1:8888/dolphinscheduler/
|
LOGIN_URL=http://127.0.0.1:12345/dolphinscheduler/
|
||||||
#login username
|
#login username
|
||||||
USER_NAME=admin
|
USER_NAME=admin
|
||||||
#login password
|
#login password
|
||||||
|
|
|
||||||
|
|
@ -55,6 +55,12 @@ fi
|
||||||
log=$DOLPHINSCHEDULER_LOG_DIR/dolphinscheduler-$command-$HOSTNAME.out
|
log=$DOLPHINSCHEDULER_LOG_DIR/dolphinscheduler-$command-$HOSTNAME.out
|
||||||
pid=$DOLPHINSCHEDULER_PID_DIR/dolphinscheduler-$command.pid
|
pid=$DOLPHINSCHEDULER_PID_DIR/dolphinscheduler-$command.pid
|
||||||
|
|
||||||
|
# print logs to /dev/null in docker
|
||||||
|
if [ "$DOCKER" = "true" ]; then
|
||||||
|
echo "start in docker"
|
||||||
|
log=/dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
cd $DOLPHINSCHEDULER_HOME
|
cd $DOLPHINSCHEDULER_HOME
|
||||||
|
|
||||||
if [ "$command" = "api-server" ]; then
|
if [ "$command" = "api-server" ]; then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue