-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
Fixes for the new bulk execution backend #31884
Conversation
Signed-off-by: jianoaix <[email protected]>
# TODO(https://github.com/ray-project/ray/issues/31145): re-enable | ||
# after the segfault bug is fixed. | ||
if DatasetContext.get_current().new_execution_backend: | ||
return |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move to a separate file instead of disabling.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That doesn't work either for this test, bazel still failed it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think if you move this into a separate file, you can also remove the ray.shutdown() code below. That should avoid restarting Ray entirely.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It failed (bazel test python/ray/data:tests/test_pipeline_incremental_take
locally) still, but the CI test (which uses bazel) passed, didn't find out why.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe there was another Ray running locally or something.
@ericl tests passing, ready to merge, thanks |
Why are these changes needed?
To enable the new bulk execution backend: #30903
Related issue number
Checks
git commit -s
) in this PR.scripts/format.sh
to lint the changes in this PR.