All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dags.comet_watch.py Maven / Gradle / Ivy

There is a newer version: 0.2.6
Show newest version
import os
from airflow import DAG
from airflow.operators.bash_operator import BashOperator
from datetime import datetime, timedelta

default_args = {
    'owner': 'airflow',
    'depends_on_past': False,
    'start_date': datetime(2018, 11, 2),
    'email': ['[email protected]'],
    'email_on_failure': False,
    'email_on_retry': False,
    'retries': 0,
    'retry_delay': timedelta(minutes=5),
    # 'queue': 'bash_queue',
    # 'pool': 'backfill',
    # 'priority_weight': 10,
    # 'end_date': datetime(2016, 1, 1),
}

dag = DAG('comet_watcher', max_active_runs=1, catchup=False, default_args=default_args, schedule_interval="*/1 * * * *")
COMET_SPARK_CMD = os.environ.get('COMET_SPARK_CMD', '')
COMET_DOMAIN = os.environ.get('COMET_DOMAIN', '')
# t1, t2 and t3 are examples of tasks created by instantiating operators
t1 = BashOperator(
    task_id='comet_watcher',
    bash_command=COMET_SPARK_CMD + ' watch ' + COMET_DOMAIN,
    dag=dag)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy