This will be a repo of a set of Spark Projects I work on to get more familiar using Spark. I will be using both Pyspark and RSpark
python -m venv spark-venv
source spark-venv/bin/activate
pip install -r requirements.txt
Start the Spark Containers w/ Sample Iceberg Spark Containers from here Databricks Spark Iceberg Repository
docker compose up -d
jupyter notebook
from pyspark.sql import SparkSession
spark = SparkSession.builder.appName("Jupyter").getOrCreate()
spark