apache-airflow-providers-edge3 1.0.0rc1__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 (71) hide show
  1. apache_airflow_providers_edge3-1.0.0rc1/PKG-INFO +117 -0
  2. apache_airflow_providers_edge3-1.0.0rc1/README.rst +81 -0
  3. apache_airflow_providers_edge3-1.0.0rc1/docs/changelog.rst +439 -0
  4. apache_airflow_providers_edge3-1.0.0rc1/docs/cli-ref.rst +24 -0
  5. apache_airflow_providers_edge3-1.0.0rc1/docs/commits.rst +163 -0
  6. apache_airflow_providers_edge3-1.0.0rc1/docs/conf.py +27 -0
  7. apache_airflow_providers_edge3-1.0.0rc1/docs/configurations-ref.rst +19 -0
  8. apache_airflow_providers_edge3-1.0.0rc1/docs/edge_executor.rst +330 -0
  9. apache_airflow_providers_edge3-1.0.0rc1/docs/img/worker_hosts.png +0 -0
  10. apache_airflow_providers_edge3-1.0.0rc1/docs/img/worker_maintenance.png +0 -0
  11. apache_airflow_providers_edge3-1.0.0rc1/docs/index.rst +124 -0
  12. apache_airflow_providers_edge3-1.0.0rc1/docs/install_on_windows.rst +80 -0
  13. apache_airflow_providers_edge3-1.0.0rc1/docs/installing-providers-from-sources.rst +18 -0
  14. apache_airflow_providers_edge3-1.0.0rc1/docs/security.rst +18 -0
  15. apache_airflow_providers_edge3-1.0.0rc1/provider.yaml +110 -0
  16. apache_airflow_providers_edge3-1.0.0rc1/pyproject.toml +122 -0
  17. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/__init__.py +17 -0
  18. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/__init__.py +17 -0
  19. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/LICENSE +201 -0
  20. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/__init__.py +39 -0
  21. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/cli/__init__.py +16 -0
  22. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/cli/api_client.py +206 -0
  23. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/cli/dataclasses.py +95 -0
  24. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/cli/edge_command.py +689 -0
  25. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/example_dags/__init__.py +16 -0
  26. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/example_dags/integration_test.py +164 -0
  27. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/example_dags/win_notepad.py +83 -0
  28. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/example_dags/win_test.py +342 -0
  29. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/executors/__init__.py +22 -0
  30. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/executors/edge_executor.py +367 -0
  31. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/get_provider_info.py +99 -0
  32. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/models/__init__.py +16 -0
  33. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/models/edge_job.py +94 -0
  34. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/models/edge_logs.py +73 -0
  35. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/models/edge_worker.py +230 -0
  36. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/openapi/__init__.py +19 -0
  37. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/openapi/edge_worker_api_v1.yaml +808 -0
  38. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/plugins/__init__.py +16 -0
  39. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/plugins/edge_executor_plugin.py +229 -0
  40. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/plugins/templates/edge_worker_hosts.html +175 -0
  41. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/plugins/templates/edge_worker_jobs.html +69 -0
  42. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/version_compat.py +36 -0
  43. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/worker_api/__init__.py +17 -0
  44. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/worker_api/app.py +43 -0
  45. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/worker_api/auth.py +135 -0
  46. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/worker_api/datamodels.py +190 -0
  47. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/worker_api/routes/__init__.py +16 -0
  48. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/worker_api/routes/_v2_compat.py +135 -0
  49. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/worker_api/routes/_v2_routes.py +237 -0
  50. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/worker_api/routes/health.py +28 -0
  51. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/worker_api/routes/jobs.py +162 -0
  52. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/worker_api/routes/logs.py +133 -0
  53. apache_airflow_providers_edge3-1.0.0rc1/src/airflow/providers/edge3/worker_api/routes/worker.py +224 -0
  54. apache_airflow_providers_edge3-1.0.0rc1/tests/conftest.py +19 -0
  55. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/__init__.py +17 -0
  56. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/__init__.py +16 -0
  57. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/cli/__init__.py +17 -0
  58. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/cli/test_api_client.py +88 -0
  59. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/cli/test_dataclasses.py +41 -0
  60. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/cli/test_edge_command.py +397 -0
  61. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/executors/__init__.py +16 -0
  62. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/executors/test_edge_executor.py +337 -0
  63. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/models/__init__.py +17 -0
  64. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/plugins/__init__.py +17 -0
  65. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/plugins/test_edge_executor_plugin.py +103 -0
  66. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/worker_api/__init__.py +17 -0
  67. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/worker_api/routes/__init__.py +17 -0
  68. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/worker_api/routes/test_health.py +23 -0
  69. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/worker_api/routes/test_jobs.py +96 -0
  70. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/worker_api/routes/test_logs.py +78 -0
  71. apache_airflow_providers_edge3-1.0.0rc1/tests/unit/edge3/worker_api/routes/test_worker.py +213 -0
