-
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.
Add example dag and system test for LocalFilesystemToGCSOperator (#9043)
- Loading branch information
1 parent
a779c4d
commit 886afaf
Showing
5 changed files
with
149 additions
and
3 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
airflow/providers/google/cloud/example_dags/example_local_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,44 @@ | ||
# | ||
# 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 airflow import models | ||
from airflow.providers.google.cloud.operators.local_to_gcs import LocalFilesystemToGCSOperator | ||
from airflow.utils import dates | ||
|
||
# [START howto_gcs_environment_variables] | ||
BUCKET_NAME = os.environ.get('GCP_GCS_BUCKET', 'example-bucket-name') | ||
PATH_TO_UPLOAD_FILE = os.environ.get('GCP_GCS_PATH_TO_UPLOAD_FILE', 'example-text.txt') | ||
DESTINATION_FILE_LOCATION = os.environ.get('GCP_GCS_DESTINATION_FILE_LOCATION', 'example-text.txt') | ||
# [END howto_gcs_environment_variables] | ||
|
||
with models.DAG( | ||
'example_local_to_gcs', | ||
default_args=dict(start_date=dates.days_ago(1)), | ||
schedule_interval=None, | ||
tags=['example'] | ||
) as dag: | ||
# [START howto_operator_local_filesystem_to_gcs] | ||
upload_file = LocalFilesystemToGCSOperator( | ||
task_id="upload_file", | ||
src=PATH_TO_UPLOAD_FILE, | ||
dst=DESTINATION_FILE_LOCATION, | ||
bucket=BUCKET_NAME, | ||
) | ||
# [END howto_operator_local_filesystem_to_gcs] |
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,58 @@ | ||
.. 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. | ||
Upload data from Local Filesystem to Google Cloud Storage | ||
========================================================= | ||
The `Google Cloud Storage <https://cloud.google.com/storage/>`__ (GCS) is used to store large data from various applications. | ||
This page shows how to upload data from local filesystem to GCS. | ||
|
||
.. contents:: | ||
:depth: 1 | ||
:local: | ||
|
||
|
||
Prerequisite Tasks | ||
^^^^^^^^^^^^^^^^^^ | ||
|
||
.. include:: _partials/prerequisite_tasks.rst | ||
|
||
.. _howto/operator:LocalFilesystemToGCSOperator: | ||
|
||
LocalFileSystemToGCSOperator | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
:class:`~airflow.providers.google.cloud.operators.local_to_gcs.LocalFilesystemToGCSOperator` allows you to upload | ||
data from local filesystem to GCS. | ||
|
||
When you use this operator, you can optionally compress the data being uploaded. | ||
|
||
Below is an example of using this operator to upload a file to GCS. | ||
|
||
.. exampleinclude:: ../../../../airflow/providers/google/cloud/example_dags/example_local_to_gcs.py | ||
:language: python | ||
:dedent: 0 | ||
:start-after: [START howto_operator_local_filesystem_to_gcs] | ||
:end-before: [END howto_operator_local_filesystem_to_gcs] | ||
|
||
|
||
Reference | ||
--------- | ||
|
||
For further information, look at: | ||
|
||
* `Google Cloud Storage Documentation <https://cloud.google.com/storage/>`__ |
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
46 changes: 46 additions & 0 deletions
46
tests/providers/google/cloud/operators/test_local_to_gcs_system.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,46 @@ | ||
# | ||
# 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 | ||
|
||
import pytest | ||
|
||
from airflow.providers.google.cloud.example_dags.example_local_to_gcs import BUCKET_NAME, PATH_TO_UPLOAD_FILE | ||
from tests.providers.google.cloud.utils.gcp_authenticator import GCP_GCS_KEY | ||
from tests.test_utils.gcp_system_helpers import CLOUD_DAG_FOLDER, GoogleSystemTest, provide_gcp_context | ||
|
||
|
||
@pytest.mark.backend("mysql", "postgres") | ||
@pytest.mark.credential_file(GCP_GCS_KEY) | ||
class LocalFilesystemToGCSOperatorExampleDagsTest(GoogleSystemTest): | ||
|
||
@provide_gcp_context(GCP_GCS_KEY) | ||
def setUp(self): | ||
super().setUp() | ||
self.create_gcs_bucket(BUCKET_NAME) | ||
with open(PATH_TO_UPLOAD_FILE, 'w+') as file: | ||
file.writelines(['example test files']) | ||
|
||
@provide_gcp_context(GCP_GCS_KEY) | ||
def tearDown(self): | ||
self.delete_gcs_bucket(BUCKET_NAME) | ||
os.remove(PATH_TO_UPLOAD_FILE) | ||
super().tearDown() | ||
|
||
@provide_gcp_context(GCP_GCS_KEY) | ||
def test_run_example_dag(self): | ||
self.run_dag('example_local_to_gcs', CLOUD_DAG_FOLDER) |
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