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
0d3a71da
Commit
0d3a71da
authored
May 13, 2022
by
김진영
Browse files
Update batch_test.py
parent
3d3c716a
Changes
1
Hide whitespace changes
Inline
Side-by-side
batch_test.py
View file @
0d3a71da
...
...
@@ -17,16 +17,24 @@ with DAG(
'retry_delay'
:
timedelta
(
minutes
=
5
),
},
description
=
'Test Batch Job'
,
schedule_interval
=
'* * * * *'
,
schedule_interval
=
'*
/1
* * * *'
,
start_date
=
datetime
(
2022
,
5
,
13
),
tags
=
[
'test'
],
)
as
dag
:
post_gasan_tasks
=
[]
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
\"
,
\"
pw
\"
:
\"
test
\"
,
\"
ip
\"
:
\"
10.123.123.1
\"
,
\"
serialNum
\"
:
\"
aaaa
\"
,
\"
camName
\"
:
\"
abc
\"
}
\'
"
,
)
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
\"
}
\'
"
,
)
#
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(
# task_id='sleep',
...
...
@@ -64,4 +72,4 @@ with DAG(
# bash_command=templated_command,
# )
t1
post_gasan_tasks
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