sshiv012 commented on PR #1826:
URL: https://github.com/apache/sedona/pull/1826#issuecomment-2705722652
Hello @jiayuasu, ahh there is a version mismatch in the zeppelin
configuration for spark's sedona dependency. I have added the below command
(finds the jar file name from the directory and replaces it in the config json
file) to ensure this config is over written during build.
# Extract version from the actual JAR file and update interpreter.json
RUN jar_name=$(find "${SPARK_HOME}/jars/" -name "sedona-spark-shaded-*.jar"
| head -n 1) && \
sed -i "s|\(\"groupArtifactVersion\": \).*|\1\"${jar_name}\",|"
"${ZEPPELIN_HOME}/conf/interpreter.json"
Can I raise a separate pull request? Also should I push it to docker hub?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]