This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a change to branch v2-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git.
discard 7e79747 Fix DAG run state not updated while DAG is paused (#16343)
discard 3386b12 Run mini scheduler in LocalTaskJob during task exit (#16289)
discard effbee1 Revert "Fix DAG run state not updated while DAG is paused
(#16343)"
new c009c2a Run mini scheduler in LocalTaskJob during task exit (#16289)
new 5a38d8e Fix external elasticsearch logs link (#16357)
new f31e36a Move DagFileProcessor and DagFileProcessorProcess out of
scheduler_job.py (#16581)
new 2bab3d4 Add 'queued' state to DagRun (#16401)
new f4c95c5 Add 'queued' to DagRunState (#16854)
new a76a0df Fix race condition with dagrun callbacks (#16741)
new a3879b2 Add Pytest fixture to create dag and dagrun and use it on
local task job tests (#16889)
new 96092eb Fix task retries when they receive sigkill and have retries
and properly handle sigterm (#16301)
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (7e79747)
\
N -- N -- N refs/heads/v2-1-test (96092eb)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/boring-cyborg.yml | 2 +-
airflow/api_connexion/openapi/v1.yaml | 4 +-
.../hooks => airflow/dag_processing}/__init__.py | 0
.../manager.py} | 0
airflow/dag_processing/processor.py | 650 ++++++++++++++
airflow/jobs/local_task_job.py | 40 +-
airflow/jobs/scheduler_job.py | 812 ++---------------
...3827b8_add_queued_at_column_to_dagrun_table.py} | 25 +-
airflow/models/dag.py | 10 +-
airflow/models/dagrun.py | 31 +-
airflow/models/taskinstance.py | 8 +-
.../providers/elasticsearch/log/es_task_handler.py | 9 +-
airflow/utils/log/log_reader.py | 7 +-
airflow/utils/log/logging_mixin.py | 5 +
airflow/utils/state.py | 2 +
airflow/www/static/js/tree.js | 4 +-
airflow/www/views.py | 5 +-
docs/apache-airflow/migrations-ref.rst | 2 +-
tests/api/common/experimental/test_mark_tasks.py | 4 +-
.../endpoints/test_dag_run_endpoint.py | 14 +-
tests/api_connexion/schemas/test_dag_run_schema.py | 3 +
tests/conftest.py | 50 ++
.../zendesk/hooks => dag_processing}/__init__.py | 0
.../test_manager.py} | 26 +-
tests/dag_processing/test_processor.py | 750 ++++++++++++++++
tests/jobs/test_local_task_job.py | 344 +++++---
tests/jobs/test_scheduler_job.py | 978 ++++-----------------
tests/models/test_cleartasks.py | 37 +
tests/models/test_dagrun.py | 25 +-
tests/models/test_taskinstance.py | 32 +
.../elasticsearch/log/test_es_task_handler.py | 10 +
tests/sensors/test_external_task_sensor.py | 8 +-
tests/test_utils/perf/perf_kit/python.py | 2 +-
tests/test_utils/perf/perf_kit/sqlalchemy.py | 2 +-
tests/utils/log/test_log_reader.py | 21 +
tests/www/views/test_views_log.py | 16 +-
tests/www/views/test_views_tasks.py | 29 +-
37 files changed, 2180 insertions(+), 1787 deletions(-)
copy {tests/providers/zendesk/hooks => airflow/dag_processing}/__init__.py
(100%)
rename airflow/{utils/dag_processing.py => dag_processing/manager.py} (100%)
create mode 100644 airflow/dag_processing/processor.py
copy airflow/migrations/versions/{4446e08588_dagrun_start_end.py =>
97cdd93827b8_add_queued_at_column_to_dagrun_table.py} (60%)
copy tests/{providers/zendesk/hooks => dag_processing}/__init__.py (100%)
rename tests/{utils/test_dag_processing.py => dag_processing/test_manager.py}
(98%)
create mode 100644 tests/dag_processing/test_processor.py