We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18c8ca2 commit 7b44a6fCopy full SHA for 7b44a6f
code/custom-docker-file/.Dockerfile
@@ -0,0 +1,17 @@
1
+# Use the official Spark image as the base image
2
+FROM bitnami/spark:3.5.3
3
+USER root
4
+# Install the required Python packages
5
+RUN pip install fastavro \
6
+ pyspark \
7
+ azure-eventhub==5.10.1 \
8
+ azure-storage-blob==12.14.1 \
9
+ azure-eventhub-checkpointstoreblob-aio \
10
+ azure-mgmt-resource \
11
+ azure-mgmt-datalake-store \
12
+ azure-datalake-store \
13
+ avro \
14
+ avro-python3
15
+USER 1001
16
+# Set the entrypoint to the Spark entrypoint
17
+ENTRYPOINT ["/opt/bitnami/scripts/spark/entrypoint.sh"]
docs/index.md
@@ -1,4 +1,4 @@
-### **Deploying Apache Spark on Azure Kubernetes Service (AKS)**
+### **Running Apache Spark on Azure Kubernetes Service (AKS)**
---
0 commit comments