-
Notifications
You must be signed in to change notification settings - Fork 547
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
[Storage] Rclone to Cache Storage #3455
Closed
Closed
Changes from 38 commits
Commits
Show all changes
54 commits
Select commit
Hold shift + click to select a range
7dfcba1
initial commit
212df29
Merge branch 'skypilot-org:master' into master
shethhriday29 a08c034
newline
b85cbf9
comments
4fbfe17
run linter
6fc77e1
reminder for down
d6cb993
tentatively done with example
2d5aceb
formatting
4e1954a
yapf
eb22f62
Merge branch 'skypilot-org:master' into master
shethhriday29 27a8905
[Storage] Storage mounting tool permissions fix (#3215)
romilbhardwaj 41a63df
[LLM] Example for Serving Gemma (#3207)
Michaelvll 2b17e91
[LLM] Add logo for Gemma (#3220)
Michaelvll b326d12
Minor fixes for release 0.5.0 (#3212)
Michaelvll 6d77872
[Docker] Add retry for docker pull due to daemon not ready (#3218)
Michaelvll cb695d5
added comments
94221eb
Merge branch 'skypilot-org:master' into master
shethhriday29 888f1a8
quick fix
4877669
finished pip issues
7a208dd
fix
152e36a
fix storage error message, add example link to docs
romilbhardwaj cf556ed
Merge branch 'master' of https://github.com/skypilot-org/skypilot int…
romilbhardwaj 8213f02
Merge branch 'skypilot-org:master' into master
shethhriday29 60a530d
Merge branch 'skypilot-org:master' into master
shethhriday29 8df52d6
Merge branch 'skypilot-org:master' into master
shethhriday29 31291f4
Merge branch 'skypilot-org:master' into master
shethhriday29 c868494
prototype for gcs
953b4a6
removed non git files
e63e943
rclone support for aws
a4ddd48
minor formatting fix
9fa8f67
Merge branch 'skypilot-org:master' into rclone-cache
shethhriday29 19e714b
Merge branch 'skypilot-org:master' into rclone-cache
shethhriday29 32bb4fa
fixed merge conflict
0481d2c
fixed merge conflict
abf4488
fixed merge conflict
00a2a9f
reset perf example
213eb26
reset perf example
1349ba0
added tests for rclone functionality
3b0923a
update rclone vfs options
landscapepainter b82cc5b
testing
landscapepainter bad9172
test
landscapepainter 211f1bc
test
landscapepainter a312ac1
update rclone config and rclone command options
landscapepainter ab179ab
Merge branch 'rclone-cache' of https://github.com/shethhriday29/skypi…
landscapepainter 66a8e11
nit refactor
landscapepainter e628024
rclone refactor
landscapepainter 0976fa1
nit
landscapepainter 3d16255
update MOUNT_CACHE mode to MOUNT_CACHED mode
landscapepainter 3818a05
update smoke test
landscapepainter d393206
Merge branch 'master' into shethhriday29-rclone-cache
landscapepainter 27e702b
additional comments for mount cached command explaining options for r…
landscapepainter 0612532
rclone class doc-string fix
landscapepainter ea290b8
nit format
landscapepainter 64d9a7d
update step 7 of maybe_translate_local_file_mounts_and_sync_up
landscapepainter 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
file_mounts: | ||
# Mounting private buckets in RCLONE mode | ||
/mount_private_rclone: | ||
name: {{storage_name}} | ||
source: ~/tmp-workdir | ||
store: {{store_type}} | ||
mode: RCLONE | ||
|
||
run: | | ||
set -ex | ||
|
||
# Check private bucket contents | ||
ls -ltr /mount_private_rclone/foo | ||
ls -ltr /mount_private_rclone/tmp\ file | ||
|
||
# Symlinks are not copied to buckets | ||
! ls /mount_private_rclone/circle-link | ||
|
||
# Write to private bucket in MOUNT mode should pass | ||
echo "hello" > /mount_private_rclone/hello.txt | ||
|
||
# Ensure that write is reflected in bucket | ||
rclone ls {{ bucket_rclone_profile }}:{{ storage_name }}/hello.txt | ||
|
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.
Do we need this new mode, or should we directly change the behavior of
MOUNT
to rclone?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.
As discussed online, we are referring this
mode
separately asMOUNT_CACHED
mode, and keeping our originalMOUNT
mode as it is.