forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Hook Level Lineage support for GCSHook (apache#42507)
Signed-off-by: Kacper Muda <[email protected]>
- Loading branch information
1 parent
69af185
commit cc76229
Showing
9 changed files
with
372 additions
and
7 deletions.
There are no files selected for viewing
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
File renamed without changes.
File renamed without changes.
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,45 @@ | ||
# 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. | ||
from __future__ import annotations | ||
|
||
from typing import TYPE_CHECKING | ||
|
||
from airflow.providers.common.compat.assets import Asset | ||
from airflow.providers.google.cloud.hooks.gcs import _parse_gcs_url | ||
|
||
if TYPE_CHECKING: | ||
from urllib.parse import SplitResult | ||
|
||
from airflow.providers.common.compat.openlineage.facet import Dataset as OpenLineageDataset | ||
|
||
|
||
def create_asset(*, bucket: str, key: str, extra: dict | None = None) -> Asset: | ||
return Asset(uri=f"gs://{bucket}/{key}", extra=extra) | ||
|
||
|
||
def sanitize_uri(uri: SplitResult) -> SplitResult: | ||
if not uri.netloc: | ||
raise ValueError("URI format gs:// must contain a bucket name") | ||
return uri | ||
|
||
|
||
def convert_asset_to_openlineage(asset: Asset, lineage_context) -> OpenLineageDataset: | ||
"""Translate Asset with valid AIP-60 uri to OpenLineage with assistance from the hook.""" | ||
from airflow.providers.common.compat.openlineage.facet import Dataset as OpenLineageDataset | ||
|
||
bucket, key = _parse_gcs_url(asset.uri) | ||
return OpenLineageDataset(namespace=f"gs://{bucket}", name=key if key else "/") |
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
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
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
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,74 @@ | ||
# 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. | ||
from __future__ import annotations | ||
|
||
import urllib.parse | ||
|
||
import pytest | ||
|
||
from airflow.providers.common.compat.assets import Asset | ||
from airflow.providers.google.assets.gcs import convert_asset_to_openlineage, create_asset, sanitize_uri | ||
|
||
|
||
def test_sanitize_uri(): | ||
uri = sanitize_uri(urllib.parse.urlsplit("gs://bucket/dir/file.txt")) | ||
result = sanitize_uri(uri) | ||
assert result.scheme == "gs" | ||
assert result.netloc == "bucket" | ||
assert result.path == "/dir/file.txt" | ||
|
||
|
||
def test_sanitize_uri_no_netloc(): | ||
with pytest.raises(ValueError): | ||
sanitize_uri(urllib.parse.urlsplit("gs://")) | ||
|
||
|
||
def test_sanitize_uri_no_path(): | ||
uri = sanitize_uri(urllib.parse.urlsplit("gs://bucket")) | ||
result = sanitize_uri(uri) | ||
assert result.scheme == "gs" | ||
assert result.netloc == "bucket" | ||
assert result.path == "" | ||
|
||
|
||
def test_create_asset(): | ||
assert create_asset(bucket="test-bucket", key="test-path") == Asset(uri="gs://test-bucket/test-path") | ||
assert create_asset(bucket="test-bucket", key="test-dir/test-path") == Asset( | ||
uri="gs://test-bucket/test-dir/test-path" | ||
) | ||
|
||
|
||
def test_sanitize_uri_trailing_slash(): | ||
uri = sanitize_uri(urllib.parse.urlsplit("gs://bucket/")) | ||
result = sanitize_uri(uri) | ||
assert result.scheme == "gs" | ||
assert result.netloc == "bucket" | ||
assert result.path == "/" | ||
|
||
|
||
def test_convert_asset_to_openlineage_valid(): | ||
uri = "gs://bucket/dir/file.txt" | ||
ol_dataset = convert_asset_to_openlineage(asset=Asset(uri=uri), lineage_context=None) | ||
assert ol_dataset.namespace == "gs://bucket" | ||
assert ol_dataset.name == "dir/file.txt" | ||
|
||
|
||
@pytest.mark.parametrize("uri", ("gs://bucket", "gs://bucket/")) | ||
def test_convert_asset_to_openlineage_no_path(uri): | ||
ol_dataset = convert_asset_to_openlineage(asset=Asset(uri=uri), lineage_context=None) | ||
assert ol_dataset.namespace == "gs://bucket" | ||
assert ol_dataset.name == "/" |
Oops, something went wrong.