Install on Databricks
Community edition (free-tier)¶
You just need to install the Sedona jars and Sedona Python on Databricks using Databricks default web UI. Then everything will work.
Advanced editions¶
We recommend Databricks 10.x+.
- Sedona 1.0.1 & 1.1.0 is compiled against Spark 3.1 (~ Databricks DBR 9 LTS, DBR 7 is Spark 3.0)
- Sedona 1.1.1, 1.2.0 are compiled against Spark 3.2 (~ DBR 10 & 11)
- Sedona 1.2.1, 1.3.1, 1.4.0 are complied against Spark 3.3
- 1.4.1, 1.5.0 are complied against Spark 3.3, 3.4, 3.5
In Spark 3.2,
org.apache.spark.sql.catalyst.expressions.Generator
class added a fieldnodePatterns
. Any SQL functions that rely on Generator class may have issues if compiled for a runtime with a differing spark version. For Sedona, those functions are: * ST_MakeValid * ST_SubDivideExplode
Note
If you are using Spark 3.4+ and Scala 2.12, please use sedona-spark-shaded-3.4_2.12
. Please pay attention to the Spark version postfix and Scala version postfix. Sedona is not able to support Databricks photon acceleration
. Sedona requires Spark internal APIs to inject many optimization strategies, which is not accessible in Photon
.
Install Sedona from the web UI (not recommended)¶
This method cannot achieve the best performance of Sedona and does not work for pure SQL environment.
Install libraries¶
1) From the Libraries tab install from Maven Coordinates
org.apache.sedona:sedona-spark-shaded-3.0_2.12:1.5.2
org.datasyslab:geotools-wrapper:1.5.2-28.2
2) For enabling python support, from the Libraries tab install from PyPI
apache-sedona
keplergl==0.3.2
pydeck==0.8.0
Initialize¶
After you have installed the libraries and started the cluster, you can initialize the Sedona ST_*
functions and types by running from your code:
(scala)
import org.apache.sedona.sql.utils.SedonaSQLRegistrator
SedonaSQLRegistrator.registerAll(spark)
(or python)
from sedona.register.geo_registrator import SedonaRegistrator
SedonaRegistrator.registerAll(spark)
Install Sedona from the init script¶
In order to activate the Kryo serializer (this speeds up the serialization and deserialization of geometry types) you need to install the libraries via init script as described below.
In order to use the Sedona ST_*/RS_*
functions from SQL without having to register the Sedona functions from a python/scala cell, you need to install the Sedona libraries from the cluster init-scripts as follows.
Download Sedona jars¶
Download the Sedona jars to a DBFS location. You can do that manually via UI or from a notebook by executing this code in a cell:
%sh
# Create JAR directory for Sedona
mkdir -p /Workspace/Shared/sedona/1.5.2
# Download the dependencies from Maven into DBFS
curl -o /Workspace/Shared/sedona/1.5.2/geotools-wrapper-1.5.2-28.2.jar "https://repo1.maven.org/maven2/org/datasyslab/geotools-wrapper/1.5.2-28.2/geotools-wrapper-1.5.2-28.2.jar"
curl -o /Workspace/Shared/sedona/1.5.2/sedona-spark-shaded-3.4_2.12-1.5.2.jar "https://repo1.maven.org/maven2/org/apache/sedona/sedona-spark-shaded-3.4_2.12/1.5.2/sedona-spark-shaded-3.4_2.12-1.5.2.jar"
Create an init script¶
Warning
Starting from December 2023, Databricks has disabled all DBFS based init script (/dbfs/XXX//Users/<user-name>/<script-name>.sh
) or Unity Catalog volume (/Volumes/<catalog>/<schema>/<volume>/<path-to-script>/<script-name>.sh
). Please see https://docs.databricks.com/en/init-scripts/cluster-scoped.html#configure-a-cluster-scoped-init-script-using-the-ui
Create an init script in Workspace
that loads the Sedona jars into the cluster's default jar directory. You can create that from any notebook by running:
%sh
# Create init script directory for Sedona
mkdir -p /Workspace/Shared/sedona/
# Create init script
cat > /Workspace/Shared/sedona/sedona-init.sh <<'EOF'
#!/bin/bash
#
# File: sedona-init.sh
#
# On cluster startup, this script will copy the Sedona jars to the cluster's default jar directory.
# In order to activate Sedona functions, remember to add to your spark configuration the Sedona extensions: "spark.sql.extensions org.apache.sedona.viz.sql.SedonaVizExtensions,org.apache.sedona.sql.SedonaSqlExtensions"
cp /Workspace/Shared/sedona/1.5.2/*.jar /databricks/jars
EOF
Set up cluster config¶
From your cluster configuration (Cluster
-> Edit
-> Configuration
-> Advanced options
-> Spark
) activate the Sedona functions and the kryo serializer by adding to the Spark Config
spark.sql.extensions org.apache.sedona.viz.sql.SedonaVizExtensions,org.apache.sedona.sql.SedonaSqlExtensions
spark.serializer org.apache.spark.serializer.KryoSerializer
spark.kryo.registrator org.apache.sedona.core.serde.SedonaKryoRegistrator
From your cluster configuration (Cluster
-> Edit
-> Configuration
-> Advanced options
-> Init Scripts
) add the newly created Workspace
init script
/Workspace/sedona/sedona-init.sh
For enabling python support, from the Libraries tab install from PyPI
apache-sedona==1.5.2
geopandas==0.11.1
keplergl==0.3.2
pydeck==0.8.0
Tips
You need to install the Sedona libraries via init script because the libraries installed via UI are installed after the cluster has already started, and therefore the classes specified by the config spark.sql.extensions
, spark.serializer
, and spark.kryo.registrator
are not available at startup time.*