Skip to content
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

[Data] Retry RaySystemError application errors #45079

Merged
merged 3 commits into from
May 1, 2024

Conversation

bveeramani
Copy link
Member

Why are these changes needed?

Ray typically automatically retries system errors. However, in some cases, tasks raise RaySystemErrors and those errors aren't automatically retried. To ensure Ray Data is fault tolerant to those failures, this PR explicitly adds RaySystemError to the list of retried exceptions.

Note: one reason why tasks raise RaySystemErrors is that when we shut down a node, the raylet process can die before worker processes and ray.get() throws an exception since it can't access plasma in raylet. A longterm solution would be to fix the shutdown order: raylet should be the last process to exit.

Related issue number

Deflakes #44892

Checks

  • I've signed off every commit(by using the -s flag, i.e., git commit -s) in this PR.
  • I've run scripts/format.sh to lint the changes in this PR.
  • I've included any doc changes needed for https://docs.ray.io/en/master/.
    • I've added any new APIs to the API Reference. For example, if I added a
      method in Tune, I've added it in doc/source/tune/api/ under the
      corresponding .rst file.
  • I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/
  • Testing Strategy
    • Unit tests
    • Release tests
    • This PR is not tested :(

Signed-off-by: Balaji Veeramani <balaji@anyscale.com>
@bveeramani bveeramani changed the title [Data] [Data] Retry RaySystemError application errors May 1, 2024
# Ray won't retry system errors if they're raised from task code. To ensure
# Ray Data is fault tolerant to those errors, we need to add RaySystemError
# to the retry_exceptions list.
"retry_exceptions": [ray.exceptions.RaySystemError],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what will happen if user already set this? If user already set it to a list, we should append this to it. If they already set it to True, we should do nothing.

Signed-off-by: Balaji Veeramani <balaji@anyscale.com>
Signed-off-by: Balaji Veeramani <balaji@anyscale.com>
@bveeramani bveeramani merged commit 4671784 into ray-project:master May 1, 2024
5 checks passed
@bveeramani bveeramani deleted the fix-chaos-test branch May 1, 2024 23:35
harborn pushed a commit to harborn/ray that referenced this pull request May 8, 2024
Ray typically automatically retries system errors. However, in some
cases, tasks raise `RaySystemError`s and those errors aren't
automatically retried. To ensure Ray Data is fault tolerant to those
failures, this PR explicitly adds `RaySystemError` to the list of
retried exceptions.

Note: one reason why tasks raise `RaySystemError`s is that when we shut
down a node, the raylet process can die before worker processes and
`ray.get()` throws an exception since it can't access plasma in raylet.
A longterm solution would be to fix the shutdown order: raylet should be
the last process to exit.

Signed-off-by: Balaji Veeramani <balaji@anyscale.com>
peytondmurray pushed a commit to peytondmurray/ray that referenced this pull request May 13, 2024
Ray typically automatically retries system errors. However, in some
cases, tasks raise `RaySystemError`s and those errors aren't
automatically retried. To ensure Ray Data is fault tolerant to those
failures, this PR explicitly adds `RaySystemError` to the list of
retried exceptions.

Note: one reason why tasks raise `RaySystemError`s is that when we shut
down a node, the raylet process can die before worker processes and
`ray.get()` throws an exception since it can't access plasma in raylet.
A longterm solution would be to fix the shutdown order: raylet should be
the last process to exit.

Signed-off-by: Balaji Veeramani <balaji@anyscale.com>
ryanaoleary pushed a commit to ryanaoleary/ray that referenced this pull request Jun 6, 2024
Ray typically automatically retries system errors. However, in some
cases, tasks raise `RaySystemError`s and those errors aren't
automatically retried. To ensure Ray Data is fault tolerant to those
failures, this PR explicitly adds `RaySystemError` to the list of
retried exceptions.

Note: one reason why tasks raise `RaySystemError`s is that when we shut
down a node, the raylet process can die before worker processes and
`ray.get()` throws an exception since it can't access plasma in raylet.
A longterm solution would be to fix the shutdown order: raylet should be
the last process to exit.

Signed-off-by: Balaji Veeramani <balaji@anyscale.com>
Signed-off-by: Ryan O'Leary <ryanaoleary@google.com>
ryanaoleary pushed a commit to ryanaoleary/ray that referenced this pull request Jun 7, 2024
Ray typically automatically retries system errors. However, in some
cases, tasks raise `RaySystemError`s and those errors aren't
automatically retried. To ensure Ray Data is fault tolerant to those
failures, this PR explicitly adds `RaySystemError` to the list of
retried exceptions.

Note: one reason why tasks raise `RaySystemError`s is that when we shut
down a node, the raylet process can die before worker processes and
`ray.get()` throws an exception since it can't access plasma in raylet.
A longterm solution would be to fix the shutdown order: raylet should be
the last process to exit.

Signed-off-by: Balaji Veeramani <balaji@anyscale.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants