1. An ML team has set up Lakehouse Monitoring on the inference table of their production chatbot. They configured a `time_series` monitor profile. After two weeks, the dashboard shows a sudden spike in `p95_latency_ms` starting on a specific date. What is the MOST likely first investigative step?
- A. Immediately roll back the LLM to the previous MLflow model version.
- B. Correlate the spike date with any deployment changes, traffic volume increases, or external LLM API changes that occurred around that time.✓ Correct
- C. Disable the inference table to reduce endpoint overhead.
- D. Switch the monitor profile from `time_series` to `snapshot` to get a clearer picture.
Explanation
A sudden latency spike tied to a specific date is most effectively investigated by correlating the timing with known events such as model or config deployments, traffic surges, or external API provider changes — standard root cause analysis practice. Rolling back immediately without investigation is premature; the cause could be external (e.g., the LLM API provider), making a rollback ineffective. Disabling the inference table would eliminate the observability data needed for investigation and would not fix the underlying issue. Switching monitor profiles changes how data is aggregated but does not provide additional diagnostic information about the cause of the spike.