-
Notifications
You must be signed in to change notification settings - Fork 138
feat(spark): Add Spark + Iceberg playground example #585
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: staging
Are you sure you want to change the base?
feat(spark): Add Spark + Iceberg playground example #585
Conversation
|
Hi @Ishani-10, can you please fix the PR title |
|
Documentation: N/A - This adds a new self-contained example following existing patterns in the examples/ folder. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do test your PR once.
In your docker-compose.yml file, your REST service still depends on postgres (which has been removed after your change). Thus, the docker compose up -d command is not even getting executed because of it.
| { | ||
| "cell_type": "code", | ||
| "execution_count": null, | ||
| "metadata": {}, | ||
| "outputs": [], | ||
| "source": [ | ||
| "# Show available catalogs\n", | ||
| "print(\"Available Catalogs:\")\n", | ||
| "spark.sql(\"SHOW CATALOGS\").show()\n", | ||
| "\n", | ||
| "# Show namespaces in Iceberg catalog\n", | ||
| "print(\"\\nNamespaces in Iceberg Catalog:\")\n", | ||
| "spark.sql(\"SHOW NAMESPACES IN iceberg\").show()" | ||
| ] | ||
| }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.

Description
Complete Spark integration with Jupyter notebook for data analysis. Includes full Docker Compose setup, configuration management, and comprehensive documentation.
Key Features
Fixes # (issue)
N/A
Type of change
Documentation