apache-airflow-providers-openlineage 1.9.0rc2__py3-none-any.whl → 1.9.1rc1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of apache-airflow-providers-openlineage might be problematic. Click here for more details.
- airflow/providers/openlineage/__init__.py +1 -1
- airflow/providers/openlineage/get_provider_info.py +2 -1
- airflow/providers/openlineage/utils/utils.py +5 -4
- {apache_airflow_providers_openlineage-1.9.0rc2.dist-info → apache_airflow_providers_openlineage-1.9.1rc1.dist-info}/METADATA +6 -6
- {apache_airflow_providers_openlineage-1.9.0rc2.dist-info → apache_airflow_providers_openlineage-1.9.1rc1.dist-info}/RECORD +7 -7
- {apache_airflow_providers_openlineage-1.9.0rc2.dist-info → apache_airflow_providers_openlineage-1.9.1rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_openlineage-1.9.0rc2.dist-info → apache_airflow_providers_openlineage-1.9.1rc1.dist-info}/entry_points.txt +0 -0
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "1.9.
|
|
32
|
+
__version__ = "1.9.1"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.7.0"
|
|
@@ -28,8 +28,9 @@ def get_provider_info():
|
|
|
28
28
|
"name": "OpenLineage Airflow",
|
|
29
29
|
"description": "`OpenLineage <https://openlineage.io/>`__\n",
|
|
30
30
|
"state": "ready",
|
|
31
|
-
"source-date-epoch":
|
|
31
|
+
"source-date-epoch": 1720423723,
|
|
32
32
|
"versions": [
|
|
33
|
+
"1.9.1",
|
|
33
34
|
"1.9.0",
|
|
34
35
|
"1.8.0",
|
|
35
36
|
"1.7.1",
|
|
@@ -371,12 +371,13 @@ def _get_parsed_dag_tree(dag: DAG) -> dict:
|
|
|
371
371
|
# Determine the level by counting the leading spaces, assuming 4 spaces per level
|
|
372
372
|
# as defined in airflow.models.dag.DAG._generate_tree_view()
|
|
373
373
|
level = (len(line) - len(stripped_line)) // 4
|
|
374
|
-
# airflow.models.baseoperator.BaseOperator.__repr__
|
|
375
|
-
#
|
|
376
|
-
|
|
374
|
+
# airflow.models.baseoperator.BaseOperator.__repr__ or
|
|
375
|
+
# airflow.models.mappedoperator.MappedOperator.__repr__ is used in DAG tree
|
|
376
|
+
# <Task({op_class}): {task_id}> or <Mapped({op_class}): {task_id}>
|
|
377
|
+
match = re.match(r"^<(?:Task|Mapped)\(.+\): (.+)>$", stripped_line)
|
|
377
378
|
if not match:
|
|
378
379
|
return {}
|
|
379
|
-
current_task_id = match[
|
|
380
|
+
current_task_id = match[1]
|
|
380
381
|
|
|
381
382
|
if level == 0: # It's a root task
|
|
382
383
|
task_dict[current_task_id] = {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apache-airflow-providers-openlineage
|
|
3
|
-
Version: 1.9.
|
|
3
|
+
Version: 1.9.1rc1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-openlineage for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,openlineage,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -28,8 +28,8 @@ Requires-Dist: openlineage-integration-common>=1.16.0
|
|
|
28
28
|
Requires-Dist: openlineage-python>=1.16.0
|
|
29
29
|
Requires-Dist: apache-airflow-providers-common-sql ; extra == "common.sql"
|
|
30
30
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
31
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/1.9.
|
|
32
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/1.9.
|
|
31
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/1.9.1/changelog.html
|
|
32
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/1.9.1
|
|
33
33
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
34
34
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
35
35
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
|
@@ -80,7 +80,7 @@ Provides-Extra: common.sql
|
|
|
80
80
|
|
|
81
81
|
Package ``apache-airflow-providers-openlineage``
|
|
82
82
|
|
|
83
|
-
Release: ``1.9.
|
|
83
|
+
Release: ``1.9.1.rc1``
|
|
84
84
|
|
|
85
85
|
|
|
86
86
|
`OpenLineage <https://openlineage.io/>`__
|
|
@@ -93,7 +93,7 @@ This is a provider package for ``openlineage`` provider. All classes for this pr
|
|
|
93
93
|
are in ``airflow.providers.openlineage`` python package.
|
|
94
94
|
|
|
95
95
|
You can find package information and changelog for the provider
|
|
96
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/1.9.
|
|
96
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/1.9.1/>`_.
|
|
97
97
|
|
|
98
98
|
Installation
|
|
99
99
|
------------
|
|
@@ -137,4 +137,4 @@ Dependent package
|
|
|
137
137
|
============================================================================================================ ==============
|
|
138
138
|
|
|
139
139
|
The changelog for the provider package can be found in the
|
|
140
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/1.9.
|
|
140
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/1.9.1/changelog.html>`_.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
airflow/providers/openlineage/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
|
|
2
|
-
airflow/providers/openlineage/__init__.py,sha256=
|
|
2
|
+
airflow/providers/openlineage/__init__.py,sha256=bDqRpjqfCE-UNXjjy8Ph6IFG8z5fdRrKJ9pOcX_nVuU,1498
|
|
3
3
|
airflow/providers/openlineage/conf.py,sha256=ZHUZF3wjFGupfFa40F1DjZSkOQJCUtWFyQM3nvz6Bq4,5099
|
|
4
|
-
airflow/providers/openlineage/get_provider_info.py,sha256=
|
|
4
|
+
airflow/providers/openlineage/get_provider_info.py,sha256=diZ2iRGa-47G5qbtylQ6gIXnN8rHXhTFmSK_mnJoaeE,7493
|
|
5
5
|
airflow/providers/openlineage/sqlparser.py,sha256=qX2ID75PH11-youFvRdRHqZbYzLdbm95H3STvbBzGb8,15667
|
|
6
6
|
airflow/providers/openlineage/extractors/__init__.py,sha256=I0X4f6zUniclyD9zT0DFHRImpCpJVP4MkPJT3cd7X5I,1081
|
|
7
7
|
airflow/providers/openlineage/extractors/base.py,sha256=D-ll2cz_WWv1XYh2_UfzmpCl8S5iC2aptFTy2sWZeHY,5499
|
|
@@ -21,8 +21,8 @@ airflow/providers/openlineage/plugins/openlineage.py,sha256=rsRUW_zpXVAglzsgQRv5
|
|
|
21
21
|
airflow/providers/openlineage/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
22
22
|
airflow/providers/openlineage/utils/selective_enable.py,sha256=dFJ7wK7J_-BFwcOKp9tqFOSrASV3lmLv7HtRkEuMk3Q,3087
|
|
23
23
|
airflow/providers/openlineage/utils/sql.py,sha256=5K3qFhevq-R4CDUZbq-XfFKPLWixIOtaypRem3jiHvw,9534
|
|
24
|
-
airflow/providers/openlineage/utils/utils.py,sha256=
|
|
25
|
-
apache_airflow_providers_openlineage-1.9.
|
|
26
|
-
apache_airflow_providers_openlineage-1.9.
|
|
27
|
-
apache_airflow_providers_openlineage-1.9.
|
|
28
|
-
apache_airflow_providers_openlineage-1.9.
|
|
24
|
+
airflow/providers/openlineage/utils/utils.py,sha256=cmPynb5QqZRV6Wzya-6cEcJUrCZjYm-4r4Z6NxwMzCc,19962
|
|
25
|
+
apache_airflow_providers_openlineage-1.9.1rc1.dist-info/entry_points.txt,sha256=GAx0_i2OeZzqaiiiYuA-xchICDXiCT5kVqpKSxsOjt4,214
|
|
26
|
+
apache_airflow_providers_openlineage-1.9.1rc1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
27
|
+
apache_airflow_providers_openlineage-1.9.1rc1.dist-info/METADATA,sha256=cpdfyvkD4hS06JXXEo35YhQDptTqeTkxCJdtz6ssY5o,6381
|
|
28
|
+
apache_airflow_providers_openlineage-1.9.1rc1.dist-info/RECORD,,
|
|
File without changes
|