Exam 203 back-end services Spark

From MillerSql.com
Revision as of 19:36, 15 November 2024 by NeilM (talk | contribs)

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))