Exam 203 back-end services Spark: Difference between revisions
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
Languages supported in Spark include Python, Scala, Java, SQL, and C#. | Languages supported in Spark include Python, Scala, Java, SQL, and C#. | ||
Example Spark Python script in a Notebook: | |||
<pre> | |||
%%pyspark | |||
df = spark.read.load('abfss://files@datalakexxxxxxx.dfs.core.windows.net/product_data/products.csv', format='csv' | |||
## If header exists uncomment line below | |||
##, header=True | |||
) | |||
display(df.limit(10)) | |||
</pre> |
Revision as of 19:36, 15 November 2024
The second back-end service is: Spark
Languages supported in Spark include Python, Scala, Java, SQL, and C#.
Example Spark Python script in a Notebook:
%%pyspark df = spark.read.load('abfss://files@datalakexxxxxxx.dfs.core.windows.net/product_data/products.csv', format='csv' ## If header exists uncomment line below ##, header=True ) display(df.limit(10))