yevsh
yevsh
What do you mean? entrypoint.sh that comes with the operator image should be same as entrypoint.sh that comes in the base image of the spark application which is Apache spark...
operator image is: spark-operator:v1beta2-1.3.3-3.1.1 The spark application image that I am submitting is ``` FROM ...spark:v3.1.1. (apache) .... ENTRYPOINT [ "/opt/entrypoint.sh" ] ```
I verified that entrypoint.sh are same
log of driver pod? ``` ++ id -u + myuid=1001420000 ++ id -g + mygid=0 + set +e ++ getent passwd 1001420000 + uidentry= + set -e + '[' -z...
@dcoliversun any ideas?
permissions on the jars in ///opt/app/jars? I explicitly set on all jars -rwxr-xr-x is this correct definition? maybe not loading spring jars ``` spec: deps: jars: - local:///opt/app/jars/* ``` with...
I think it might be something with operator, as i just tried to use image with spark 2.4.5 that works with operator 2.4.5 and it failed on same. **Confirmed:** I...
the problem with the example that it's not using ``` deps: jars: - local:///opt/app/jars/* ``` Again, i took yaml with 2.4.5 image lunched it in cluster with operator 2.4.5 and...
now I tried the image with spark 3.1.1 in cluster with operator 2.4.5 and also works. Dont see anything special in describes of both operators But you are saying its...
also went to cluster with 3.1.1 operator and changed image of operator to 2.4.5 - and it worked. switched back to 3.1.1 image snd stopped working, print in log of...