mirror of https://github.com/ZhongFuCheng3y/austin
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.
56 lines
1.4 KiB
56 lines
1.4 KiB
version: "3"
|
|
|
|
services:
|
|
namenode:
|
|
image: bde2020/hadoop-namenode:2.0.0-hadoop2.7.4-java8
|
|
volumes:
|
|
- namenode:/hadoop/dfs/name
|
|
environment:
|
|
- CLUSTER_NAME=test
|
|
env_file:
|
|
- ./hadoop-hive.env
|
|
ports:
|
|
- "50070:50070"
|
|
- "9000:9000"
|
|
- "8020:8020"
|
|
datanode:
|
|
image: bde2020/hadoop-datanode:2.0.0-hadoop2.7.4-java8
|
|
volumes:
|
|
- datanode:/hadoop/dfs/data
|
|
env_file:
|
|
- ./hadoop-hive.env
|
|
environment:
|
|
SERVICE_PRECONDITION: "namenode:50070"
|
|
ports:
|
|
- "50075:50075"
|
|
- "50010:50010"
|
|
- "50020:50020"
|
|
hive-server:
|
|
image: bde2020/hive:2.3.2-postgresql-metastore
|
|
env_file:
|
|
- ./hadoop-hive.env
|
|
environment:
|
|
HIVE_CORE_CONF_javax_jdo_option_ConnectionURL: "jdbc:postgresql://hive-metastore/metastore"
|
|
SERVICE_PRECONDITION: "hive-metastore:9083"
|
|
ports:
|
|
- "10000:10000"
|
|
hive-metastore:
|
|
image: bde2020/hive:2.3.2-postgresql-metastore
|
|
env_file:
|
|
- ./hadoop-hive.env
|
|
command: /opt/hive/bin/hive --service metastore
|
|
environment:
|
|
SERVICE_PRECONDITION: "namenode:50070 datanode:50075 hive-metastore-postgresql:5432"
|
|
ports:
|
|
- "9083:9083"
|
|
hive-metastore-postgresql:
|
|
image: bde2020/hive-metastore-postgresql:2.3.0
|
|
ports:
|
|
- "5432:5432"
|
|
presto-coordinator:
|
|
image: shawnzhu/prestodb:0.181
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
namenode:
|
|
datanode: |