We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to up a worker and its master will be mesos-master which I have set up. however ,when I run docker-compose up ,the console shows this
docker-compose up
worker_1 | Exception in thread "main" org.apache.spark.SparkException: Invalid master URL: spark://mesos://zk://zk1:2181 ``` this is docker-compose.yml ```worker: image: gettyimages/spark:2.2.0-hadoop-2.7 command: bin/spark-class org.apache.spark.deploy.worker.Worker mesos://zk://zk1:2181,zk2:2181,zk3:2181/mesos hostname: worker environment: SPARK_CONF_DIR: /conf SPARK_WORKER_CORES: 2 SPARK_WORKER_MEMORY: 1g SPARK_WORKER_PORT: 8881 SPARK_WORKER_WEBUI_PORT: 8081 SPARK_PUBLIC_DNS: localhost expose: - 7012 - 7013 - 7014 - 7015 - 7016 - 8881 ports: - 8081:8081 volumes: - ./conf/worker:/conf - ./data:/tmp/data```
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I want to up a worker and its master will be mesos-master which I have set up.
however ,when I run
docker-compose up
,the console shows thisThe text was updated successfully, but these errors were encountered: