-
Notifications
You must be signed in to change notification settings - Fork 8
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
#1134 add data-sources tag to active DAGs #1135
Changes from 1 commit
2129f4e
f227bd6
a181326
65ac283
e78c78a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ def create_gcc_puller_dag(dag_id, default_args, name, conn_id): | |
dag_id=dag_id, | ||
default_args=default_args, | ||
catchup=False, | ||
tags=['gcc', name], | ||
tags=["bdit_data-sources", 'gcc', name], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see some other DAG has |
||
schedule='0 7 1 */3 *' #'@quarterly' | ||
) | ||
def gcc_layers_dag(): | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ | |
default_args=default_args, | ||
schedule=None, # gets triggered by HERE dag | ||
doc_md = doc_md, | ||
tags=["HERE"], | ||
tags=["bdit_data-sources", "HERE"], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. aggregation |
||
catchup=False | ||
) | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ | |
os.path.join(repo_path,'dags/sql') | ||
], | ||
doc_md=DOC_MD, | ||
tags=['vds', 'vdsvehicledata', 'data_checks', 'pull'], | ||
tags=["bdit_data-sources", 'vds', 'vdsvehicledata', 'data_checks', 'pull'], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. are we doing data_pull or pull ? |
||
schedule='5 4 * * *' #daily at 4:05am | ||
) | ||
def vdsvehicledata_dag(): | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aggregation
too?