Skip to content

Commit

Permalink
Update resources
Browse files Browse the repository at this point in the history
  • Loading branch information
chowbao committed Jul 18, 2024
1 parent 11284e1 commit 96392ad
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions airflow_variables_dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -285,23 +285,23 @@
"resources": {
"dbt": {
"requests": {
"cpu": "0.2",
"cpu": "1",
"ephemeral-storage": "500Mi",
"memory": "250Mi"
"memory": "600Mi"
}
},
"default": {
"requests": {
"cpu": "0.2",
"cpu": "0.3",
"ephemeral-storage": "500Mi",
"memory": "250Mi"
"memory": "600Mi"
}
},
"stellaretl": {
"requests": {
"cpu": "0.2",
"cpu": "0.3",
"ephemeral-storage": "500Mi",
"memory": "250Mi"
"memory": "600Mi"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion airflow_variables_prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@
"resources": {
"dbt": {
"requests": {
"cpu": "0.5",
"cpu": "1",
"ephemeral-storage": "1Gi",
"memory": "1Gi"
}
Expand Down
2 changes: 1 addition & 1 deletion dags/dbt_data_quality_alerts_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
) as dag:

# Trigger elementary
elementary_alerts = elementary_task(dag, "dbt_data_quality")
elementary_alerts = elementary_task(dag, "dbt_data_quality", resource_cfg="dbt")

elementary_alerts
1 change: 1 addition & 0 deletions dags/dbt_singular_tests_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
dag,
command_type="test",
tag="singular_test",
resource_cfg="dbt",
)

singular_tests

0 comments on commit 96392ad

Please sign in to comment.