anyone knows of a spark 3.3.2 jdk11 image that u c...
# kotlin-spark
e
anyone knows of a spark 3.3.2 jdk11 image that u can recommend?
👀 1
t
@Eric Rodriguez Did https://github.com/apache/spark-docker/tree/master/3.3.2 end up working for you? I'm trying to get a Docker container running with Spark that I can use to process data via kotlin-spark in a Ktor app, but I'm having trouble getting the Docker container to stay up. It exits immediately with code 1 after starting it with
docker compose up
.
e
I began trying but didn't finished, need to try again, basically u need to add the necessary commands, i.e.:
Copy code
command: ["master"]
and
Copy code
command: ["worker", "<spark://master:7077>"]
etc.
thank you color 1
oh wait, actually ...
this image is designed for k8s, so it looks for pod name and other k8s psecific things
😲 1
I may switch to minikube instead of docker-compose ...
t
Thanks! I'll give that a try too.
e
e
Thanks, I had practically donde the same as i this post but had an error in my `start-spark.sh`script, could solve it with this
👍 1