apache-airflow-providers-apache-hive 8.1.0__py3-none-any.whl → 8.1.1__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.
- airflow/providers/apache/hive/__init__.py +3 -6
- airflow/providers/apache/hive/get_provider_info.py +2 -1
- airflow/providers/apache/hive/hooks/hive.py +3 -3
- {apache_airflow_providers_apache_hive-8.1.0.dist-info → apache_airflow_providers_apache_hive-8.1.1.dist-info}/METADATA +6 -6
- {apache_airflow_providers_apache_hive-8.1.0.dist-info → apache_airflow_providers_apache_hive-8.1.1.dist-info}/RECORD +7 -7
- {apache_airflow_providers_apache_hive-8.1.0.dist-info → apache_airflow_providers_apache_hive-8.1.1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_apache_hive-8.1.0.dist-info → apache_airflow_providers_apache_hive-8.1.1.dist-info}/entry_points.txt +0 -0
|
@@ -25,14 +25,11 @@ from __future__ import annotations
|
|
|
25
25
|
|
|
26
26
|
import packaging.version
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
from airflow import __version__ as airflow_version
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
from airflow import __version__ as airflow_version
|
|
34
|
-
except ImportError:
|
|
35
|
-
from airflow.version import version as airflow_version
|
|
32
|
+
__version__ = "8.1.1"
|
|
36
33
|
|
|
37
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
38
35
|
"2.7.0"
|
|
@@ -28,8 +28,9 @@ def get_provider_info():
|
|
|
28
28
|
"name": "Apache Hive",
|
|
29
29
|
"description": "`Apache Hive <https://hive.apache.org/>`__\n",
|
|
30
30
|
"state": "ready",
|
|
31
|
-
"source-date-epoch":
|
|
31
|
+
"source-date-epoch": 1716286532,
|
|
32
32
|
"versions": [
|
|
33
|
+
"8.1.1",
|
|
33
34
|
"8.1.0",
|
|
34
35
|
"8.0.0",
|
|
35
36
|
"7.0.1",
|
|
@@ -128,7 +128,7 @@ class HiveCliHook(BaseHook):
|
|
|
128
128
|
"principal": StringField(
|
|
129
129
|
lazy_gettext("Principal"), widget=BS3TextFieldWidget(), default="hive/_HOST@EXAMPLE.COM"
|
|
130
130
|
),
|
|
131
|
-
"high_availability": BooleanField(lazy_gettext("High Availability"), default=False),
|
|
131
|
+
"high_availability": BooleanField(lazy_gettext("High Availability mode"), default=False),
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
@classmethod
|
|
@@ -160,10 +160,10 @@ class HiveCliHook(BaseHook):
|
|
|
160
160
|
self._validate_beeline_parameters(conn)
|
|
161
161
|
if self.high_availability:
|
|
162
162
|
jdbc_url = f"jdbc:hive2://{conn.host}/{conn.schema}"
|
|
163
|
-
self.log.info("High Availability
|
|
163
|
+
self.log.info("High Availability selected, setting JDBC url as %s", jdbc_url)
|
|
164
164
|
else:
|
|
165
165
|
jdbc_url = f"jdbc:hive2://{conn.host}:{conn.port}/{conn.schema}"
|
|
166
|
-
self.log.info("High Availability not
|
|
166
|
+
self.log.info("High Availability not selected, setting JDBC url as %s", jdbc_url)
|
|
167
167
|
if conf.get("core", "security") == "kerberos":
|
|
168
168
|
template = conn.extra_dejson.get("principal", "hive/_HOST@EXAMPLE.COM")
|
|
169
169
|
if "_HOST" in template:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apache-airflow-providers-apache-hive
|
|
3
|
-
Version: 8.1.
|
|
3
|
+
Version: 8.1.1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-apache-hive for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,apache.hive,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -35,8 +35,8 @@ Requires-Dist: apache-airflow-providers-presto ; extra == "presto"
|
|
|
35
35
|
Requires-Dist: apache-airflow-providers-samba ; extra == "samba"
|
|
36
36
|
Requires-Dist: apache-airflow-providers-vertica ; extra == "vertica"
|
|
37
37
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
38
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.
|
|
39
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.
|
|
38
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.1/changelog.html
|
|
39
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.1
|
|
40
40
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
41
41
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
42
42
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
|
@@ -93,7 +93,7 @@ Provides-Extra: vertica
|
|
|
93
93
|
|
|
94
94
|
Package ``apache-airflow-providers-apache-hive``
|
|
95
95
|
|
|
96
|
-
Release: ``8.1.
|
|
96
|
+
Release: ``8.1.1``
|
|
97
97
|
|
|
98
98
|
|
|
99
99
|
`Apache Hive <https://hive.apache.org/>`__
|
|
@@ -106,7 +106,7 @@ This is a provider package for ``apache.hive`` provider. All classes for this pr
|
|
|
106
106
|
are in ``airflow.providers.apache.hive`` python package.
|
|
107
107
|
|
|
108
108
|
You can find package information and changelog for the provider
|
|
109
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.
|
|
109
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.1/>`_.
|
|
110
110
|
|
|
111
111
|
Installation
|
|
112
112
|
------------
|
|
@@ -157,4 +157,4 @@ Dependent package
|
|
|
157
157
|
====================================================================================================================== ===================
|
|
158
158
|
|
|
159
159
|
The changelog for the provider package can be found in the
|
|
160
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.
|
|
160
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.1/changelog.html>`_.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
airflow/providers/apache/hive/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
|
|
2
|
-
airflow/providers/apache/hive/__init__.py,sha256=
|
|
3
|
-
airflow/providers/apache/hive/get_provider_info.py,sha256=
|
|
2
|
+
airflow/providers/apache/hive/__init__.py,sha256=DUMrsgQD5veUyJw0kda96ygwANBmZexa0YjyErmhT88,1498
|
|
3
|
+
airflow/providers/apache/hive/get_provider_info.py,sha256=W3XNiVP5d84tiff9qL5OqP0xGP5vuhtlEvLLM3hrDzI,6872
|
|
4
4
|
airflow/providers/apache/hive/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
5
|
-
airflow/providers/apache/hive/hooks/hive.py,sha256=
|
|
5
|
+
airflow/providers/apache/hive/hooks/hive.py,sha256=N9WzqwXL3OMx-D9UC8cOymvERDY-Ki9NW1x1GJ71P8Q,42884
|
|
6
6
|
airflow/providers/apache/hive/macros/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
7
7
|
airflow/providers/apache/hive/macros/hive.py,sha256=p3LUIb74pbthh8lcUXV6f3m-cZrcRXjV8aGiazdpnzo,4592
|
|
8
8
|
airflow/providers/apache/hive/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
@@ -21,7 +21,7 @@ airflow/providers/apache/hive/transfers/mssql_to_hive.py,sha256=bnhHsen0qqgenQD2
|
|
|
21
21
|
airflow/providers/apache/hive/transfers/mysql_to_hive.py,sha256=eULN-LsKagLF8k2rKfyfOD0np1lvIxbNLjRL2DvUgrU,6625
|
|
22
22
|
airflow/providers/apache/hive/transfers/s3_to_hive.py,sha256=s5OOVnDy3Cm21Ypbp2Gjxff7LhHFb1hFtZI30b8xj-Q,11750
|
|
23
23
|
airflow/providers/apache/hive/transfers/vertica_to_hive.py,sha256=3REqZwpdgNo5PFsDV-8wXWyt9XtmemyETT5sq6ABBT0,5519
|
|
24
|
-
apache_airflow_providers_apache_hive-8.1.
|
|
25
|
-
apache_airflow_providers_apache_hive-8.1.
|
|
26
|
-
apache_airflow_providers_apache_hive-8.1.
|
|
27
|
-
apache_airflow_providers_apache_hive-8.1.
|
|
24
|
+
apache_airflow_providers_apache_hive-8.1.1.dist-info/entry_points.txt,sha256=Hzixt33mYYldwmwswarArUB7ZU0xbmUtd3tFViZ414s,185
|
|
25
|
+
apache_airflow_providers_apache_hive-8.1.1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
26
|
+
apache_airflow_providers_apache_hive-8.1.1.dist-info/METADATA,sha256=El_H9M3S7qlbKBOsKey0HR81CERFQV6bSadMLN2ewnw,7862
|
|
27
|
+
apache_airflow_providers_apache_hive-8.1.1.dist-info/RECORD,,
|
|
File without changes
|