Bird
0
0

You want to assign ownership of a dbt model to two groups: 'data_science' and 'qa_team'. Which configuration correctly sets this up and ensures both groups are notified on model changes?

hard🚀 Application Q15 of 15
dbt - Governance and Collaboration
You want to assign ownership of a dbt model to two groups: 'data_science' and 'qa_team'. Which configuration correctly sets this up and ensures both groups are notified on model changes?
Aowners: ['data_science', 'qa_team']
Bowners: 'data_science, qa_team'
Cowner: ['data_science', 'qa_team']
Dgroups: ['data_science', 'qa_team']
Step-by-Step Solution
Solution:
  1. Step 1: Confirm correct field name and type

    The field must be owners and a list of group names.
  2. Step 2: Check options for correct syntax

    owners: ['data_science', 'qa_team'] uses owners: ['data_science', 'qa_team'], which is correct.
  3. Step 3: Understand notification implication

    Assigning multiple owners ensures both groups are responsible and notified.
  4. Final Answer:

    owners: ['data_science', 'qa_team'] -> Option A
  5. Quick Check:

    Multiple owners list = multiple groups notified [OK]
Quick Trick: Use owners list with all groups to notify them [OK]
Common Mistakes:
MISTAKES
  • Using a string with commas instead of a list
  • Using owner instead of owners
  • Using groups field which is invalid

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More dbt Quizzes