Given the following Structured Streaming databricks video
data-engineer-associate video for given the following Structured Streaming query: ( spark . readStream . table ( "cleanedOrders" ) . groupBy ( "productCategory"
Answer
          Full Certification Question
Given the following Structured Streaming query: ( spark . readStream . table ( "cleanedOrders" ) . groupBy ( "productCategory" ) . agg ( sum ( "totalWithTax" )) . writeStream . option ( "checkpointLocation" , checkpointPath ) . outputMode ( "complete" ) . table ( "aggregatedOrders" ) ) Which of the following best describe the purpose of this query in a Medallion Architecture?