Bird
0
0

Given this dbt Cloud job YAML snippet:

medium📝 Predict Output Q4 of 15
dbt - Production Deployment
Given this dbt Cloud job YAML snippet:
commands:
  - dbt run
  - dbt test
schedule: '0 3 * * *'

What does this schedule mean?
ARun the job every hour at minute 3.
BRun the job every 3 minutes.
CRun the job every Sunday at 3 PM.
DRun the job every day at 3 AM.
Step-by-Step Solution
Solution:
  1. Step 1: Interpret cron schedule '0 3 * * *'

    This cron expression means at minute 0, hour 3, every day, every month, every weekday.
  2. Step 2: Match to options

    Run the job every day at 3 AM. correctly states daily at 3 AM; others describe incorrect timings.
  3. Final Answer:

    Run the job every day at 3 AM. -> Option D
  4. Quick Check:

    Cron '0 3 * * *' = daily 3 AM [OK]
Quick Trick: Cron '0 3 * * *' means daily at 3 AM [OK]
Common Mistakes:
MISTAKES
  • Misreading hour and minute positions
  • Confusing daily with weekly schedules
  • Assuming minutes or seconds are involved

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More dbt Quizzes