-
Notifications
You must be signed in to change notification settings - Fork 14.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Port LocalTaskJob tests to Task SDK #44356
Labels
area:task-execution-interface-aip72
AIP-72: Task Execution Interface (TEI) aka Task SDK
Comments
kaxil
added
the
area:task-execution-interface-aip72
AIP-72: Task Execution Interface (TEI) aka Task SDK
label
Nov 25, 2024
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Nov 27, 2024
This commit adds test that Supervisor prevents starting a Task Instance that is already running. Also updated `test_ti_update_state_conflict_if_not_queued` to use parameterized states, covering all non-queued Task Instance states. This is part of my efforts to port LocalTaskJob tests to Supervisor: apache#44356. This ports over `TestLocalTaskJob.test_localtaskjob_double_trigger`
This was referenced Nov 27, 2024
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Nov 28, 2024
- Updated logic to handle externally updated TI state in Supervisor. This states could have been externally changed via UI, CLI, API etc - Replaced `FASTEST_HEARTBEAT_INTERVAL` and `SLOWEST_HEARTBEAT_INTERVAL` with `MIN_HEARTBEAT_INTERVAL` and `HEARTBEAT_THRESHOLD` for better clarity This is part of my efforts to port LocalTaskJob tests to Supervisor: apache#44356. This ports over `TestLocalTaskJob.test_mark_{success,failure}_no_kill`. This PR also allows retrying heartbeats: - Added `_last_successful_heartbeat` and `_last_heartbeat_attempt` for better separation of tracking successful heartbeats and retries. - `MIN_HEARTBEAT_INTERVAL` is now respected between heartbeat attempts, even after failures. - The num of retries is configurable via `MAX_FAILED_HEARTBEATS`
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Nov 28, 2024
- Updated logic to handle externally updated TI state in Supervisor. This states could have been externally changed via UI, CLI, API etc - Replaced `FASTEST_HEARTBEAT_INTERVAL` and `SLOWEST_HEARTBEAT_INTERVAL` with `MIN_HEARTBEAT_INTERVAL` and `HEARTBEAT_THRESHOLD` for better clarity This is part of my efforts to port LocalTaskJob tests to Supervisor: apache#44356. This ports over `TestLocalTaskJob.test_mark_{success,failure}_no_kill`. This PR also allows retrying heartbeats: - Added `_last_successful_heartbeat` and `_last_heartbeat_attempt` for better separation of tracking successful heartbeats and retries. - `MIN_HEARTBEAT_INTERVAL` is now respected between heartbeat attempts, even after failures. - The num of retries is configurable via `MAX_FAILED_HEARTBEATS`
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Nov 28, 2024
- Updated logic to handle externally updated TI state in Supervisor. This states could have been externally changed via UI, CLI, API etc - Replaced `FASTEST_HEARTBEAT_INTERVAL` and `SLOWEST_HEARTBEAT_INTERVAL` with `MIN_HEARTBEAT_INTERVAL` and `HEARTBEAT_THRESHOLD` for better clarity This is part of my efforts to port LocalTaskJob tests to Supervisor: apache#44356. This ports over `TestLocalTaskJob.test_mark_{success,failure}_no_kill`. This PR also allows retrying heartbeats: - Added `_last_successful_heartbeat` and `_last_heartbeat_attempt` for better separation of tracking successful heartbeats and retries. - `MIN_HEARTBEAT_INTERVAL` is now respected between heartbeat attempts, even after failures. - The num of retries is configurable via `MAX_FAILED_HEARTBEATS`
kaxil
added a commit
that referenced
this issue
Nov 28, 2024
- Updated logic to handle externally updated TI state in Supervisor. This states could have been externally changed via UI, CLI, API etc - Replaced `FASTEST_HEARTBEAT_INTERVAL` and `SLOWEST_HEARTBEAT_INTERVAL` with `MIN_HEARTBEAT_INTERVAL` and `HEARTBEAT_THRESHOLD` for better clarity This is part of my efforts to port LocalTaskJob tests to Supervisor: #44356. This ports over `TestLocalTaskJob.test_mark_{success,failure}_no_kill`. This PR also allows retrying heartbeats: - Added `_last_successful_heartbeat` and `_last_heartbeat_attempt` for better separation of tracking successful heartbeats and retries. - `MIN_HEARTBEAT_INTERVAL` is now respected between heartbeat attempts, even after failures. - The num of retries is configurable via `MAX_FAILED_HEARTBEATS`
PRs: |
Next Up:
|
kaxil
added a commit
that referenced
this issue
Nov 30, 2024
Added logic to support escalation from SIGINT to SIGTERM and SIGKILL when killing a task process from the new Supervisor process. part of #44356
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Dec 3, 2024
This PR ports the overtime feature on `LocalTaskJob` (added in apache#39890) to the Supervisor. It allows to terminate Task process to terminate when it exceeding the configured success overtime threshold which is useful when we add Listenener to the Task process. closes apache#44356 Also added `TaskState` to update state and send end_date from task process to the supervisor.
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Dec 3, 2024
This PR ports the overtime feature on `LocalTaskJob` (added in apache#39890) to the Supervisor. It allows to terminate Task process to terminate when it exceeding the configured success overtime threshold which is useful when we add Listenener to the Task process. closes apache#44356 Also added `TaskState` to update state and send end_date from task process to the supervisor.
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Dec 3, 2024
This PR ports the overtime feature on `LocalTaskJob` (added in apache#39890) to the Supervisor. It allows to terminate Task process to terminate when it exceeding the configured success overtime threshold which is useful when we add Listenener to the Task process. closes apache#44356 Also added `TaskState` to update state and send end_date from task process to the supervisor.
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Dec 3, 2024
This PR ports the overtime feature on `LocalTaskJob` (added in apache#39890) to the Supervisor. It allows to terminate Task process to terminate when it exceeding the configured success overtime threshold which is useful when we add Listenener to the Task process. closes apache#44356 Also added `TaskState` to update state and send end_date from task process to the supervisor.
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Dec 3, 2024
This PR ports the overtime feature on `LocalTaskJob` (added in apache#39890) to the Supervisor. It allows to terminate Task process to terminate when it exceeding the configured success overtime threshold which is useful when we add Listenener to the Task process. closes apache#44356 Also added `TaskState` to update state and send end_date from task process to the supervisor.
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Dec 3, 2024
This PR ports the overtime feature on `LocalTaskJob` (added in apache#39890) to the Supervisor. It allows to terminate Task process to terminate when it exceeding the configured success overtime threshold which is useful when we add Listenener to the Task process. closes apache#44356 Also added `TaskState` to update state and send end_date from task process to the supervisor.
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Dec 3, 2024
This PR ports the overtime feature on `LocalTaskJob` (added in apache#39890) to the Supervisor. It allows to terminate Task process to terminate when it exceeding the configured success overtime threshold which is useful when we add Listenener to the Task process. closes apache#44356 Also added `TaskState` to update state and send end_date from task process to the supervisor.
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Dec 3, 2024
This PR ports the overtime feature on `LocalTaskJob` (added in apache#39890) to the Supervisor. It allows to terminate Task process to terminate when it exceeding the configured success overtime threshold which is useful when we add Listenener to the Task process. closes apache#44356 Also added `TaskState` to update state and send end_date from task process to the supervisor.
kaxil
added a commit
to astronomer/airflow
that referenced
this issue
Dec 3, 2024
This PR ports the overtime feature on `LocalTaskJob` (added in apache#39890) to the Supervisor. It allows to terminate Task process to terminate when it exceeding the configured success overtime threshold which is useful when we add Listenener to the Task process. closes apache#44356 Also added `TaskState` to update state and send end_date from task process to the supervisor.
kaxil
added a commit
that referenced
this issue
Dec 3, 2024
This PR ports the overtime feature on `LocalTaskJob` (added in #39890) to the Supervisor. It allows to terminate Task process to terminate when it exceeding the configured success overtime threshold which is useful when we add Listenener to the Task process. closes #44356 Also added `TaskState` to update state and send end_date from task process to the supervisor.
github-project-automation
bot
moved this from In Progress
to Done
in AIP-72 - Task Execution Interface and SDK
Dec 3, 2024
LefterisXefteris
pushed a commit
to LefterisXefteris/airflow
that referenced
this issue
Jan 5, 2025
- Updated logic to handle externally updated TI state in Supervisor. This states could have been externally changed via UI, CLI, API etc - Replaced `FASTEST_HEARTBEAT_INTERVAL` and `SLOWEST_HEARTBEAT_INTERVAL` with `MIN_HEARTBEAT_INTERVAL` and `HEARTBEAT_THRESHOLD` for better clarity This is part of my efforts to port LocalTaskJob tests to Supervisor: apache#44356. This ports over `TestLocalTaskJob.test_mark_{success,failure}_no_kill`. This PR also allows retrying heartbeats: - Added `_last_successful_heartbeat` and `_last_heartbeat_attempt` for better separation of tracking successful heartbeats and retries. - `MIN_HEARTBEAT_INTERVAL` is now respected between heartbeat attempts, even after failures. - The num of retries is configurable via `MAX_FAILED_HEARTBEATS`
LefterisXefteris
pushed a commit
to LefterisXefteris/airflow
that referenced
this issue
Jan 5, 2025
…#44465) Added logic to support escalation from SIGINT to SIGTERM and SIGKILL when killing a task process from the new Supervisor process. part of apache#44356
LefterisXefteris
pushed a commit
to LefterisXefteris/airflow
that referenced
this issue
Jan 5, 2025
This PR ports the overtime feature on `LocalTaskJob` (added in apache#39890) to the Supervisor. It allows to terminate Task process to terminate when it exceeding the configured success overtime threshold which is useful when we add Listenener to the Task process. closes apache#44356 Also added `TaskState` to update state and send end_date from task process to the supervisor.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To get more confidence in the new Supervisor process in the Task SDK, we should investigate and port over tests from
LocalTaskJob
and some frommodels.TI
to Task SDK's superisor's testThe text was updated successfully, but these errors were encountered: