πͺInstall on Spark History Server
Spark History Server Installation Script
#!/bin/bash
cd "$SPARK_HOME"
DATAFLINT_VERSION="0.9.9"
# Step 1: Download the jar to the history server machine
wget -O /tmp/spark_2.12-$DATAFLINT_VERSION.jar \
https://repo1.maven.org/maven2/io/dataflint/spark_2.12/$DATAFLINT_VERSION/spark_2.12-$DATAFLINT_VERSION.jar
# Step 2: add dataflint jar to classpath
export SPARK_DAEMON_CLASSPATH=/tmp/spark_2.12-$DATAFLINT_VERSION.jar
# step 3: if history server already running, stop and start it again
./sbin/stop-history-server.sh
./sbin/start-history-server.shAlternative installation
How it works
Install on EMR history server

Via bootstrap script
Via SSH
From EMR terminated cluster


Running spark history server on your machine
Last updated