apache-airflow-providers-elasticsearch 6.2.1__tar.gz → 6.2.2__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-elasticsearch might be problematic. Click here for more details.
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/PKG-INFO +8 -8
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/README.rst +4 -4
- apache_airflow_providers_elasticsearch-6.2.2/docs/.latest-doc-only-change.txt +1 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/changelog.rst +824 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/commits.rst +808 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/conf.py +27 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/configurations-ref.rst +19 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/connections/elasticsearch.rst +79 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/hooks/elasticsearch_python_hook.rst +42 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/hooks/elasticsearch_sql_hook.rst +32 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/hooks/index.rst +25 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/index.rst +136 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/installing-providers-from-sources.rst +18 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/integration-logos/Elasticsearch.png +0 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/logging/index.rst +126 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/redirects.txt +1 -0
- apache_airflow_providers_elasticsearch-6.2.2/docs/security.rst +18 -0
- apache_airflow_providers_elasticsearch-6.2.2/provider.yaml +209 -0
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/pyproject.toml +22 -6
- apache_airflow_providers_elasticsearch-6.2.2/src/airflow/__init__.py +17 -0
- apache_airflow_providers_elasticsearch-6.2.2/src/airflow/providers/__init__.py +17 -0
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/src/airflow/providers/elasticsearch/__init__.py +1 -1
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/src/airflow/providers/elasticsearch/get_provider_info.py +0 -56
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/src/airflow/providers/elasticsearch/hooks/elasticsearch.py +7 -4
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/src/airflow/providers/elasticsearch/log/es_task_handler.py +2 -4
- apache_airflow_providers_elasticsearch-6.2.2/tests/conftest.py +19 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/system/__init__.py +17 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/system/elasticsearch/__init__.py +16 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/system/elasticsearch/example_elasticsearch_query.py +87 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/unit/__init__.py +17 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/unit/elasticsearch/__init__.py +17 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/unit/elasticsearch/hooks/__init__.py +17 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/unit/elasticsearch/hooks/test_elasticsearch.py +244 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/unit/elasticsearch/log/__init__.py +16 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/unit/elasticsearch/log/elasticmock/__init__.py +113 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/unit/elasticsearch/log/elasticmock/fake_elasticsearch.py +519 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/unit/elasticsearch/log/elasticmock/utilities/__init__.py +232 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/unit/elasticsearch/log/test_es_json_formatter.py +90 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/unit/elasticsearch/log/test_es_response.py +211 -0
- apache_airflow_providers_elasticsearch-6.2.2/tests/unit/elasticsearch/log/test_es_task_handler.py +922 -0
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/src/airflow/providers/elasticsearch/LICENSE +0 -0
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/src/airflow/providers/elasticsearch/hooks/__init__.py +0 -0
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/src/airflow/providers/elasticsearch/log/__init__.py +0 -0
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/src/airflow/providers/elasticsearch/log/es_json_formatter.py +0 -0
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/src/airflow/providers/elasticsearch/log/es_response.py +0 -0
- {apache_airflow_providers_elasticsearch-6.2.1 → apache_airflow_providers_elasticsearch-6.2.2}/src/airflow/providers/elasticsearch/version_compat.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-elasticsearch
|
|
3
|
-
Version: 6.2.
|
|
3
|
+
Version: 6.2.2
|
|
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>
|
|
@@ -24,11 +24,11 @@ Requires-Dist: apache-airflow>=2.9.0
|
|
|
24
24
|
Requires-Dist: apache-airflow-providers-common-sql>=1.20.0
|
|
25
25
|
Requires-Dist: elasticsearch>=8.10,<9
|
|
26
26
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
27
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.
|
|
28
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.
|
|
27
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.2/changelog.html
|
|
28
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.2
|
|
29
|
+
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
29
30
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
30
31
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
31
|
-
Project-URL: Twitter, https://x.com/ApacheAirflow
|
|
32
32
|
Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
33
33
|
|
|
34
34
|
|
|
@@ -56,7 +56,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
|
56
56
|
|
|
57
57
|
Package ``apache-airflow-providers-elasticsearch``
|
|
58
58
|
|
|
59
|
-
Release: ``6.2.
|
|
59
|
+
Release: ``6.2.2``
|
|
60
60
|
|
|
61
61
|
|
|
62
62
|
`Elasticsearch <https://www.elastic.co/elasticsearch>`__
|
|
@@ -69,7 +69,7 @@ This is a provider package for ``elasticsearch`` provider. All classes for this
|
|
|
69
69
|
are in ``airflow.providers.elasticsearch`` python package.
|
|
70
70
|
|
|
71
71
|
You can find package information and changelog for the provider
|
|
72
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.
|
|
72
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.2/>`_.
|
|
73
73
|
|
|
74
74
|
Installation
|
|
75
75
|
------------
|
|
@@ -95,7 +95,7 @@ Cross provider package dependencies
|
|
|
95
95
|
-----------------------------------
|
|
96
96
|
|
|
97
97
|
Those are dependencies that might be needed in order to use all the features of the package.
|
|
98
|
-
You need to install the specified
|
|
98
|
+
You need to install the specified providers in order to use them.
|
|
99
99
|
|
|
100
100
|
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
101
101
|
|
|
@@ -111,5 +111,5 @@ Dependent package
|
|
|
111
111
|
============================================================================================================ ==============
|
|
112
112
|
|
|
113
113
|
The changelog for the provider package can be found in the
|
|
114
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.
|
|
114
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.2/changelog.html>`_.
|
|
115
115
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
Package ``apache-airflow-providers-elasticsearch``
|
|
25
25
|
|
|
26
|
-
Release: ``6.2.
|
|
26
|
+
Release: ``6.2.2``
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
`Elasticsearch <https://www.elastic.co/elasticsearch>`__
|
|
@@ -36,7 +36,7 @@ This is a provider package for ``elasticsearch`` provider. All classes for this
|
|
|
36
36
|
are in ``airflow.providers.elasticsearch`` python package.
|
|
37
37
|
|
|
38
38
|
You can find package information and changelog for the provider
|
|
39
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.
|
|
39
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.2/>`_.
|
|
40
40
|
|
|
41
41
|
Installation
|
|
42
42
|
------------
|
|
@@ -62,7 +62,7 @@ Cross provider package dependencies
|
|
|
62
62
|
-----------------------------------
|
|
63
63
|
|
|
64
64
|
Those are dependencies that might be needed in order to use all the features of the package.
|
|
65
|
-
You need to install the specified
|
|
65
|
+
You need to install the specified providers in order to use them.
|
|
66
66
|
|
|
67
67
|
You can install such cross-provider dependencies when installing from PyPI. For example:
|
|
68
68
|
|
|
@@ -78,4 +78,4 @@ Dependent package
|
|
|
78
78
|
============================================================================================================ ==============
|
|
79
79
|
|
|
80
80
|
The changelog for the provider package can be found in the
|
|
81
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.
|
|
81
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.2/changelog.html>`_.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
7b2ec33c7ad4998d9c9735b79593fcdcd3b9dd1f
|