batch_test.py 2.47 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
5
6
7

# The DAG object; we'll need this to instantiate a DAG
from airflow import DAG

김진영's avatar
김진영 committed
8
9
local_tz = pendulum.timezone("Asia/Seoul")

김진영's avatar
김진영 committed
10
11
12
13
14
15
# Operators; we need this to operate!
from airflow.operators.bash import BashOperator
with DAG(
    'batch_test',
    default_args={
        'depends_on_past': False,
김진영's avatar
김진영 committed
16
        'email': 'kim-jy@lotte.net',
김진영's avatar
김진영 committed
17
18
    },
    description='Test Batch Job',
김진영's avatar
김진영 committed
19
    schedule_interval='*/10 * * * *',
김진영's avatar
김진영 committed
20
    start_date=datetime(2022, 5, 13, tzinfo=local_tz),
김진영's avatar
김진영 committed
21
22
    tags=['test'],
) as dag:
김진영's avatar
김진영 committed
23
    # post_gasan_tasks = []
김진영's avatar
김진영 committed
24

김진영's avatar
김진영 committed
25
26
27
28
29
    # for i in range(4):
    #     post_gasan_task = BashOperator(
    #         task_id='post_gasan'+str(i),
    #         bash_command="curl -X \'POST\' \'http://10.231.238.224:30999/api/v1/camera/writeimage\' -H \'Content-Type: application/json\' -d \'{\"id\": \"test%s\", \"pw\": \"test\", \"ip\": \"10.123.123.1\", \"serialNum\": \"aaaa\", \"camName\": \"abc\"}\'" %(str(i)),
    #     )
김진영's avatar
김진영 committed
30

김진영's avatar
김진영 committed
31
    #     post_gasan_tasks.append(post_gasan_task)
김진영's avatar
김진영 committed
32
    # t1, t2 and t3 are examples of tasks created by instantiating operators
김진영's avatar
김진영 committed
33
34
35
36
    t1 = BashOperator(
        task_id='post_gasan',
        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\": \"10.123.123.1\", \"serialNum\": \"aaaa\", \"camName\": \"abc\"}\'",
    )
김진영's avatar
김진영 committed
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73

    # t2 = BashOperator(
    #     task_id='sleep',
    #     depends_on_past=False,
    #     bash_command='sleep 5',
    #     retries=3,
    # )
    # t1.doc_md = dedent(
    #     """\
    # #### Task Documentation
    # You can document your task using the attributes `doc_md` (markdown),
    # `doc` (plain text), `doc_rst`, `doc_json`, `doc_yaml` which gets
    # rendered in the UI's Task Instance Details page.
    # ![img](http://montcs.bloomu.edu/~bobmon/Semesters/2012-01/491/import%20soul.png)

    # """
    # )

    # dag.doc_md = __doc__  # providing that you have a docstring at the beginning of the DAG
    # dag.doc_md = """
    # This is a documentation placed anywhere
    # """  # otherwise, type it like this
    # templated_command = dedent(
    #     """
    # {% for i in range(5) %}
    #     echo "{{ ds }}"
    #     echo "{{ macros.ds_add(ds, 7)}}"
    # {% endfor %}
    # """
    # )

    # t3 = BashOperator(
    #     task_id='templated',
    #     depends_on_past=False,
    #     bash_command=templated_command,
    # )

김진영's avatar
김진영 committed
74
75
    # post_gasan_tasks
    t1