apache-airflow-providers-elasticsearch 5.3.0__tar.gz → 5.3.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.
- {apache_airflow_providers_elasticsearch-5.3.0 → apache_airflow_providers_elasticsearch-5.3.1rc1}/PKG-INFO +8 -8
- {apache_airflow_providers_elasticsearch-5.3.0 → apache_airflow_providers_elasticsearch-5.3.1rc1}/README.rst +3 -3
- {apache_airflow_providers_elasticsearch-5.3.0 → apache_airflow_providers_elasticsearch-5.3.1rc1}/airflow/providers/elasticsearch/__init__.py +1 -1
- {apache_airflow_providers_elasticsearch-5.3.0 → apache_airflow_providers_elasticsearch-5.3.1rc1}/airflow/providers/elasticsearch/get_provider_info.py +2 -1
- {apache_airflow_providers_elasticsearch-5.3.0 → apache_airflow_providers_elasticsearch-5.3.1rc1}/airflow/providers/elasticsearch/log/es_task_handler.py +1 -2
- {apache_airflow_providers_elasticsearch-5.3.0 → apache_airflow_providers_elasticsearch-5.3.1rc1}/pyproject.toml +5 -5
- {apache_airflow_providers_elasticsearch-5.3.0 → apache_airflow_providers_elasticsearch-5.3.1rc1}/airflow/providers/elasticsearch/LICENSE +0 -0
- {apache_airflow_providers_elasticsearch-5.3.0 → apache_airflow_providers_elasticsearch-5.3.1rc1}/airflow/providers/elasticsearch/hooks/__init__.py +0 -0
- {apache_airflow_providers_elasticsearch-5.3.0 → apache_airflow_providers_elasticsearch-5.3.1rc1}/airflow/providers/elasticsearch/hooks/elasticsearch.py +0 -0
- {apache_airflow_providers_elasticsearch-5.3.0 → apache_airflow_providers_elasticsearch-5.3.1rc1}/airflow/providers/elasticsearch/log/__init__.py +0 -0
- {apache_airflow_providers_elasticsearch-5.3.0 → apache_airflow_providers_elasticsearch-5.3.1rc1}/airflow/providers/elasticsearch/log/es_json_formatter.py +0 -0
- {apache_airflow_providers_elasticsearch-5.3.0 → apache_airflow_providers_elasticsearch-5.3.1rc1}/airflow/providers/elasticsearch/log/es_response.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apache-airflow-providers-elasticsearch
|
|
3
|
-
Version: 5.3.
|
|
3
|
+
Version: 5.3.1rc1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-elasticsearch for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,elasticsearch,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -20,13 +20,13 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
|
-
Requires-Dist: apache-airflow-providers-common-sql>=1.3.1
|
|
24
|
-
Requires-Dist: apache-airflow>=2.6.0
|
|
23
|
+
Requires-Dist: apache-airflow-providers-common-sql>=1.3.1.dev0
|
|
24
|
+
Requires-Dist: apache-airflow>=2.6.0.dev0
|
|
25
25
|
Requires-Dist: elasticsearch>=8.10,<9
|
|
26
26
|
Requires-Dist: apache-airflow-providers-common-sql ; extra == "common.sql"
|
|
27
27
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
28
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.
|
|
29
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.
|
|
28
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.1/changelog.html
|
|
29
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.1
|
|
30
30
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
31
31
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
32
32
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
|
@@ -77,7 +77,7 @@ Provides-Extra: common.sql
|
|
|
77
77
|
|
|
78
78
|
Package ``apache-airflow-providers-elasticsearch``
|
|
79
79
|
|
|
80
|
-
Release: ``5.3.
|
|
80
|
+
Release: ``5.3.1.rc1``
|
|
81
81
|
|
|
82
82
|
|
|
83
83
|
`Elasticsearch <https://www.elastic.co/elasticsearch>`__
|
|
@@ -90,7 +90,7 @@ This is a provider package for ``elasticsearch`` provider. All classes for this
|
|
|
90
90
|
are in ``airflow.providers.elasticsearch`` python package.
|
|
91
91
|
|
|
92
92
|
You can find package information and changelog for the provider
|
|
93
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.
|
|
93
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.1/>`_.
|
|
94
94
|
|
|
95
95
|
Installation
|
|
96
96
|
------------
|
|
@@ -132,4 +132,4 @@ Dependent package
|
|
|
132
132
|
============================================================================================================ ==============
|
|
133
133
|
|
|
134
134
|
The changelog for the provider package can be found in the
|
|
135
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.
|
|
135
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.1/changelog.html>`_.
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
|
|
43
43
|
Package ``apache-airflow-providers-elasticsearch``
|
|
44
44
|
|
|
45
|
-
Release: ``5.3.
|
|
45
|
+
Release: ``5.3.1.rc1``
|
|
46
46
|
|
|
47
47
|
|
|
48
48
|
`Elasticsearch <https://www.elastic.co/elasticsearch>`__
|
|
@@ -55,7 +55,7 @@ This is a provider package for ``elasticsearch`` provider. All classes for this
|
|
|
55
55
|
are in ``airflow.providers.elasticsearch`` python package.
|
|
56
56
|
|
|
57
57
|
You can find package information and changelog for the provider
|
|
58
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.
|
|
58
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.1/>`_.
|
|
59
59
|
|
|
60
60
|
Installation
|
|
61
61
|
------------
|
|
@@ -97,4 +97,4 @@ Dependent package
|
|
|
97
97
|
============================================================================================================ ==============
|
|
98
98
|
|
|
99
99
|
The changelog for the provider package can be found in the
|
|
100
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.
|
|
100
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.1/changelog.html>`_.
|
|
@@ -28,8 +28,9 @@ def get_provider_info():
|
|
|
28
28
|
"name": "Elasticsearch",
|
|
29
29
|
"description": "`Elasticsearch <https://www.elastic.co/elasticsearch>`__\n",
|
|
30
30
|
"suspended": False,
|
|
31
|
-
"source-date-epoch":
|
|
31
|
+
"source-date-epoch": 1703747600,
|
|
32
32
|
"versions": [
|
|
33
|
+
"5.3.1",
|
|
33
34
|
"5.3.0",
|
|
34
35
|
"5.2.0",
|
|
35
36
|
"5.1.1",
|
|
@@ -462,8 +462,7 @@ class ElasticsearchTaskHandler(FileTaskHandler, ExternalLoggingMixin, LoggingMix
|
|
|
462
462
|
if self.closed:
|
|
463
463
|
return
|
|
464
464
|
|
|
465
|
-
|
|
466
|
-
if not self.mark_end_on_close or getattr(self, "ctx_task_deferred", None):
|
|
465
|
+
if not self.mark_end_on_close:
|
|
467
466
|
# when we're closing due to task deferral, don't mark end of log
|
|
468
467
|
self.closed = True
|
|
469
468
|
return
|
|
@@ -28,7 +28,7 @@ build-backend = "flit_core.buildapi"
|
|
|
28
28
|
|
|
29
29
|
[project]
|
|
30
30
|
name = "apache-airflow-providers-elasticsearch"
|
|
31
|
-
version = "5.3.
|
|
31
|
+
version = "5.3.1.rc1"
|
|
32
32
|
description = "Provider package apache-airflow-providers-elasticsearch for Apache Airflow"
|
|
33
33
|
readme = "README.rst"
|
|
34
34
|
authors = [
|
|
@@ -55,14 +55,14 @@ classifiers = [
|
|
|
55
55
|
]
|
|
56
56
|
requires-python = "~=3.8"
|
|
57
57
|
dependencies = [
|
|
58
|
-
"apache-airflow-providers-common-sql>=1.3.1",
|
|
59
|
-
"apache-airflow>=2.6.0",
|
|
58
|
+
"apache-airflow-providers-common-sql>=1.3.1.dev0",
|
|
59
|
+
"apache-airflow>=2.6.0.dev0",
|
|
60
60
|
"elasticsearch>=8.10,<9",
|
|
61
61
|
]
|
|
62
62
|
|
|
63
63
|
[project.urls]
|
|
64
|
-
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.
|
|
65
|
-
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.
|
|
64
|
+
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.1"
|
|
65
|
+
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/5.3.1/changelog.html"
|
|
66
66
|
"Bug Tracker" = "https://github.com/apache/airflow/issues"
|
|
67
67
|
"Source Code" = "https://github.com/apache/airflow"
|
|
68
68
|
"Slack Chat" = "https://s.apache.org/airflow-slack"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|