You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
202 lines
5.7 KiB
202 lines
5.7 KiB
# 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. |
|
|
|
version: "3.4" |
|
|
|
services: |
|
|
|
dolphinscheduler-postgresql: |
|
image: bitnami/postgresql:latest |
|
ports: |
|
- 5432:5432 |
|
environment: |
|
TZ: Asia/Shanghai |
|
POSTGRESQL_USERNAME: root |
|
POSTGRESQL_PASSWORD: root |
|
POSTGRESQL_DATABASE: dolphinscheduler |
|
volumes: |
|
- dolphinscheduler-postgresql:/bitnami/postgresql |
|
networks: |
|
- dolphinscheduler |
|
deploy: |
|
mode: replicated |
|
replicas: 1 |
|
|
|
dolphinscheduler-zookeeper: |
|
image: bitnami/zookeeper:latest |
|
ports: |
|
- 2181:2181 |
|
environment: |
|
TZ: Asia/Shanghai |
|
ALLOW_ANONYMOUS_LOGIN: "yes" |
|
ZOO_4LW_COMMANDS_WHITELIST: srvr,ruok,wchs,cons |
|
volumes: |
|
- dolphinscheduler-zookeeper:/bitnami/zookeeper |
|
networks: |
|
- dolphinscheduler |
|
deploy: |
|
mode: replicated |
|
replicas: 1 |
|
|
|
dolphinscheduler-api: |
|
image: apache/dolphinscheduler:latest |
|
command: api-server |
|
ports: |
|
- 12345:12345 |
|
environment: |
|
TZ: Asia/Shanghai |
|
DATABASE_HOST: dolphinscheduler-postgresql |
|
DATABASE_PORT: 5432 |
|
DATABASE_USERNAME: root |
|
DATABASE_PASSWORD: root |
|
DATABASE_DATABASE: dolphinscheduler |
|
ZOOKEEPER_QUORUM: dolphinscheduler-zookeeper:2181 |
|
RESOURCE_STORAGE_TYPE: HDFS |
|
RESOURCE_UPLOAD_PATH: /dolphinscheduler |
|
FS_DEFAULT_FS: file:/// |
|
healthcheck: |
|
test: ["CMD", "/root/checkpoint.sh", "ApiApplicationServer"] |
|
interval: 30s |
|
timeout: 5s |
|
retries: 3 |
|
start_period: 30s |
|
volumes: |
|
- dolphinscheduler-logs:/opt/dolphinscheduler/logs |
|
networks: |
|
- dolphinscheduler |
|
deploy: |
|
mode: replicated |
|
replicas: 1 |
|
|
|
dolphinscheduler-alert: |
|
image: apache/dolphinscheduler:latest |
|
command: alert-server |
|
ports: |
|
- 50052:50052 |
|
environment: |
|
TZ: Asia/Shanghai |
|
ALERT_PLUGIN_DIR: lib/plugin/alert |
|
DATABASE_HOST: dolphinscheduler-postgresql |
|
DATABASE_PORT: 5432 |
|
DATABASE_USERNAME: root |
|
DATABASE_PASSWORD: root |
|
DATABASE_DATABASE: dolphinscheduler |
|
healthcheck: |
|
test: ["CMD", "/root/checkpoint.sh", "AlertServer"] |
|
interval: 30s |
|
timeout: 5s |
|
retries: 3 |
|
start_period: 30s |
|
volumes: |
|
- dolphinscheduler-logs:/opt/dolphinscheduler/logs |
|
networks: |
|
- dolphinscheduler |
|
deploy: |
|
mode: replicated |
|
replicas: 1 |
|
|
|
dolphinscheduler-master: |
|
image: apache/dolphinscheduler:latest |
|
command: master-server |
|
ports: |
|
- 5678:5678 |
|
environment: |
|
TZ: Asia/Shanghai |
|
MASTER_EXEC_THREADS: "100" |
|
MASTER_EXEC_TASK_NUM: "20" |
|
MASTER_HEARTBEAT_INTERVAL: "10" |
|
MASTER_TASK_COMMIT_RETRYTIMES: "5" |
|
MASTER_TASK_COMMIT_INTERVAL: "1000" |
|
MASTER_MAX_CPULOAD_AVG: "100" |
|
MASTER_RESERVED_MEMORY: "0.1" |
|
DATABASE_HOST: dolphinscheduler-postgresql |
|
DATABASE_PORT: 5432 |
|
DATABASE_USERNAME: root |
|
DATABASE_PASSWORD: root |
|
DATABASE_DATABASE: dolphinscheduler |
|
ZOOKEEPER_QUORUM: dolphinscheduler-zookeeper:2181 |
|
healthcheck: |
|
test: ["CMD", "/root/checkpoint.sh", "MasterServer"] |
|
interval: 30s |
|
timeout: 5s |
|
retries: 3 |
|
start_period: 30s |
|
volumes: |
|
- dolphinscheduler-logs:/opt/dolphinscheduler/logs |
|
networks: |
|
- dolphinscheduler |
|
deploy: |
|
mode: replicated |
|
replicas: 1 |
|
|
|
dolphinscheduler-worker: |
|
image: apache/dolphinscheduler:latest |
|
command: worker-server |
|
ports: |
|
- 1234:1234 |
|
- 50051:50051 |
|
environment: |
|
TZ: Asia/Shanghai |
|
WORKER_EXEC_THREADS: "100" |
|
WORKER_HEARTBEAT_INTERVAL: "10" |
|
WORKER_MAX_CPULOAD_AVG: "100" |
|
WORKER_RESERVED_MEMORY: "0.1" |
|
WORKER_GROUPS: "default" |
|
WORKER_WEIGHT: "100" |
|
HADOOP_HOME: "/opt/soft/hadoop" |
|
HADOOP_CONF_DIR: "/opt/soft/hadoop/etc/hadoop" |
|
SPARK_HOME1: "/opt/soft/spark1" |
|
SPARK_HOME2: "/opt/soft/spark2" |
|
PYTHON_HOME: "/usr/bin/python" |
|
JAVA_HOME: "/usr/lib/jvm/java-1.8-openjdk" |
|
HIVE_HOME: "/opt/soft/hive" |
|
FLINK_HOME: "/opt/soft/flink" |
|
DATAX_HOME: "/opt/soft/datax/bin/datax.py" |
|
DOLPHINSCHEDULER_DATA_BASEDIR_PATH: /tmp/dolphinscheduler |
|
ALERT_LISTEN_HOST: dolphinscheduler-alert |
|
DATABASE_HOST: dolphinscheduler-postgresql |
|
DATABASE_PORT: 5432 |
|
DATABASE_USERNAME: root |
|
DATABASE_PASSWORD: root |
|
DATABASE_DATABASE: dolphinscheduler |
|
ZOOKEEPER_QUORUM: dolphinscheduler-zookeeper:2181 |
|
RESOURCE_STORAGE_TYPE: HDFS |
|
RESOURCE_UPLOAD_PATH: /dolphinscheduler |
|
FS_DEFAULT_FS: file:/// |
|
healthcheck: |
|
test: ["CMD", "/root/checkpoint.sh", "WorkerServer"] |
|
interval: 30s |
|
timeout: 5s |
|
retries: 3 |
|
start_period: 30s |
|
volumes: |
|
- dolphinscheduler-worker-data:/tmp/dolphinscheduler |
|
- dolphinscheduler-logs:/opt/dolphinscheduler/logs |
|
networks: |
|
- dolphinscheduler |
|
deploy: |
|
mode: replicated |
|
replicas: 1 |
|
|
|
networks: |
|
dolphinscheduler: |
|
driver: overlay |
|
|
|
volumes: |
|
dolphinscheduler-postgresql: |
|
dolphinscheduler-zookeeper: |
|
dolphinscheduler-worker-data: |
|
dolphinscheduler-logs: |