@@ -0,0 +1,117 @@
1
+ Metadata-Version: 2.4
2
+ Name: apache-airflow-providers-edge3
3
+ Version: 1.0.0rc1
4
+ Summary: Provider package apache-airflow-providers-edge3 for Apache Airflow
5
+ Keywords: airflow-provider,edge3,airflow,integration
6
+ Author-email: Apache Software Foundation <dev@airflow.apache.org>
7
+ Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
8
+ Requires-Python: ~=3.9
9
+ Description-Content-Type: text/x-rst
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Environment :: Console
12
+ Classifier: Environment :: Web Environment
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: System Administrators
15
+ Classifier: Framework :: Apache Airflow
16
+ Classifier: Framework :: Apache Airflow :: Provider
17
+ Classifier: License :: OSI Approved :: Apache Software License
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Topic :: System :: Monitoring
23
+ Requires-Dist: apache-airflow>=2.10.0rc0
24
+ Requires-Dist: pydantic>=2.11.0
25
+ Requires-Dist: retryhttp>=1.2.0,!=1.3.0
26
+ Requires-Dist: apache-airflow-providers-fab ; extra == "fab"
27
+ Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
28
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.0.0/changelog.html
29
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.0.0
30
+ Project-URL: Mastodon, https://fosstodon.org/@airflow
31
+ Project-URL: Slack Chat, https://s.apache.org/airflow-slack
32
+ Project-URL: Source Code, https://github.com/apache/airflow
33
+ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
34
+ Provides-Extra: fab
35
+
36
+
37
+ .. Licensed to the Apache Software Foundation (ASF) under one
38
+ or more contributor license agreements. See the NOTICE file
39
+ distributed with this work for additional information
40
+ regarding copyright ownership. The ASF licenses this file
41
+ to you under the Apache License, Version 2.0 (the
42
+ "License"); you may not use this file except in compliance
43
+ with the License. You may obtain a copy of the License at
44
+
45
+ .. http://www.apache.org/licenses/LICENSE-2.0
46
+
47
+ .. Unless required by applicable law or agreed to in writing,
48
+ software distributed under the License is distributed on an
49
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
50
+ KIND, either express or implied. See the License for the
51
+ specific language governing permissions and limitations
52
+ under the License.
53
+
54
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
55
+
56
+ .. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
57
+ ``PROVIDER_README_TEMPLATE.rst.jinja2`` IN the ``dev/breeze/src/airflow_breeze/templates`` DIRECTORY
58
+
59
+ Package ``apache-airflow-providers-edge3``
60
+
61
+ Release: ``1.0.0``
62
+
63
+
64
+ Handle edge workers on remote sites via HTTP(s) connection and orchestrates work over distributed sites
65
+
66
+
67
+ Provider package
68
+ ----------------
69
+
70
+ This is a provider package for ``edge3`` provider. All classes for this provider package
71
+ are in ``airflow.providers.edge3`` python package.
72
+
73
+ You can find package information and changelog for the provider
74
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.0.0/>`_.
75
+
76
+ Installation
77
+ ------------
78
+
79
+ You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
80
+ for the minimum Airflow version supported) via
81
+ ``pip install apache-airflow-providers-edge3``
82
+
83
+ The package supports the following python versions: 3.9,3.10,3.11,3.12
84
+
85
+ Requirements
86
+ ------------
87
+
88
+ ================== ===================
89
+ PIP package Version required
90
+ ================== ===================
91
+ ``apache-airflow`` ``>=2.10.0``
92
+ ``pydantic`` ``>=2.11.0``
93
+ ``retryhttp`` ``>=1.2.0,!=1.3.0``
94
+ ================== ===================
95
+
96
+ Cross provider package dependencies
97
+ -----------------------------------
98
+
99
+ Those are dependencies that might be needed in order to use all the features of the package.
100
+ You need to install the specified providers in order to use them.
101
+
102
+ You can install such cross-provider dependencies when installing from PyPI. For example:
103
+
104
+ .. code-block:: bash
105
+
106
+ pip install apache-airflow-providers-edge3[fab]
107
+
108
+
109
+ ============================================================================================== =======
110
+ Dependent package Extra
111
+ ============================================================================================== =======
112
+ `apache-airflow-providers-fab <https://airflow.apache.org/docs/apache-airflow-providers-fab>`_ ``fab``
113
+ ============================================================================================== =======
114
+
115
+ The changelog for the provider package can be found in the
116
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.0.0/changelog.html>`_.
117
+
@@ -0,0 +1,81 @@
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
+ .. NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE OVERWRITTEN!
20
+
21
+ .. IF YOU WANT TO MODIFY TEMPLATE FOR THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
22
+ ``PROVIDER_README_TEMPLATE.rst.jinja2`` IN the ``dev/breeze/src/airflow_breeze/templates`` DIRECTORY
23
+
24
+ Package ``apache-airflow-providers-edge3``
25
+
26
+ Release: ``1.0.0``
27
+
28
+
29
+ Handle edge workers on remote sites via HTTP(s) connection and orchestrates work over distributed sites
30
+
31
+
32
+ Provider package
33
+ ----------------
34
+
35
+ This is a provider package for ``edge3`` provider. All classes for this provider package
36
+ are in ``airflow.providers.edge3`` python package.
37
+
38
+ You can find package information and changelog for the provider
39
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.0.0/>`_.
40
+
41
+ Installation
42
+ ------------
43
+
44
+ You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
45
+ for the minimum Airflow version supported) via
46
+ ``pip install apache-airflow-providers-edge3``
47
+
48
+ The package supports the following python versions: 3.9,3.10,3.11,3.12
49
+
50
+ Requirements
51
+ ------------
52
+
53
+ ================== ===================
54
+ PIP package Version required
55
+ ================== ===================
56
+ ``apache-airflow`` ``>=2.10.0``
57
+ ``pydantic`` ``>=2.11.0``
58
+ ``retryhttp`` ``>=1.2.0,!=1.3.0``
59
+ ================== ===================
60
+
61
+ Cross provider package dependencies
62
+ -----------------------------------
63
+
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 providers in order to use them.
66
+
67
+ You can install such cross-provider dependencies when installing from PyPI. For example:
68
+
69
+ .. code-block:: bash
70
+
71
+ pip install apache-airflow-providers-edge3[fab]
72
+
73
+
74
+ ============================================================================================== =======
75
+ Dependent package Extra
76
+ ============================================================================================== =======
77
+ `apache-airflow-providers-fab <https://airflow.apache.org/docs/apache-airflow-providers-fab>`_ ``fab``
78
+ ============================================================================================== =======
79
+
80
+ The changelog for the provider package can be found in the
81
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-edge3/1.0.0/changelog.html>`_.
@@ -0,0 +1,439 @@
1
+ .. Licensed to the Apache Software Foundation (ASF) under one
2
+ or more contributor license agreements. See the NOTICE file
3
+ distributed with this work for additional information
4
+ regarding copyright ownership. The ASF licenses this file
5
+ to you under the Apache License, Version 2.0 (the
6
+ "License"); you may not use this file except in compliance
7
+ with the License. You may obtain a copy of the License at
8
+
9
+ .. http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ .. Unless required by applicable law or agreed to in writing,
12
+ software distributed under the License is distributed on an
13
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ KIND, either express or implied. See the License for the
15
+ specific language governing permissions and limitations
16
+ under the License.
17
+
18
+
19
+ .. NOTE TO CONTRIBUTORS:
20
+ Please, only add notes to the Changelog just below the "Changelog" header when there are some breaking changes
21
+ and you want to add an explanation to the users on how they are supposed to deal with them.
22
+ The changelog is updated and maintained semi-automatically by release manager.
23
+
24
+ ``apache-airflow-providers-edge3``
25
+
26
+
27
+ Changelog
28
+ ---------
29
+
30
+ 1.0.0
31
+ .....
32
+
33
+ Initial stable version of the provider.
34
+
35
+ 0.20.3b1
36
+ ..........
37
+
38
+ Fix
39
+ ~~~
40
+
41
+ * ``Cleanup redundant hostname lookup and migrate to core hostname function.``
42
+
43
+
44
+ 0.20.2b1
45
+ ..........
46
+
47
+ Fix
48
+ ~~~
49
+
50
+ * ``Fix hostname reporting - worker will consistently report defined hostname as task runner.``
51
+
52
+
53
+ 0.20.1pre0
54
+ ..........
55
+
56
+ Fix
57
+ ~~~
58
+
59
+ * ``Fix JWT token auth in Airflow 3 beta as JWT mechanism changed.``
60
+
61
+
62
+ 0.20.0pre0
63
+ ..........
64
+
65
+ Misc
66
+ ~~~~
67
+
68
+ * ``Edge worker exports not ti.start and ti.finished metrics.``
69
+
70
+
71
+ 0.19.0pre0
72
+ ..........
73
+
74
+ Misc
75
+ ~~~~
76
+
77
+ * ``Edge worker can be set to maintenance via CLI and also return to normal operation.``
78
+
79
+
80
+
81
+ 0.18.1pre0
82
+ ..........
83
+
84
+ Fix
85
+ ~~~
86
+
87
+ * ``Edge worker will not jump to maintenance request from offline maintenance during shut down.``
88
+
89
+
90
+ 0.18.0pre0
91
+ ..........
92
+
93
+ Misc
94
+ ~~~~
95
+
96
+ * ``CLI allows to retrieve status of worker.``
97
+
98
+
99
+ 0.17.0pre0
100
+ ..........
101
+
102
+ Misc
103
+ ~~~~
104
+
105
+ * ``CLI allows to wait until edge worker is completed when stopping.``
106
+
107
+
108
+ 0.16.0pre0
109
+ ..........
110
+
111
+ Misc
112
+ ~~~~
113
+
114
+ * ``User who entered the maintenance mode is moved to the start of the comment.``
115
+
116
+
117
+ 0.15.0pre0
118
+ ..........
119
+
120
+ Misc
121
+ ~~~~
122
+
123
+ * ``User and time information added to maintenance comment.``
124
+
125
+
126
+ 0.14.1pre0
127
+ ..........
128
+
129
+ Fix
130
+ ~~~
131
+
132
+ * ``Wrap the sql query in text() to make it executable.``
133
+
134
+
135
+ 0.14.0pre0
136
+ ..........
137
+
138
+ Misc
139
+ ~~~~
140
+
141
+ * ``Add maintenance comment field, to make maintenance reason transparent.``
142
+
143
+
144
+ 0.13.1pre0
145
+ ..........
146
+
147
+ Fix
148
+ ~~~
149
+
150
+ * ``EdgeWorkerVersionException is raised if http 400 is responded on set_state.``
151
+
152
+ 0.13.0pre0
153
+ ..........
154
+
155
+ Misc
156
+ ~~~~
157
+
158
+ * ``Allow removing an Edge worker that is offline.``
159
+
160
+ Fixes
161
+ ~~~~~
162
+
163
+ * ``Implement proper CSRF protection on plugin form.``
164
+
165
+ 0.12.0pre0
166
+ ..........
167
+
168
+ Misc
169
+ ~~~~
170
+
171
+ * ``An Edge worker can remember maintenance mode in case of shut down. It picks up maintenance state at startup.``
172
+
173
+ 0.11.0pre0
174
+ ..........
175
+
176
+ Misc
177
+ ~~~~
178
+
179
+ * ``Add the option to set edge workers to maintenance mode via UI plugin and API.``
180
+
181
+ 0.10.2pre0
182
+ ..........
183
+
184
+ Misc
185
+ ~~~~
186
+
187
+ * ``Fix authentication for cases where webserver.base_url is not defined and worker is not using localhost in 2.10.``
188
+
189
+ 0.10.1pre0
190
+ ..........
191
+
192
+ Misc
193
+ ~~~~
194
+
195
+ * ``Re-add the feature to support pool slots in concurrency calculation for Airflow 3.``
196
+
197
+ 0.10.0pre0
198
+ ..........
199
+
200
+ Feature
201
+ ~~~~~~~
202
+
203
+ * ``Support Task execution interface (AIP-72) in Airflow 3. Experimental with ongoing development as AIP-72 is also under development.``
204
+
205
+ 0.9.7pre0
206
+ .........
207
+
208
+ Misc
209
+ ~~~~
210
+
211
+ * ``Make API retries configurable via ENV. Connection loss is sustained for 5min by default.``
212
+ * ``Align retry handling logic and tooling with Task SDK, via retryhttp.``
213
+
214
+ 0.9.6pre0
215
+ .........
216
+
217
+ Misc
218
+ ~~~~
219
+
220
+ * ``Replace null value in log file chunk with question mark to fix exception by pushing log into DB.``
221
+
222
+ 0.9.5pre0
223
+ .........
224
+
225
+ Misc
226
+ ~~~~
227
+
228
+ * ``Revert removal of Pydantic model support from PR 44552 to restore compatibility with Airflow 2.10.``
229
+
230
+ 0.9.4pre0
231
+ .........
232
+
233
+ Misc
234
+ ~~~~
235
+
236
+ * ``Fix to keep edge executor and edge job table in sync. Important in multi scheduler deployments.``
237
+
238
+ 0.9.3pre0
239
+ .........
240
+
241
+ Misc
242
+ ~~~~
243
+
244
+ * ``Handle purging of restarting edge jobs.``
245
+
246
+ 0.9.2pre0
247
+ .........
248
+
249
+ Misc
250
+ ~~~~
251
+
252
+ * ``Fix check edge worker api call authentication with different base url. Authentication failed when Airflow is not installed in webserver root.``
253
+
254
+ 0.9.1pre0
255
+ .........
256
+
257
+ Misc
258
+ ~~~~
259
+
260
+ * ``Make edge executor DB access is multi instance save.``
261
+
262
+ 0.9.0pre0
263
+ .........
264
+
265
+ Misc
266
+ ~~~~
267
+
268
+ * ``Remove dependency to Internal API after migration to FastAPI.``
269
+
270
+ 0.8.2pre0
271
+ .........
272
+
273
+ Misc
274
+ ~~~~
275
+
276
+ * ``Migrate worker job calls to FastAPI.``
277
+
278
+ 0.8.1pre0
279
+ .........
280
+
281
+ Misc
282
+ ~~~~
283
+
284
+ * ``Migrate worker log calls to FastAPI.``
285
+
286
+ 0.8.0pre0
287
+ .........
288
+
289
+ Misc
290
+ ~~~~
291
+
292
+ * ``Migrate worker registration and heartbeat to FastAPI.``
293
+
294
+ 0.7.1pre0
295
+ .........
296
+
297
+ Misc
298
+ ~~~~
299
+
300
+ * ``Edge worker state is sent as 0 to DB if offline or unknown.``
301
+
302
+ 0.7.0pre0
303
+ .........
304
+
305
+ Misc
306
+ ~~~~
307
+
308
+ * ``Edge worker supports concurrency slots feature so that jobs which need more concurrency blocking other jobs being executed on the same worker in parallel.``
309
+
310
+ 0.6.2pre0
311
+ .........
312
+
313
+ Misc
314
+ ~~~~
315
+
316
+ * ``Fix race that reporting status fails if the task has been cleaned in parallel.``
317
+
318
+ 0.6.1pre0
319
+ .........
320
+
321
+ Misc
322
+ ~~~~
323
+
324
+ * ``Update jobs or edge workers who have been killed to clean up job table.``
325
+
326
+ 0.6.0pre0
327
+ .........
328
+
329
+ Misc
330
+ ~~~~
331
+
332
+ * ``Support for FastAPI in Airflow 3 as API backend.``
333
+
334
+ 0.5.5pre0
335
+ .........
336
+
337
+ Misc
338
+ ~~~~
339
+
340
+ * ``Fixed reading none UTF-8 signs in log file.``
341
+
342
+ 0.5.4pre0
343
+ .........
344
+
345
+ Misc
346
+ ~~~~
347
+
348
+ * ``Fix SIGINT handling of child processes. Ensure graceful shutdown when SIGINT in received (not killing working tasks).``
349
+ * ``Fix SIGTERM handling of child processes. Ensure all childs are terminated on SIGTERM.``
350
+
351
+ 0.5.3pre0
352
+ .........
353
+
354
+ Misc
355
+ ~~~~
356
+
357
+ * ``Adding some links to host and job overview pages.``
358
+
359
+ 0.5.2pre0
360
+ .........
361
+
362
+ Misc
363
+ ~~~~
364
+
365
+ * ``Small beautification for host status in Edge Worker view.``
366
+
367
+ 0.5.1pre0
368
+ .........
369
+
370
+ Misc
371
+ ~~~~
372
+
373
+ * ``Remove warning about missing config in edge plugin loading.``
374
+
375
+ 0.5.0pre0
376
+ .........
377
+
378
+ Misc
379
+ ~~~~
380
+
381
+ * ``Edge worker triggers graceful shutdown, if worker version and main instance do not match.``
382
+
383
+ 0.4.0pre0
384
+ .........
385
+
386
+ Misc
387
+ ~~~~
388
+
389
+ * ``Edge Worker uploads log file in chunks. Chunk size can be defined by push_log_chunk_size value in config.``
390
+
391
+ 0.3.0pre0
392
+ .........
393
+
394
+ Misc
395
+ ~~~~
396
+
397
+ * ``Edge Worker exports metrics``
398
+ * ``State is set to unknown if worker heartbeat times out.``
399
+
400
+ 0.2.2re0
401
+ .........
402
+
403
+ Misc
404
+ ~~~~
405
+
406
+ * ``Fixed type confusion for PID file paths (#43308)``
407
+
408
+ 0.2.1re0
409
+ .........
410
+
411
+ Misc
412
+ ~~~~
413
+
414
+ * ``Fixed handling of PID files in Edge Worker (#43153)``
415
+
416
+ 0.2.0pre0
417
+ .........
418
+
419
+ Misc
420
+ ~~~~
421
+
422
+ * ``Edge Worker can add or remove queues in the queue field in the DB (#43115)``
423
+
424
+ 0.1.0pre0
425
+ .........
426
+
427
+
428
+ .. Below changes are excluded from the changelog. Move them to
429
+ appropriate section above if needed. Do not delete the lines(!):
430
+
431
+ 0.1.0
432
+ .....
433
+
434
+ |experimental|
435
+
436
+ Initial version of the provider.
437
+
438
+ .. note::
439
+ This provider is currently experimental
@@ -0,0 +1,24 @@
1
+ .. Licensed to the Apache Software Foundation (ASF) under one
2
+ or more contributor license agreements. See the NOTICE file
3
+ distributed with this work for additional information
4
+ regarding copyright ownership. The ASF licenses this file
5
+ to you under the Apache License, Version 2.0 (the
6
+ "License"); you may not use this file except in compliance
7
+ with the License. You may obtain a copy of the License at
8
+
9
+ .. http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ .. Unless required by applicable law or agreed to in writing,
12
+ software distributed under the License is distributed on an
13
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ KIND, either express or implied. See the License for the
15
+ specific language governing permissions and limitations
16
+ under the License.
17
+
18
+ Edge Executor Commands
19
+ ----------------------
20
+
21
+ .. argparse::
22
+ :module: airflow.providers.edge3.executors.edge_executor
23
+ :func: _get_parser
24
+ :prog: airflow