Databricks Certified Data Engineer - Associate

Databricks Certified Data Engineer - Associate

Get started today

Ultimate access to all questions.


In the context of a multi-hop architecture, what is the primary function of the following Structured Streaming query?

    .table("cleanedOrders")
    .groupBy("productCategory")
    .agg(sum("totalWithTax"))
    .writeStream
    .option("checkpointLocation", checkpointPath)
    .outputMode("complete")
    .table("aggregatedOrders")```