Source code for airflow.example_dags.example_datasets
# 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."""Example DAG for demonstrating behavior of Datasets feature.Notes on usage:Turn on all the dags.DAG example_dataset_dag1 should run because it's on a schedule.After example_dataset_dag1 runs, example_dataset_dag3_req_dag1 should be triggered immediatelybecause its only dataset dependency is managed by example_dataset_dag1.No other dags should be triggered. Note that even though example_dataset_dag4_req_dag1_dag2 depends onthe dataset in example_dataset_dag1, it will not be triggered until example_dataset_dag2 runs(and example_dataset_dag2 is left with no schedule so that we can trigger it manually).Next, trigger example_dataset_dag2. After example_dataset_dag2 finishes,example_dataset_dag4_req_dag1_dag2 should run.Dags example_dataset_dag5_req_dag1_D and example_dataset_dag6_req_DD should not run because they depend ondatasets that never get updated."""from__future__importannotationsimportpendulumfromairflowimportDAG,Datasetfromairflow.operators.bashimportBashOperator# [START dataset_def]