apache-airflow-providers-elasticsearch 6.2.1rc1__tar.gz → 6.4.0__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.
Files changed (47) hide show
  1. apache_airflow_providers_elasticsearch-6.4.0/NOTICE +5 -0
  2. {apache_airflow_providers_elasticsearch-6.2.1rc1 → apache_airflow_providers_elasticsearch-6.4.0}/PKG-INFO +33 -28
  3. {apache_airflow_providers_elasticsearch-6.2.1rc1 → apache_airflow_providers_elasticsearch-6.4.0}/README.rst +21 -19
  4. apache_airflow_providers_elasticsearch-6.4.0/docs/.latest-doc-only-change.txt +1 -0
  5. apache_airflow_providers_elasticsearch-6.4.0/docs/changelog.rst +954 -0
  6. apache_airflow_providers_elasticsearch-6.4.0/docs/commits.rst +35 -0
  7. apache_airflow_providers_elasticsearch-6.4.0/docs/conf.py +27 -0
  8. apache_airflow_providers_elasticsearch-6.4.0/docs/configurations-ref.rst +19 -0
  9. apache_airflow_providers_elasticsearch-6.4.0/docs/connections/elasticsearch.rst +79 -0
  10. apache_airflow_providers_elasticsearch-6.4.0/docs/hooks/elasticsearch_python_hook.rst +42 -0
  11. apache_airflow_providers_elasticsearch-6.4.0/docs/hooks/elasticsearch_sql_hook.rst +32 -0
  12. apache_airflow_providers_elasticsearch-6.4.0/docs/hooks/index.rst +25 -0
  13. apache_airflow_providers_elasticsearch-6.4.0/docs/index.rst +138 -0
  14. apache_airflow_providers_elasticsearch-6.4.0/docs/installing-providers-from-sources.rst +18 -0
  15. apache_airflow_providers_elasticsearch-6.4.0/docs/integration-logos/Elasticsearch.png +0 -0
  16. apache_airflow_providers_elasticsearch-6.4.0/docs/logging/index.rst +126 -0
  17. apache_airflow_providers_elasticsearch-6.4.0/docs/redirects.txt +1 -0
  18. apache_airflow_providers_elasticsearch-6.4.0/docs/security.rst +18 -0
  19. apache_airflow_providers_elasticsearch-6.4.0/provider.yaml +219 -0
  20. {apache_airflow_providers_elasticsearch-6.2.1rc1 → apache_airflow_providers_elasticsearch-6.4.0}/pyproject.toml +31 -12
  21. apache_airflow_providers_elasticsearch-6.4.0/src/airflow/__init__.py +17 -0
  22. apache_airflow_providers_elasticsearch-6.4.0/src/airflow/providers/__init__.py +17 -0
  23. {apache_airflow_providers_elasticsearch-6.2.1rc1 → apache_airflow_providers_elasticsearch-6.4.0}/src/airflow/providers/elasticsearch/__init__.py +3 -3
  24. {apache_airflow_providers_elasticsearch-6.2.1rc1 → apache_airflow_providers_elasticsearch-6.4.0}/src/airflow/providers/elasticsearch/get_provider_info.py +0 -56
  25. {apache_airflow_providers_elasticsearch-6.2.1rc1 → apache_airflow_providers_elasticsearch-6.4.0}/src/airflow/providers/elasticsearch/hooks/elasticsearch.py +24 -10
  26. {apache_airflow_providers_elasticsearch-6.2.1rc1 → apache_airflow_providers_elasticsearch-6.4.0}/src/airflow/providers/elasticsearch/log/es_task_handler.py +48 -51
  27. {apache_airflow_providers_elasticsearch-6.2.1rc1 → apache_airflow_providers_elasticsearch-6.4.0}/src/airflow/providers/elasticsearch/version_compat.py +3 -1
  28. apache_airflow_providers_elasticsearch-6.4.0/tests/conftest.py +19 -0
  29. apache_airflow_providers_elasticsearch-6.4.0/tests/system/__init__.py +17 -0
  30. apache_airflow_providers_elasticsearch-6.4.0/tests/system/elasticsearch/__init__.py +16 -0
  31. apache_airflow_providers_elasticsearch-6.4.0/tests/system/elasticsearch/example_elasticsearch_query.py +86 -0
  32. apache_airflow_providers_elasticsearch-6.4.0/tests/unit/__init__.py +17 -0
  33. apache_airflow_providers_elasticsearch-6.4.0/tests/unit/elasticsearch/__init__.py +17 -0
  34. apache_airflow_providers_elasticsearch-6.4.0/tests/unit/elasticsearch/hooks/__init__.py +17 -0
  35. apache_airflow_providers_elasticsearch-6.4.0/tests/unit/elasticsearch/hooks/test_elasticsearch.py +248 -0
  36. apache_airflow_providers_elasticsearch-6.4.0/tests/unit/elasticsearch/log/__init__.py +16 -0
  37. apache_airflow_providers_elasticsearch-6.4.0/tests/unit/elasticsearch/log/elasticmock/__init__.py +111 -0
  38. apache_airflow_providers_elasticsearch-6.4.0/tests/unit/elasticsearch/log/elasticmock/fake_elasticsearch.py +519 -0
  39. apache_airflow_providers_elasticsearch-6.4.0/tests/unit/elasticsearch/log/elasticmock/utilities/__init__.py +232 -0
  40. apache_airflow_providers_elasticsearch-6.4.0/tests/unit/elasticsearch/log/test_es_json_formatter.py +90 -0
  41. apache_airflow_providers_elasticsearch-6.4.0/tests/unit/elasticsearch/log/test_es_response.py +211 -0
  42. apache_airflow_providers_elasticsearch-6.4.0/tests/unit/elasticsearch/log/test_es_task_handler.py +965 -0
  43. {apache_airflow_providers_elasticsearch-6.2.1rc1/src/airflow/providers/elasticsearch → apache_airflow_providers_elasticsearch-6.4.0}/LICENSE +0 -0
  44. {apache_airflow_providers_elasticsearch-6.2.1rc1 → apache_airflow_providers_elasticsearch-6.4.0}/src/airflow/providers/elasticsearch/hooks/__init__.py +0 -0
  45. {apache_airflow_providers_elasticsearch-6.2.1rc1 → apache_airflow_providers_elasticsearch-6.4.0}/src/airflow/providers/elasticsearch/log/__init__.py +0 -0
  46. {apache_airflow_providers_elasticsearch-6.2.1rc1 → apache_airflow_providers_elasticsearch-6.4.0}/src/airflow/providers/elasticsearch/log/es_json_formatter.py +0 -0
  47. {apache_airflow_providers_elasticsearch-6.2.1rc1 → apache_airflow_providers_elasticsearch-6.4.0}/src/airflow/providers/elasticsearch/log/es_response.py +0 -0
