Skip to content

Commit

Permalink
Add dag file
Browse files Browse the repository at this point in the history
  • Loading branch information
Janewhitakerorrum committed Nov 21, 2024
1 parent 0c719bf commit 31eabbd
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
38 changes: 38 additions & 0 deletions orchestrate/dags/Janewhitakerorrum_dag.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import datetime

from airflow.decorators import dag, task_group
from airflow.providers.airbyte.operators.airbyte import \
AirbyteTriggerSyncOperator
from operators.datacoves.dbt import DatacovesDbtOperator


@dag(
default_args={
"start_date": datetime.datetime(2023, 1, 1, 0, 0),
"owner": "Jane Whitaker",
"email": "[email protected]",
"email_on_failure": True,
"retries": 3,
},
description="Personal Loan Average",
schedule="0 0 1 */12 *",
tags=["version_1"],
catchup=False,
)
def Janewhitakerorrum_dag():
@task_group(group_id="extract_and_load_airbyte", tooltip="Airbyte Extract and Load")
def extract_and_load_airbyte():
country_populations_datacoves_train = AirbyteTriggerSyncOperator(
task_id="country_populations_datacoves_train",
connection_id="676575f7-22d7-41f4-ab78-52099d8cbccb",
airbyte_conn_id="airbyte_connection",
)

tg_extract_and_load_airbyte = extract_and_load_airbyte()
transform = DatacovesDbtOperator(
task_id="transform", bash_command="dbt build -s 'tag:daily_run_airbyte+ -t prd'"
)
transform.set_upstream([tg_extract_and_load_airbyte])


dag = Janewhitakerorrum_dag()
27 changes: 27 additions & 0 deletions orchestrate/dags_yml_definitions/Janewhitakerorrum_dag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
description: "Personal Loan Average"
schedule: "0 0 1 */12 *"
tags:
- version_1
default_args:
start_date: 2023-01-01
# Replace name and [email protected] (not real email)
owner: Jane Whitaker
email: [email protected]
email_on_failure: true
retries: 3
catchup: false

nodes:
extract_and_load_airbyte:
generator: AirbyteDbtGenerator
type: task_group

tooltip: "Airbyte Extract and Load"
dbt_list_args: "--select tag:daily_run_airbyte"

transform:
operator: operators.datacoves.dbt.DatacovesDbtOperator
type: task

bash_command: "dbt build -s 'tag:daily_run_airbyte+ -t prd'"
dependencies: ["extract_and_load_airbyte"]

0 comments on commit 31eabbd

Please sign in to comment.