-
Notifications
You must be signed in to change notification settings - Fork 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
[runtime_env] Change default working_dir
behavior to replace local cached version entirely
#49313
Merged
justinvyu
merged 45 commits into
ray-project:master
from
ujjawal-khare-27:fix/ray-working-dir
Jan 21, 2025
+50
−3
Merged
Changes from 25 commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
7e25f87
fix for cleaning working dir in case of same uri
ujjawal-khare ccb394c
master merge
ujjawal-khare 64d936d
removed unused imports
ujjawal-khare 262ebdf
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 5bc3556
timeout increased
ujjawal-khare e01f82c
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare bc4a2d5
timeout reverted
ujjawal-khare ddd9f5f
overwrite as optional
ujjawal-khare f86aaa4
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 0867484
master merge
ujjawal-khare 0212f71
gcs cleanup added
ujjawal-khare a2cae03
test added
ujjawal-khare e2951b4
cleanup
ujjawal-khare 528fae3
cleanup
ujjawal-khare 9a463b5
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 708a688
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 260f4d1
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 a141159
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 877f67f
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 65af26d
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 3227384
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 88b1fbe
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 e36c629
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 368eeaf
lint fix
ujjawal-khare 7b28ed4
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 648b27c
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 3902f4b
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 1d07dbf
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 7d9cd86
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare a8ffb00
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 6d9d3a4
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 2b29f59
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 fecfe09
storage file
ujjawal-khare 5fc5d62
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 c3bb095
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 7d52625
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 16eb65d
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 9debd48
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 8327768
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare b3305a9
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare e79a565
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 68f05b0
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 a1109e5
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 4d5790a
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 90848b7
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Why are these changes needed for this PR? Converting to abspath before doing relpath is pretty confusing for non-local filesystems (such as S3) where abs path doesn't make sense.
Let's revert this change.
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.
@justinvyu The test case was failing Buildkite Link due to an issue with path handling. Specifically, the file system mount was unable to locate the directory because of a mismatch between file_info.path and fs_path. To resolve this, I converted the paths to abs_path to ensure consistency and proper resolution.
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.
Where do you see that this test fails due to this line of code? The change above seems unrelated to this code.
As I mentioned above, we should not use abs path for this method anyways.
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.
@justinvyu have reverted the change and tests are passing as well. Can you please check?
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.
@ujjawal-khare-27 Sorry for missing this -- after the revert my approval is no longer needed. I'll just merge the PR now.