Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions airflow-core/newsfragments/48528.significant.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
``SequentialExecutor`` has been removed from the in-tree executors.

This executor was primarily used for local testing but is now redundant, as ``LocalExecutor``
supports SQLite with WAL mode and provides better performance with parallel execution.
Users should switch to ``LocalExecutor`` or ``CeleryExecutor`` as alternatives.

* Types of change

* [ ] Dag changes
* [x] Config changes
* [ ] API changes
* [ ] CLI changes
* [x] Behaviour changes
* [ ] Plugin changes
* [ ] Dependency changes
* [ ] Code interface changes

* Migration rules needed

* ``airflow config lint``

* [ ] Convert all ``SequentialExecutor`` to ``LocalExecutor`` in ``[core] executor``
22 changes: 22 additions & 0 deletions airflow-core/newsfragments/48579.significant.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
``DebugExecutor`` has been removed from the in-tree executors.

This executor was primarily used for local testing but is now redundant, as ``LocalExecutor``
supports SQLite with WAL mode and provides better performance with parallel execution.
Users should switch to ``LocalExecutor`` or ``CeleryExecutor`` as alternatives.

* Types of change

* [ ] Dag changes
* [x] Config changes
* [ ] API changes
* [ ] CLI changes
* [x] Behaviour changes
* [ ] Plugin changes
* [ ] Dependency changes
* [ ] Code interface changes

* Migration rules needed

* ``airflow config lint``

* [ ] Convert all ``DebugExecutor`` to ``dag.test()`` when present in ``[core] executor``