QuestionQ131
Deployment StrategiesA machine learning engineer is using the following code block as part of a batch deployment pipeline:

Which of the following change must be made for this code block to work when the inference table is a streaming source?
- A Replace "inference" with the path to the location of the Delta table
- B Replace schema(schema) with option("maxFilesPerTrigger", 1)
- C Replace spark.read with spark.readStream
- D Replace format("delta") with format("stream")
- E Replace predict with a stream-friendly prediction function
Community Discussion