Question 73
DP-750 voucher + Udemy course (lifetime access) = ₹3,500 for Indian ID card holders.
Details →You administer three Lakeflow Jobs, each with a different latency and cost requirement. For each job you must choose the single most appropriate trigger type from the **Schedules & Triggers** panel. Requirements: - **Job 1 (Nightly reporting):** Must run once every day at 02:00, regardless of whether new data has arrived. Cost should be minimized; compute should not run between executions. - **Job 2 (Irregular file drops):** A partner uploads files to a Unity Catalog external location at unpredictable times. The job should run only when new files appear, and a polling schedule would waste compute. - **Job 3 (Always-on streaming):** Must keep processing with the lowest possible latency by starting a new run as soon as the previous run completes or fails. For each job, select the correct trigger type. ```mermaid flowchart TD J1["Job 1 — Nightly reporting at 02:00"] --> D1{"Trigger type?<br/>Scheduled / File arrival / Continuous"} J2["Job 2 — Irregular partner file drops"] --> D2{"Trigger type?<br/>Scheduled / File arrival / Continuous"} J3["Job 3 — Always-on, lowest latency"] --> D3{"Trigger type?<br/>Scheduled / File arrival / Continuous"} ```