I am using this statement to read the parquet file in pyspark (without using any display function or show method later). When I go to Spark UI, I can see a job being created. How does not using any action create a job in spark?
df = spark.read.format("parquet").load("/C:/Users/username/Downloads/MTcars.parquet")
Below is what that is visible in jobs section in spark UI.