Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add desciption #15

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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": "jane@example.com",
"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@example.com (not real email)
owner: Jane Whitaker
email: jane@example.com
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"]
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ sources:
database: RAW
tables:
- name: PERSONAL_LOANS
description: ''
description: 'personal loans table'
Loading