Created
December 29, 2021 23:49
-
-
Save sairamkrish/ee61ba52a4d54dd53e0e4de26d1188cb to your computer and use it in GitHub Desktop.
Trino-Superset demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.9" | |
services: | |
mariadb: | |
hostname: mariadb | |
image: mariadb:10.7.1 | |
container_name: mariadb | |
ports: | |
- 3306:3306 | |
volumes: | |
- ./mariadb-data:/var/lib/mysql | |
environment: | |
MYSQL_ROOT_PASSWORD: admin | |
MYSQL_USER: admin | |
MYSQL_PASSWORD: admin | |
MYSQL_DATABASE: metastore_db | |
hive-metastore: | |
hostname: hive-metastore | |
container_name: hive-metastore | |
image: 'bitsondatadev/hive-metastore:latest' | |
ports: | |
- '9083:9083' # Metastore Thrift | |
volumes: | |
- ./hive/conf/metastore-site.xml:/opt/apache-hive-metastore-3.0.0-bin/conf/metastore-site.xml:ro | |
environment: | |
METASTORE_DB_HOSTNAME: mariadb | |
depends_on: | |
- mariadb | |
trino-coordinator: | |
image: "trinodb/trino:367" | |
container_name: trino | |
ports: | |
- '8080:8080' | |
volumes: | |
- ./trino/coordinator/etc:/etc/trino:ro | |
depends_on: | |
- hive-metastore | |
minio: | |
hostname: minio | |
image: 'minio/minio:RELEASE.2021-12-29T06-49-06Z' | |
container_name: minio | |
ports: | |
- '9595:9000' # API | |
- '38000:38000' # console | |
volumes: | |
- ./minio-data:/data | |
environment: | |
MINIO_ROOT_USER: minio_access_key | |
MINIO_ROOT_PASSWORD: minio_secret_key | |
command: server /data --console-address ":38000" | |
superset: | |
build: ./superset | |
ports: | |
- "8088:8088" | |
volumes: | |
- ./superset-data:/app/superset_home |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment