apache-airflow-providers-teradata 3.0.0rc2__tar.gz → 3.0.1rc1__tar.gz
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-teradata might be problematic. Click here for more details.
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1}/PKG-INFO +10 -27
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1}/README.rst +4 -22
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1}/pyproject.toml +23 -16
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/LICENSE +0 -52
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/__init__.py +1 -1
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/get_provider_info.py +14 -14
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/operators/teradata.py +5 -1
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/operators/teradata_compute_cluster.py +10 -2
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/transfers/s3_to_teradata.py +5 -1
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/transfers/teradata_to_teradata.py +5 -1
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/hooks/__init__.py +0 -0
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/hooks/teradata.py +0 -0
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/operators/__init__.py +0 -0
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/transfers/__init__.py +0 -0
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/transfers/azure_blob_to_teradata.py +0 -0
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/triggers/__init__.py +0 -0
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/triggers/teradata_compute_cluster.py +0 -0
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/utils/__init__.py +0 -0
- {apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1/src}/airflow/providers/teradata/utils/constants.py +0 -0
{apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: apache-airflow-providers-teradata
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1rc1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-teradata for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,teradata,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -20,15 +20,15 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
|
-
Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc0
|
|
24
23
|
Requires-Dist: apache-airflow>=2.9.0rc0
|
|
25
|
-
Requires-Dist:
|
|
24
|
+
Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc0
|
|
26
25
|
Requires-Dist: teradatasqlalchemy>=17.20.0.0
|
|
26
|
+
Requires-Dist: teradatasql>=17.20.0.28
|
|
27
27
|
Requires-Dist: apache-airflow-providers-amazon ; extra == "amazon"
|
|
28
28
|
Requires-Dist: apache-airflow-providers-microsoft-azure ; extra == "microsoft-azure"
|
|
29
29
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
30
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.
|
|
31
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.
|
|
30
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.1/changelog.html
|
|
31
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.1
|
|
32
32
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
33
33
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
34
34
|
Project-URL: Twitter, https://x.com/ApacheAirflow
|
|
@@ -37,23 +37,6 @@ Provides-Extra: amazon
|
|
|
37
37
|
Provides-Extra: microsoft-azure
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
41
|
-
or more contributor license agreements. See the NOTICE file
|
|
42
|
-
distributed with this work for additional information
|
|
43
|
-
regarding copyright ownership. The ASF licenses this file
|
|
44
|
-
to you under the Apache License, Version 2.0 (the
|
|
45
|
-
"License"); you may not use this file except in compliance
|
|
46
|
-
with the License. You may obtain a copy of the License at
|
|
47
|
-
|
|
48
|
-
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
49
|
-
|
|
50
|
-
.. Unless required by applicable law or agreed to in writing,
|
|
51
|
-
software distributed under the License is distributed on an
|
|
52
|
-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
53
|
-
KIND, either express or implied. See the License for the
|
|
54
|
-
specific language governing permissions and limitations
|
|
55
|
-
under the License.
|
|
56
|
-
|
|
57
40
|
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
58
41
|
or more contributor license agreements. See the NOTICE file
|
|
59
42
|
distributed with this work for additional information
|
|
@@ -71,8 +54,7 @@ Provides-Extra: microsoft-azure
|
|
|
71
54
|
specific language governing permissions and limitations
|
|
72
55
|
under the License.
|
|
73
56
|
|
|
74
|
-
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
|
|
75
|
-
OVERWRITTEN WHEN PREPARING PACKAGES.
|
|
57
|
+
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
|
|
76
58
|
|
|
77
59
|
.. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
|
78
60
|
`PROVIDER_README_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
|
|
@@ -80,7 +62,7 @@ Provides-Extra: microsoft-azure
|
|
|
80
62
|
|
|
81
63
|
Package ``apache-airflow-providers-teradata``
|
|
82
64
|
|
|
83
|
-
Release: ``3.0.
|
|
65
|
+
Release: ``3.0.1``
|
|
84
66
|
|
|
85
67
|
|
|
86
68
|
`Teradata <https://www.teradata.com/>`__
|
|
@@ -93,7 +75,7 @@ This is a provider package for ``teradata`` provider. All classes for this provi
|
|
|
93
75
|
are in ``airflow.providers.teradata`` python package.
|
|
94
76
|
|
|
95
77
|
You can find package information and changelog for the provider
|
|
96
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.
|
|
78
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.1/>`_.
|
|
97
79
|
|
|
98
80
|
Installation
|
|
99
81
|
------------
|
|
@@ -138,4 +120,5 @@ Dependent package
|
|
|
138
120
|
====================================================================================================================== ===================
|
|
139
121
|
|
|
140
122
|
The changelog for the provider package can be found in the
|
|
141
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.
|
|
123
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.1/changelog.html>`_.
|
|
124
|
+
|
{apache_airflow_providers_teradata-3.0.0rc2 → apache_airflow_providers_teradata-3.0.1rc1}/README.rst
RENAMED
|
@@ -1,21 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
3
|
-
or more contributor license agreements. See the NOTICE file
|
|
4
|
-
distributed with this work for additional information
|
|
5
|
-
regarding copyright ownership. The ASF licenses this file
|
|
6
|
-
to you under the Apache License, Version 2.0 (the
|
|
7
|
-
"License"); you may not use this file except in compliance
|
|
8
|
-
with the License. You may obtain a copy of the License at
|
|
9
|
-
|
|
10
|
-
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
|
|
12
|
-
.. Unless required by applicable law or agreed to in writing,
|
|
13
|
-
software distributed under the License is distributed on an
|
|
14
|
-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
15
|
-
KIND, either express or implied. See the License for the
|
|
16
|
-
specific language governing permissions and limitations
|
|
17
|
-
under the License.
|
|
18
|
-
|
|
19
2
|
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
20
3
|
or more contributor license agreements. See the NOTICE file
|
|
21
4
|
distributed with this work for additional information
|
|
@@ -33,8 +16,7 @@
|
|
|
33
16
|
specific language governing permissions and limitations
|
|
34
17
|
under the License.
|
|
35
18
|
|
|
36
|
-
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
|
|
37
|
-
OVERWRITTEN WHEN PREPARING PACKAGES.
|
|
19
|
+
.. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
|
|
38
20
|
|
|
39
21
|
.. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
|
40
22
|
`PROVIDER_README_TEMPLATE.rst.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
|
|
@@ -42,7 +24,7 @@
|
|
|
42
24
|
|
|
43
25
|
Package ``apache-airflow-providers-teradata``
|
|
44
26
|
|
|
45
|
-
Release: ``3.0.
|
|
27
|
+
Release: ``3.0.1``
|
|
46
28
|
|
|
47
29
|
|
|
48
30
|
`Teradata <https://www.teradata.com/>`__
|
|
@@ -55,7 +37,7 @@ This is a provider package for ``teradata`` provider. All classes for this provi
|
|
|
55
37
|
are in ``airflow.providers.teradata`` python package.
|
|
56
38
|
|
|
57
39
|
You can find package information and changelog for the provider
|
|
58
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.
|
|
40
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.1/>`_.
|
|
59
41
|
|
|
60
42
|
Installation
|
|
61
43
|
------------
|
|
@@ -100,4 +82,4 @@ Dependent package
|
|
|
100
82
|
====================================================================================================================== ===================
|
|
101
83
|
|
|
102
84
|
The changelog for the provider package can be found in the
|
|
103
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.
|
|
85
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.1/changelog.html>`_.
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
3
2
|
# or more contributor license agreements. See the NOTICE file
|
|
4
3
|
# distributed with this work for additional information
|
|
@@ -16,10 +15,9 @@
|
|
|
16
15
|
# specific language governing permissions and limitations
|
|
17
16
|
# under the License.
|
|
18
17
|
|
|
19
|
-
# NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
|
|
20
|
-
# OVERWRITTEN WHEN PREPARING PACKAGES.
|
|
18
|
+
# NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
|
|
21
19
|
|
|
22
|
-
# IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
|
20
|
+
# IF YOU WANT TO MODIFY THIS FILE EXCEPT DEPENDENCIES, YOU SHOULD MODIFY THE TEMPLATE
|
|
23
21
|
# `pyproject_TEMPLATE.toml.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
|
|
24
22
|
[build-system]
|
|
25
23
|
requires = ["flit_core==3.10.1"]
|
|
@@ -27,7 +25,7 @@ build-backend = "flit_core.buildapi"
|
|
|
27
25
|
|
|
28
26
|
[project]
|
|
29
27
|
name = "apache-airflow-providers-teradata"
|
|
30
|
-
version = "3.0.
|
|
28
|
+
version = "3.0.1.rc1"
|
|
31
29
|
description = "Provider package apache-airflow-providers-teradata for Apache Airflow"
|
|
32
30
|
readme = "README.rst"
|
|
33
31
|
authors = [
|
|
@@ -53,16 +51,29 @@ classifiers = [
|
|
|
53
51
|
"Topic :: System :: Monitoring",
|
|
54
52
|
]
|
|
55
53
|
requires-python = "~=3.9"
|
|
54
|
+
|
|
55
|
+
# The dependencies should be modified in place in the generated file
|
|
56
|
+
# Any change in the dependencies is preserved when the file is regenerated
|
|
56
57
|
dependencies = [
|
|
57
|
-
"apache-airflow-providers-common-sql>=1.20.0rc0",
|
|
58
58
|
"apache-airflow>=2.9.0rc0",
|
|
59
|
-
"
|
|
59
|
+
"apache-airflow-providers-common-sql>=1.20.0rc0",
|
|
60
60
|
"teradatasqlalchemy>=17.20.0.0",
|
|
61
|
+
"teradatasql>=17.20.0.28",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
# The optional dependencies should be modified in place in the generated file
|
|
65
|
+
# Any change in the dependencies is preserved when the file is regenerated
|
|
66
|
+
[project.optional-dependencies]
|
|
67
|
+
"microsoft.azure" = [
|
|
68
|
+
"apache-airflow-providers-microsoft-azure",
|
|
69
|
+
]
|
|
70
|
+
"amazon" = [
|
|
71
|
+
"apache-airflow-providers-amazon",
|
|
61
72
|
]
|
|
62
73
|
|
|
63
74
|
[project.urls]
|
|
64
|
-
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.
|
|
65
|
-
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.
|
|
75
|
+
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.1"
|
|
76
|
+
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-teradata/3.0.1/changelog.html"
|
|
66
77
|
"Bug Tracker" = "https://github.com/apache/airflow/issues"
|
|
67
78
|
"Source Code" = "https://github.com/apache/airflow"
|
|
68
79
|
"Slack Chat" = "https://s.apache.org/airflow-slack"
|
|
@@ -71,13 +82,9 @@ dependencies = [
|
|
|
71
82
|
|
|
72
83
|
[project.entry-points."apache_airflow_provider"]
|
|
73
84
|
provider_info = "airflow.providers.teradata.get_provider_info:get_provider_info"
|
|
74
|
-
[project.optional-dependencies]
|
|
75
|
-
"amazon" = [
|
|
76
|
-
"apache-airflow-providers-amazon",
|
|
77
|
-
]
|
|
78
|
-
"microsoft.azure" = [
|
|
79
|
-
"apache-airflow-providers-microsoft-azure",
|
|
80
|
-
]
|
|
81
85
|
|
|
82
86
|
[tool.flit.module]
|
|
83
87
|
name = "airflow.providers.teradata"
|
|
88
|
+
|
|
89
|
+
[tool.pytest.ini_options]
|
|
90
|
+
ignore = "tests/system/"
|
|
@@ -199,55 +199,3 @@ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
199
199
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
200
|
See the License for the specific language governing permissions and
|
|
201
201
|
limitations under the License.
|
|
202
|
-
|
|
203
|
-
============================================================================
|
|
204
|
-
APACHE AIRFLOW SUBCOMPONENTS:
|
|
205
|
-
|
|
206
|
-
The Apache Airflow project contains subcomponents with separate copyright
|
|
207
|
-
notices and license terms. Your use of the source code for the these
|
|
208
|
-
subcomponents is subject to the terms and conditions of the following
|
|
209
|
-
licenses.
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
========================================================================
|
|
213
|
-
Third party Apache 2.0 licenses
|
|
214
|
-
========================================================================
|
|
215
|
-
|
|
216
|
-
The following components are provided under the Apache 2.0 License.
|
|
217
|
-
See project link for details. The text of each license is also included
|
|
218
|
-
at 3rd-party-licenses/LICENSE-[project].txt.
|
|
219
|
-
|
|
220
|
-
(ALv2 License) hue v4.3.0 (https://github.com/cloudera/hue/)
|
|
221
|
-
(ALv2 License) jqclock v2.3.0 (https://github.com/JohnRDOrazio/jQuery-Clock-Plugin)
|
|
222
|
-
(ALv2 License) bootstrap3-typeahead v4.0.2 (https://github.com/bassjobsen/Bootstrap-3-Typeahead)
|
|
223
|
-
(ALv2 License) connexion v2.7.0 (https://github.com/zalando/connexion)
|
|
224
|
-
|
|
225
|
-
========================================================================
|
|
226
|
-
MIT licenses
|
|
227
|
-
========================================================================
|
|
228
|
-
|
|
229
|
-
The following components are provided under the MIT License. See project link for details.
|
|
230
|
-
The text of each license is also included at 3rd-party-licenses/LICENSE-[project].txt.
|
|
231
|
-
|
|
232
|
-
(MIT License) jquery v3.5.1 (https://jquery.org/license/)
|
|
233
|
-
(MIT License) dagre-d3 v0.6.4 (https://github.com/cpettitt/dagre-d3)
|
|
234
|
-
(MIT License) bootstrap v3.4.1 (https://github.com/twbs/bootstrap/)
|
|
235
|
-
(MIT License) d3-tip v0.9.1 (https://github.com/Caged/d3-tip)
|
|
236
|
-
(MIT License) dataTables v1.10.25 (https://datatables.net)
|
|
237
|
-
(MIT License) normalize.css v3.0.2 (http://necolas.github.io/normalize.css/)
|
|
238
|
-
(MIT License) ElasticMock v1.3.2 (https://github.com/vrcmarcos/elasticmock)
|
|
239
|
-
(MIT License) MomentJS v2.24.0 (http://momentjs.com/)
|
|
240
|
-
(MIT License) eonasdan-bootstrap-datetimepicker v4.17.49 (https://github.com/eonasdan/bootstrap-datetimepicker/)
|
|
241
|
-
|
|
242
|
-
========================================================================
|
|
243
|
-
BSD 3-Clause licenses
|
|
244
|
-
========================================================================
|
|
245
|
-
The following components are provided under the BSD 3-Clause license. See project links for details.
|
|
246
|
-
The text of each license is also included at 3rd-party-licenses/LICENSE-[project].txt.
|
|
247
|
-
|
|
248
|
-
(BSD 3 License) d3 v5.16.0 (https://d3js.org)
|
|
249
|
-
(BSD 3 License) d3-shape v2.1.0 (https://github.com/d3/d3-shape)
|
|
250
|
-
(BSD 3 License) cgroupspy 0.2.1 (https://github.com/cloudsigma/cgroupspy)
|
|
251
|
-
|
|
252
|
-
========================================================================
|
|
253
|
-
See 3rd-party-licenses/LICENSES-ui.txt for packages used in `/airflow/www`
|
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "3.0.
|
|
32
|
+
__version__ = "3.0.1"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.9.0"
|
|
@@ -15,8 +15,7 @@
|
|
|
15
15
|
# specific language governing permissions and limitations
|
|
16
16
|
# under the License.
|
|
17
17
|
|
|
18
|
-
# NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
|
|
19
|
-
# OVERWRITTEN WHEN PREPARING PACKAGES.
|
|
18
|
+
# NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
|
|
20
19
|
#
|
|
21
20
|
# IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
|
22
21
|
# `get_provider_info_TEMPLATE.py.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
|
|
@@ -28,8 +27,9 @@ def get_provider_info():
|
|
|
28
27
|
"name": "Teradata",
|
|
29
28
|
"description": "`Teradata <https://www.teradata.com/>`__\n",
|
|
30
29
|
"state": "ready",
|
|
31
|
-
"source-date-epoch":
|
|
30
|
+
"source-date-epoch": 1739964578,
|
|
32
31
|
"versions": [
|
|
32
|
+
"3.0.1",
|
|
33
33
|
"3.0.0",
|
|
34
34
|
"2.6.1",
|
|
35
35
|
"2.6.0",
|
|
@@ -41,16 +41,6 @@ def get_provider_info():
|
|
|
41
41
|
"2.1.0",
|
|
42
42
|
"2.0.0",
|
|
43
43
|
],
|
|
44
|
-
"dependencies": [
|
|
45
|
-
"apache-airflow>=2.9.0",
|
|
46
|
-
"apache-airflow-providers-common-sql>=1.20.0",
|
|
47
|
-
"teradatasqlalchemy>=17.20.0.0",
|
|
48
|
-
"teradatasql>=17.20.0.28",
|
|
49
|
-
],
|
|
50
|
-
"additional-extras": [
|
|
51
|
-
{"name": "microsoft.azure", "dependencies": ["apache-airflow-providers-microsoft-azure"]},
|
|
52
|
-
{"name": "amazon", "dependencies": ["apache-airflow-providers-amazon"]},
|
|
53
|
-
],
|
|
54
44
|
"integrations": [
|
|
55
45
|
{
|
|
56
46
|
"integration-name": "Teradata",
|
|
@@ -59,7 +49,7 @@ def get_provider_info():
|
|
|
59
49
|
"/docs/apache-airflow-providers-teradata/operators/teradata.rst",
|
|
60
50
|
"/docs/apache-airflow-providers-teradata/operators/compute_cluster.rst",
|
|
61
51
|
],
|
|
62
|
-
"logo": "/integration-logos/
|
|
52
|
+
"logo": "/docs/integration-logos/Teradata.png",
|
|
63
53
|
"tags": ["software"],
|
|
64
54
|
}
|
|
65
55
|
],
|
|
@@ -107,4 +97,14 @@ def get_provider_info():
|
|
|
107
97
|
"python-modules": ["airflow.providers.teradata.triggers.teradata_compute_cluster"],
|
|
108
98
|
}
|
|
109
99
|
],
|
|
100
|
+
"dependencies": [
|
|
101
|
+
"apache-airflow>=2.9.0",
|
|
102
|
+
"apache-airflow-providers-common-sql>=1.20.0",
|
|
103
|
+
"teradatasqlalchemy>=17.20.0.0",
|
|
104
|
+
"teradatasql>=17.20.0.28",
|
|
105
|
+
],
|
|
106
|
+
"optional-dependencies": {
|
|
107
|
+
"microsoft.azure": ["apache-airflow-providers-microsoft-azure"],
|
|
108
|
+
"amazon": ["apache-airflow-providers-amazon"],
|
|
109
|
+
},
|
|
110
110
|
}
|
|
@@ -25,7 +25,11 @@ from airflow.providers.common.sql.operators.sql import SQLExecuteQueryOperator
|
|
|
25
25
|
from airflow.providers.teradata.hooks.teradata import TeradataHook
|
|
26
26
|
|
|
27
27
|
if TYPE_CHECKING:
|
|
28
|
-
|
|
28
|
+
try:
|
|
29
|
+
from airflow.sdk.definitions.context import Context
|
|
30
|
+
except ImportError:
|
|
31
|
+
# TODO: Remove once provider drops support for Airflow 2
|
|
32
|
+
from airflow.utils.context import Context
|
|
29
33
|
|
|
30
34
|
|
|
31
35
|
class TeradataOperator(SQLExecuteQueryOperator):
|
|
@@ -28,7 +28,11 @@ from airflow.providers.teradata.hooks.teradata import TeradataHook
|
|
|
28
28
|
from airflow.providers.teradata.utils.constants import Constants
|
|
29
29
|
|
|
30
30
|
if TYPE_CHECKING:
|
|
31
|
-
|
|
31
|
+
try:
|
|
32
|
+
from airflow.sdk.definitions.context import Context
|
|
33
|
+
except ImportError:
|
|
34
|
+
# TODO: Remove once provider drops support for Airflow 2
|
|
35
|
+
from airflow.utils.context import Context
|
|
32
36
|
|
|
33
37
|
from collections.abc import Sequence
|
|
34
38
|
from datetime import timedelta
|
|
@@ -37,7 +41,11 @@ from typing import TYPE_CHECKING, Any, cast
|
|
|
37
41
|
from airflow.providers.teradata.triggers.teradata_compute_cluster import TeradataComputeClusterSyncTrigger
|
|
38
42
|
|
|
39
43
|
if TYPE_CHECKING:
|
|
40
|
-
|
|
44
|
+
try:
|
|
45
|
+
from airflow.sdk.definitions.context import Context
|
|
46
|
+
except ImportError:
|
|
47
|
+
# TODO: Remove once provider drops support for Airflow 2
|
|
48
|
+
from airflow.utils.context import Context
|
|
41
49
|
|
|
42
50
|
from airflow.exceptions import AirflowException
|
|
43
51
|
|
|
@@ -32,7 +32,11 @@ except ModuleNotFoundError as e:
|
|
|
32
32
|
from airflow.providers.teradata.hooks.teradata import TeradataHook
|
|
33
33
|
|
|
34
34
|
if TYPE_CHECKING:
|
|
35
|
-
|
|
35
|
+
try:
|
|
36
|
+
from airflow.sdk.definitions.context import Context
|
|
37
|
+
except ImportError:
|
|
38
|
+
# TODO: Remove once provider drops support for Airflow 2
|
|
39
|
+
from airflow.utils.context import Context
|
|
36
40
|
|
|
37
41
|
|
|
38
42
|
class S3ToTeradataOperator(BaseOperator):
|
|
@@ -25,7 +25,11 @@ from airflow.models import BaseOperator
|
|
|
25
25
|
from airflow.providers.teradata.hooks.teradata import TeradataHook
|
|
26
26
|
|
|
27
27
|
if TYPE_CHECKING:
|
|
28
|
-
|
|
28
|
+
try:
|
|
29
|
+
from airflow.sdk.definitions.context import Context
|
|
30
|
+
except ImportError:
|
|
31
|
+
# TODO: Remove once provider drops support for Airflow 2
|
|
32
|
+
from airflow.utils.context import Context
|
|
29
33
|
|
|
30
34
|
|
|
31
35
|
class TeradataToTeradataOperator(BaseOperator):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|