-
Notifications
You must be signed in to change notification settings - Fork 16
Add tui flag for shared asset store #637
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
base: main
Are you sure you want to change the base?
Conversation
This allows callers to specialize what storage the Butler is using when fetching assets.
When provided, the FilesystemAssetStore can insert the RunID as part of the asset path, which matches the layout of the GCS asset store. stacked-commit: true
stacked-commit: true
stacked-commit: true
stacked-commit: true
stacked-commit: true
This can be used for collaborating on rebuild datasets stacked-commit: true
@@ -139,7 +139,7 @@ func makeShellScript(input rebuild.Input) (string, error) { | |||
} | |||
|
|||
var tui = &cobra.Command{ | |||
Use: "tui [--project <ID>] [--debug-storage <bucket>] [--benchmark-dir <dir>] [--clean] [--llm-project] [--rundex-gcs-path <path>]", | |||
Use: "tui [--project <ID>] [--debug-storage <bucket>] [--benchmark-dir <dir>] [--clean] [--llm-project] [--rundex-gcs-path <path>] [--shared-asset-store <path>]", |
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.
nit: merged-asset-store?
log.Fatal(errors.Wrap(err, "parsing --shared-asset-store")) | ||
} | ||
if u.Scheme != "gs" { | ||
log.Fatal("--shared-asset-store must be a gs:// URL") |
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.
not sure we want this constraint. having a local one would be fine, no? if we want to put off adding it, let's add a TODO and an "unimplemented" message
This can be used for collaborating on rebuild datasets