2017-01-03 16:13:04 +03:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2018-04-14 10:13:23 +03:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
2018-09-21 17:36:28 +03:00
|
|
|
#
|
2018-04-14 10:13:23 +03:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2018-09-21 17:36:28 +03:00
|
|
|
#
|
2018-04-14 10:13:23 +03:00
|
|
|
# Unless required by applicable law or agreed to in writing,
|
|
|
|
# software distributed under the License is distributed on an
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
# KIND, either express or implied. See the License for the
|
|
|
|
# specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2019-08-13 04:26:50 +03:00
|
|
|
"""
|
|
|
|
This dag tests performance of simple bash commands executed with Airflow.
|
|
|
|
"""
|
|
|
|
from datetime import timedelta
|
2017-02-12 23:37:56 +03:00
|
|
|
|
|
|
|
import airflow
|
2017-01-03 16:13:04 +03:00
|
|
|
from airflow.models import DAG
|
2019-08-13 04:26:50 +03:00
|
|
|
from airflow.operators.bash_operator import BashOperator
|
2017-01-03 16:13:04 +03:00
|
|
|
|
|
|
|
args = {
|
2019-08-03 10:37:47 +03:00
|
|
|
'owner': 'Airflow',
|
2017-02-12 23:37:56 +03:00
|
|
|
'start_date': airflow.utils.dates.days_ago(3),
|
2017-01-03 16:13:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dag = DAG(
|
|
|
|
dag_id='perf_dag_2', default_args=args,
|
|
|
|
schedule_interval='@daily',
|
|
|
|
dagrun_timeout=timedelta(minutes=60))
|
|
|
|
|
|
|
|
task_1 = BashOperator(
|
|
|
|
task_id='perf_task_1',
|
|
|
|
bash_command='sleep 5; echo "run_id={{ run_id }} | dag_run={{ dag_run }}"',
|
|
|
|
dag=dag)
|
|
|
|
|
|
|
|
for i in range(2, 5):
|
|
|
|
task = BashOperator(
|
|
|
|
task_id='perf_task_{}'.format(i),
|
|
|
|
bash_command='''
|
|
|
|
sleep 5; echo "run_id={{ run_id }} | dag_run={{ dag_run }}"
|
|
|
|
''',
|
|
|
|
dag=dag)
|
|
|
|
task.set_upstream(task_1)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
dag.cli()
|