-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate Google example DAG oracle_to_gcs to new design AIP-47 (#24542)
- Loading branch information
1 parent
28d3236
commit 88ddf65
Showing
3 changed files
with
74 additions
and
41 deletions.
There are no files selected for viewing
40 changes: 0 additions & 40 deletions
40
airflow/providers/google/cloud/example_dags/example_oracle_to_gcs.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 73 additions & 0 deletions
73
tests/system/providers/google/cloud/gcs/example_oracle_to_gcs.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# 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. | ||
|
||
import os | ||
from datetime import datetime | ||
|
||
from airflow import models | ||
from airflow.providers.google.cloud.operators.gcs import GCSCreateBucketOperator, GCSDeleteBucketOperator | ||
from airflow.providers.google.cloud.transfers.oracle_to_gcs import OracleToGCSOperator | ||
from airflow.utils.trigger_rule import TriggerRule | ||
|
||
ENV_ID = os.environ.get("SYSTEM_TESTS_ENV_ID") | ||
PROJECT_ID = os.environ.get("SYSTEM_TESTS_GCP_PROJECT") | ||
DAG_ID = "example_oracle_to_gcs" | ||
|
||
BUCKET_NAME = f"bucket_{DAG_ID}_{ENV_ID}" | ||
FILENAME = 'test_file' | ||
SQL_QUERY = "SELECT * from test_table" | ||
|
||
with models.DAG( | ||
DAG_ID, | ||
schedule_interval='@once', | ||
start_date=datetime(2021, 1, 1), | ||
catchup=False, | ||
tags=['example', 'oracle'], | ||
) as dag: | ||
create_bucket = GCSCreateBucketOperator( | ||
task_id="create_bucket", bucket_name=BUCKET_NAME, project_id=PROJECT_ID | ||
) | ||
|
||
# [START howto_operator_oracle_to_gcs] | ||
upload_oracle_to_gcs = OracleToGCSOperator( | ||
task_id='oracle_to_gcs', sql=SQL_QUERY, bucket=BUCKET_NAME, filename=FILENAME, export_format='csv' | ||
) | ||
# [END howto_operator_oracle_to_gcs] | ||
|
||
delete_bucket = GCSDeleteBucketOperator( | ||
task_id="delete_bucket", bucket_name=BUCKET_NAME, trigger_rule=TriggerRule.ALL_DONE | ||
) | ||
|
||
( | ||
# TEST SETUP | ||
create_bucket | ||
# TEST BODY | ||
>> upload_oracle_to_gcs | ||
# TEST TEARDOWN | ||
>> delete_bucket | ||
) | ||
|
||
from tests.system.utils.watcher import watcher | ||
|
||
# This test needs watcher in order to properly mark success/failure | ||
# when "tearDown" task with trigger rule is part of the DAG | ||
list(dag.tasks) >> watcher() | ||
|
||
from tests.system.utils import get_test_run # noqa: E402 | ||
|
||
# Needed to run the example DAG with pytest (see: tests/system/README.md#run_via_pytest) | ||
test_run = get_test_run(dag) |