In the context of a multi-hop architecture, what is the primary function of the following Structured Streaming query? ```spark.readStream .format("cloudFiles") .option("cloudFiles.format", "json") .load(ordersLocation) .writeStream .option("checkpointLocation", checkpointPath) .table("uncleanedOrders")``` | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz