You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.3 KiB
65 lines
2.3 KiB
# |
|
# 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 |
|
# |
|
# http://www.apache.org/licenses/LICENSE-2.0 |
|
# |
|
# 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. |
|
# -------------------------------------------------------------------------------- |
|
# Written By: Ekhtiar Syed |
|
# Last Update: 8th April 2016 |
|
# Caveat: This Dag will not run because of missing scripts. |
|
# The purpose of this is to give you a sample of a real world example DAG! |
|
# -------------------------------------------------------------------------------- |
|
|
|
# -------------------------------------------------------------------------------- |
|
# Load The Dependencies |
|
# -------------------------------------------------------------------------------- |
|
""" |
|
This is an example dag for using the WinRMOperator. |
|
""" |
|
from datetime import timedelta |
|
|
|
from airflow import DAG |
|
from airflow.operators.dummy import DummyOperator |
|
from airflow.providers.microsoft.winrm.hooks.winrm import WinRMHook |
|
from airflow.providers.microsoft.winrm.operators.winrm import WinRMOperator |
|
from airflow.utils.dates import days_ago |
|
|
|
default_args = { |
|
"owner": "airflow", |
|
} |
|
|
|
with DAG( |
|
dag_id="POC_winrm_parallel", |
|
default_args=default_args, |
|
schedule_interval="0 0 * * *", |
|
start_date=days_ago(2), |
|
dagrun_timeout=timedelta(minutes=60), |
|
tags=["example"], |
|
) as dag: |
|
|
|
cmd = "ls -l" |
|
run_this_last = DummyOperator(task_id="run_this_last") |
|
|
|
winRMHook = WinRMHook(ssh_conn_id="ssh_POC1") |
|
|
|
t1 = WinRMOperator(task_id="wintask1", command="ls -altr", winrm_hook=winRMHook) |
|
|
|
t2 = WinRMOperator(task_id="wintask2", command="sleep 60", winrm_hook=winRMHook) |
|
|
|
t3 = WinRMOperator( |
|
task_id="wintask3", command="echo 'luke test' ", winrm_hook=winRMHook |
|
) |
|
|
|
[t1, t2, t3] >> run_this_last
|
|
|