Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
김진영
airflow-test
Commits
280f70e9
Commit
280f70e9
authored
May 20, 2022
by
김진영
Browse files
Update batch_test.py
parent
43a2a5d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
batch_test.py
View file @
280f70e9
...
...
@@ -24,6 +24,7 @@ def fail_alert(context):
{"name":"■ Task", "value": "%s"},
{"name":"■ DAG", "value": "%s"},
{"name":"■ Reason", "value": "%s"},
{"name":"■ Log URL", "value": "%s"},
]
}
]
...
...
@@ -32,7 +33,8 @@ def fail_alert(context):
context
.
get
(
'execution_date'
)
+
relativedelta
(
hours
=
9
),
context
.
get
(
'task_instance'
).
task_id
,
context
.
get
(
'task_instance'
).
dag_id
,
context
.
get
(
'exception'
)
context
.
get
(
'exception'
),
context
.
get
(
'task_instance'
).
log_url
)
alert
=
BashOperator
(
...
...
@@ -46,7 +48,8 @@ with DAG(
default_args
=
{
'depends_on_past'
:
False
,
'email'
:
'kim-jy@lotte.net'
,
'on_failure_callback'
:
fail_alert
#'on_failure_callback': fail_alert
'on_success_callback'
:
fail_alert
},
description
=
'Test Batch Job'
,
schedule_interval
=
'*/1 * * * *'
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment