
Explanation:
Correct Answer: C
Automated job clusters (also known as ephemeral clusters) are the most cost-efficient choice for periodic batch processing in Databricks. Because job clusters are provisioned only when the job starts and are terminated immediately upon completion, you only pay for the ~10 minutes of compute time (plus a small overhead for cluster startup) every hour. This prevents paying for idle compute time.
Analysis of Other Options:
Ultimate access to all questions.
No comments yet.
A business reporting team requires their dashboards to be updated every hour. Given that the data pipeline takes approximately 10 minutes to process, which configuration provides the most cost-effective solution to satisfy this Service Level Agreement (SLA) under standard operating conditions?
A
Schedule a Structured Streaming job with a trigger interval of 60 minutes.
B
Manually trigger the pipeline execution whenever the reporting team refreshes their dashboard.
C
Schedule a job to run the pipeline once per hour using a new, automated job cluster.
D
Schedule a job to run the pipeline once every hour on a dedicated, long-running interactive cluster.
E
Configure an event-driven job to execute whenever new data files are uploaded to a specific storage directory.