batch_test.py 2.83 KB
Newer Older
김진영's avatar
김진영 committed
1
2
from datetime import datetime, timedelta
from textwrap import dedent
김진영's avatar
김진영 committed
3
import pendulum
김진영's avatar
김진영 committed
4
from airflow.operators.bash import BashOperator
김진영's avatar
김진영 committed
5
from airflow import DAG
김진영's avatar
김진영 committed
6
from data.gasan_data import gasanData   # import cj-gasan data
김진영's avatar
김진영 committed
7
from dateutil.relativedelta import relativedelta
김진영's avatar
김진영 committed
8

김진영's avatar
김진영 committed
9
# set timezone
김진영's avatar
김진영 committed
10
11
local_tz = pendulum.timezone("Asia/Seoul")

김진영's avatar
김진영 committed
12
def fail_alert(context):
김진영's avatar
김진영 committed
13
14
    context_data = """
    {
김진영's avatar
김진영 committed
15
16
17
18
19
20
21
22
        "@context": "https://schema.org/extensions",
        "@type":"MessageCard",
        "themeColor":"0072C6",
        "title":"Batch Job Error",
        "summary":"test",
        "sections": [
            {
                "facts":[
김진영's avatar
김진영 committed
23
                    {"name":"■ Exec Time", "value": "%s"},
김진영's avatar
김진영 committed
24
25
                    {"name":"■ Task", "value": "%s"},
                    {"name":"■ DAG", "value": "%s"},
김진영's avatar
김진영 committed
26
                    {"name":"■ Reason", "value": "%s"},
김진영's avatar
김진영 committed
27
                    {"name":"■ Log URL", "value": "%s"},
김진영's avatar
김진영 committed
28
29
30
31
                ]
            }
        ]
    }
김진영's avatar
김진영 committed
32
33
34
35
    """ % (
        context.get('execution_date')+relativedelta(hours=9), 
        context.get('task_instance').task_id, 
        context.get('task_instance').dag_id,
김진영's avatar
김진영 committed
36
        context.get('exception'),
김진영's avatar
김진영 committed
37
        context.get('task_instance').log_url.replace("localhost:8080", "10.231.238.224:31258")
김진영's avatar
김진영 committed
38
    )
김진영's avatar
김진영 committed
39

김진영's avatar
김진영 committed
40
41
    alert = BashOperator(
        task_id='fail_alert',
김진영's avatar
김진영 committed
42
        bash_command="curl -d \'{data}\' -H \"Content-Type: Application/JSON\" -X POST https://lottegroup.webhook.office.com/webhookb2/2ed9f7fc-4c60-4d2d-a61c-aa50c0075564@dc742f86-8941-4de1-8d2c-d2dfef93cfe8/IncomingWebhook/1047eeaf7bde45a08e5ccb4d6c80f08d/d7352368-8126-4827-aab7-4a62b0b5abc2".format(data=context_data)
김진영's avatar
김진영 committed
43
    )
김진영's avatar
김진영 committed
44
    return alert.execute(context=context)
김진영's avatar
김진영 committed
45

김진영's avatar
김진영 committed
46
47
48
49
with DAG(
    'batch_test',
    default_args={
        'depends_on_past': False,
김진영's avatar
김진영 committed
50
        'email': 'kim-jy@lotte.net',
김진영's avatar
김진영 committed
51
52
        #'on_failure_callback': fail_alert
        'on_success_callback': fail_alert
김진영's avatar
김진영 committed
53
54
    },
    description='Test Batch Job',
김진영's avatar
김진영 committed
55
    schedule_interval='*/1 * * * *',
김진영's avatar
김진영 committed
56
    start_date=datetime(2022, 5, 13, tzinfo=local_tz),
김진영's avatar
김진영 committed
57
    tags=['test'],
김진영's avatar
김진영 committed
58
    catchup=False,
김진영's avatar
김진영 committed
59
) as dag:
김진영's avatar
김진영 committed
60
61
62
    # (Task1) 헬스체크
    health_check = BashOperator(
        task_id='health_check',
김진영's avatar
김진영 committed
63
        bash_command="curl -X GET -v http://10.231.238.224:30999/api/v1/core/health \'-H accept: application/json\'",
김진영's avatar
김진영 committed
64
    )
김진영's avatar
김진영 committed
65

김진영's avatar
김진영 committed
66
    # (Task2) gasan 작업 병렬처리
김진영's avatar
김진영 committed
67
    post_gasan_tasks = []
김진영's avatar
김진영 committed
68

김진영's avatar
김진영 committed
69
70
71
72
73
    for i, data in enumerate(gasanData):
        post_gasan_task = BashOperator(
            task_id='post_gasan'+str(i+1),
            bash_command="curl -X \'POST\' \'http://10.231.238.224:30999/api/v1/camera/writeimage\' -H \'Content-Type: application/json\' -d \'{\"id\": \"test\", \"pw\": \"test\", \"ip\": \"%s\", \"serialNum\": \"%s\", \"camName\": \"%s\"}\'" %(data["ip"], data["serialNum"], data["camName"]),
        )
김진영's avatar
김진영 committed
74

김진영's avatar
김진영 committed
75
        post_gasan_tasks.append(post_gasan_task)
김진영's avatar
김진영 committed
76

김진영's avatar
김진영 committed
77
    # 작업 순서 정의
김진영's avatar
김진영 committed
78
    health_check >> post_gasan_tasks