Commit 52ac04e6 authored by 김진영's avatar 김진영
Browse files

Update batch_test.py

parent bd758777
...@@ -21,56 +21,16 @@ with DAG( ...@@ -21,56 +21,16 @@ with DAG(
tags=['test'], tags=['test'],
catchup=False, catchup=False,
) as dag: ) as dag:
# post_gasan_tasks = [] # gasan 작업 병렬처리
post_gasan_tasks = []
# for i in range(4): for i in range(4):
# post_gasan_task = BashOperator( post_gasan_task = BashOperator(
# task_id='post_gasan'+str(i), 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)), 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)),
# ) )
# post_gasan_tasks.append(post_gasan_task) post_gasan_tasks.append(post_gasan_task)
# t1, t2 and t3 are examples of tasks created by instantiating operators
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\"}\'",
)
# t2 = BashOperator( post_gasan_tasks
# task_id='sleep', # t1
# 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,
# )
# post_gasan_tasks
t1
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment