Last active
September 18, 2023 16:23
-
-
Save kmatt/56f2e188dc675402c30ddf8666177204 to your computer and use it in GitHub Desktop.
Spark Delta Jars
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Thrift is not finding Delta jars in Ivy2 cache, even when specified in spark-defaults.conf (spark.sql.catalog.spark_catalog) ? | |
# Probably a bad solution... | |
wget https://repo1.maven.org/maven2/io/delta/delta-core_2.12/2.4.0/delta-core_2.12-2.4.0.jar && \ | |
mv delta-core_2.12-2.4.0.jar jars/ | |
wget https://repo1.maven.org/maven2/io/delta/delta-storage/2.4.0/delta-storage-2.4.0.jar && \ | |
mv delta-storage-2.4.0.jar jars/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment