Untitled
unknown
plain_text
4 years ago
1.4 kB
6
Indexable
version: '3' services: spark-master: image: docker.io/bitnami/spark:3.0.1 environment: - SPARK_MODE=master - SPARK_RPC_AUTHENTICATION_ENABLED=no - SPARK_RPC_ENCRYPTION_ENABLED=no - SPARK_LOCAL_STORAGE_ENCRYPTION_ENABLED=no - SPARK_SSL_ENABLED=no ports: - '8080:8080' - '7077:7077' spark-worker-1: image: docker.io/bitnami/spark:3.0.1 environment: - SPARK_MODE=worker - SPARK_MASTER_URL=spark://spark-master:7077 - SPARK_WORKER_MEMORY=1G - SPARK_WORKER_CORES=1 - SPARK_RPC_AUTHENTICATION_ENABLED=no - SPARK_RPC_ENCRYPTION_ENABLED=no - SPARK_LOCAL_STORAGE_ENCRYPTION_ENABLED=no - SPARK_SSL_ENABLED=no volumes: - data:/user-data ports: - '8081:8081' spark-worker-2: image: docker.io/bitnami/spark:3.0.1 environment: - SPARK_MODE=worker - SPARK_MASTER_URL=spark://spark-master:7077 - SPARK_WORKER_MEMORY=1G - SPARK_WORKER_CORES=1 - SPARK_RPC_AUTHENTICATION_ENABLED=no - SPARK_RPC_ENCRYPTION_ENABLED=no - SPARK_LOCAL_STORAGE_ENCRYPTION_ENABLED=no - SPARK_SSL_ENABLED=no volumes: - data:/user-data ports: - '8082:8081' python: build: ./ ports: - '8888:8888' volumes: - data:/user-data volumes: data: driver: local driver_opts: type: 'none' o: 'bind' device: './data'
Editor is loading...