@@ -0,0 +1,5 @@
1
+ Apache Airflow
2
+ Copyright 2016-2025 The Apache Software Foundation
3
+
4
+ This product includes software developed at
5
+ The Apache Software Foundation (http://www.apache.org/).
@@ -1,12 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-elasticsearch
3
- Version: 6.2.1rc1
3
+ Version: 6.4.0
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>
7
7
  Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
8
- Requires-Python: ~=3.9
8
+ Requires-Python: >=3.10
9
9
  Description-Content-Type: text/x-rst
10
+ License-Expression: Apache-2.0
10
11
  Classifier: Development Status :: 5 - Production/Stable
11
12
  Classifier: Environment :: Console
12
13
  Classifier: Environment :: Web Environment
@@ -14,21 +15,23 @@ Classifier: Intended Audience :: Developers
14
15
  Classifier: Intended Audience :: System Administrators
15
16
  Classifier: Framework :: Apache Airflow
16
17
  Classifier: Framework :: Apache Airflow :: Provider
17
- Classifier: License :: OSI Approved :: Apache Software License
18
- Classifier: Programming Language :: Python :: 3.9
19
18
  Classifier: Programming Language :: Python :: 3.10
20
19
  Classifier: Programming Language :: Python :: 3.11
21
20
  Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
22
  Classifier: Topic :: System :: Monitoring
23
- Requires-Dist: apache-airflow>=2.9.0rc0
24
- Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc0
23
+ License-File: LICENSE
24
+ License-File: NOTICE
25
+ Requires-Dist: apache-airflow>=2.11.0
26
+ Requires-Dist: apache-airflow-providers-common-compat>=1.8.0
27
+ Requires-Dist: apache-airflow-providers-common-sql>=1.27.0
25
28
  Requires-Dist: elasticsearch>=8.10,<9
26
29
  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.1/changelog.html
28
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.1
30
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.4.0/changelog.html
31
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.4.0
32
+ Project-URL: Mastodon, https://fosstodon.org/@airflow
29
33
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
30
34
  Project-URL: Source Code, https://github.com/apache/airflow
31
- Project-URL: Twitter, https://x.com/ApacheAirflow
32
35
  Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
33
36
 
34
37
 
@@ -56,7 +59,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
56
59
 
57
60
  Package ``apache-airflow-providers-elasticsearch``
58
61
 
59
- Release: ``6.2.1``
62
+ Release: ``6.4.0``
60
63
 
61
64
 
62
65
  `Elasticsearch <https://www.elastic.co/elasticsearch>`__
@@ -69,47 +72,49 @@ This is a provider package for ``elasticsearch`` provider. All classes for this
69
72
  are in ``airflow.providers.elasticsearch`` python package.
70
73
 
71
74
  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.1/>`_.
75
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.4.0/>`_.
73
76
 
74
77
  Installation
75
78
  ------------
76
79
 
77
- You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
80
+ You can install this package on top of an existing Airflow installation (see ``Requirements`` below
78
81
  for the minimum Airflow version supported) via
79
82
  ``pip install apache-airflow-providers-elasticsearch``
80
83
 
81
- The package supports the following python versions: 3.9,3.10,3.11,3.12
84
+ The package supports the following python versions: 3.10,3.11,3.12,3.13
82
85
 
83
86
  Requirements
84
87
  ------------
85
88
 
86
- ======================================= ==================
87
- PIP package Version required
88
- ======================================= ==================
89
- ``apache-airflow`` ``>=2.9.0``
90
- ``apache-airflow-providers-common-sql`` ``>=1.20.0``
91
- ``elasticsearch`` ``>=8.10,<9``
92
- ======================================= ==================
89
+ ========================================== ==================
90
+ PIP package Version required
91
+ ========================================== ==================
92
+ ``apache-airflow`` ``>=2.11.0``
93
+ ``apache-airflow-providers-common-compat`` ``>=1.8.0``
94
+ ``apache-airflow-providers-common-sql`` ``>=1.27.0``
95
+ ``elasticsearch`` ``>=8.10,<9``
96
+ ========================================== ==================
93
97
 
94
98
  Cross provider package dependencies
95
99
  -----------------------------------
96
100
 
97
101
  Those are dependencies that might be needed in order to use all the features of the package.
98
- You need to install the specified provider packages in order to use them.
102
+ You need to install the specified providers in order to use them.
99
103
 
100
104
  You can install such cross-provider dependencies when installing from PyPI. For example:
101
105
 
102
106
  .. code-block:: bash
103
107
 
104
- pip install apache-airflow-providers-elasticsearch[common.sql]
108
+ pip install apache-airflow-providers-elasticsearch[common.compat]
105
109
 
106
110
 
107
- ============================================================================================================ ==============
108
- Dependent package Extra
109
- ============================================================================================================ ==============
110
- `apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
111
- ============================================================================================================ ==============
111
+ ================================================================================================================== =================
112
+ Dependent package Extra
113
+ ================================================================================================================== =================
114
+ `apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
115
+ `apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
116
+ ================================================================================================================== =================
112
117
 
113
118
  The changelog for the provider package can be found in the
114
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.1/changelog.html>`_.
119
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.4.0/changelog.html>`_.
115
120
 
@@ -23,7 +23,7 @@
23
23
 
24
24
  Package ``apache-airflow-providers-elasticsearch``
25
25
 
26
- Release: ``6.2.1``
26
+ Release: ``6.4.0``
27
27
 
28
28
 
29
29
  `Elasticsearch <https://www.elastic.co/elasticsearch>`__
@@ -36,46 +36,48 @@ 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.1/>`_.
39
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.4.0/>`_.
40
40
 
41
41
  Installation
42
42
  ------------
43
43
 
44
- You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
44
+ You can install this package on top of an existing Airflow installation (see ``Requirements`` below
45
45
  for the minimum Airflow version supported) via
46
46
  ``pip install apache-airflow-providers-elasticsearch``
47
47
 
48
- The package supports the following python versions: 3.9,3.10,3.11,3.12
48
+ The package supports the following python versions: 3.10,3.11,3.12,3.13
49
49
 
50
50
  Requirements
51
51
  ------------
52
52
 
53
- ======================================= ==================
54
- PIP package Version required
55
- ======================================= ==================
56
- ``apache-airflow`` ``>=2.9.0``
57
- ``apache-airflow-providers-common-sql`` ``>=1.20.0``
58
- ``elasticsearch`` ``>=8.10,<9``
59
- ======================================= ==================
53
+ ========================================== ==================
54
+ PIP package Version required
55
+ ========================================== ==================
56
+ ``apache-airflow`` ``>=2.11.0``
57
+ ``apache-airflow-providers-common-compat`` ``>=1.8.0``
58
+ ``apache-airflow-providers-common-sql`` ``>=1.27.0``
59
+ ``elasticsearch`` ``>=8.10,<9``
60
+ ========================================== ==================
60
61
 
61
62
  Cross provider package dependencies
62
63
  -----------------------------------
63
64
 
64
65
  Those are dependencies that might be needed in order to use all the features of the package.
65
- You need to install the specified provider packages in order to use them.
66
+ You need to install the specified providers in order to use them.
66
67
 
67
68
  You can install such cross-provider dependencies when installing from PyPI. For example:
68
69
 
69
70
  .. code-block:: bash
70
71
 
71
- pip install apache-airflow-providers-elasticsearch[common.sql]
72
+ pip install apache-airflow-providers-elasticsearch[common.compat]
72
73
 
73
74
 
74
- ============================================================================================================ ==============
75
- Dependent package Extra
76
- ============================================================================================================ ==============
77
- `apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
78
- ============================================================================================================ ==============
75
+ ================================================================================================================== =================
76
+ Dependent package Extra
77
+ ================================================================================================================== =================
78
+ `apache-airflow-providers-common-compat <https://airflow.apache.org/docs/apache-airflow-providers-common-compat>`_ ``common.compat``
79
+ `apache-airflow-providers-common-sql <https://airflow.apache.org/docs/apache-airflow-providers-common-sql>`_ ``common.sql``
80
+ ================================================================================================================== =================
79
81
 
80
82
  The changelog for the provider package can be found in the
81
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.2.1/changelog.html>`_.
83
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/6.4.0/changelog.html>`_.
@@ -0,0 +1 @@
1
+ f620bcc40a69330ca0a8b47c77c3d699e6136606