Provider package for integrating Apache Airflow with dbt Cloud for data transformation workflow orchestration
84
{
"context": "This criteria evaluates how well the engineer uses the apache-airflow-providers-dbt-cloud package to download artifacts from specific steps in multi-step dbt Cloud jobs. The focus is on proper usage of the DbtCloudGetJobRunArtifactOperator or DbtCloudHook with step number specification.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses DbtCloudHook",
"description": "Uses DbtCloudHook from airflow.providers.dbt.cloud.hooks.dbt to interact with the dbt Cloud API",
"max_score": 20
},
{
"name": "Step number parameter",
"description": "Correctly uses the step parameter (or step_number parameter) when retrieving artifacts to specify which step in a multi-step job to download from",
"max_score": 30
},
{
"name": "Artifact retrieval method",
"description": "Uses the get_job_run_artifact method from DbtCloudHook to download artifacts (e.g., run_results.json, manifest.json)",
"max_score": 25
},
{
"name": "Handles default step",
"description": "Correctly handles cases where no step number is specified (default behavior), such as by omitting the step parameter or passing None",
"max_score": 15
},
{
"name": "Saves artifacts locally",
"description": "Properly saves the downloaded artifact content to the specified output file path on the local filesystem",
"max_score": 10
}
]
}Install with Tessl CLI
npx tessl i tessl/pypi-apache-airflow-providers-dbt-cloudevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10