-
Notifications
You must be signed in to change notification settings - Fork 50
[Feature] 3FS Store #419
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: develop
Are you sure you want to change the base?
[Feature] 3FS Store #419
Conversation
| std::vector<std::string> storageBackends; | ||
| size_t kvcacheBlockSize; | ||
| bool transferEnable; | ||
| std::string mountPoint{"/3fs/stage"}; |
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.
What is the difference between mountPoint and storageBackend?
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.
storageBackend can be a deeper directory path such as /3fs/stage/test, whereas mountPoint must be one of the instances created when 3fs was deployed (determined by the deployment specification and cannot be a deeper directory).
97cba0a to
64cd281
Compare
Purpose
What this PR does / why we need it?
Supports 3FS storage backend.Modifications
Does this PR introduce any user-facing change?
New parameter added:
3fs_mount_point"kv_connector_extra_config": {
"ucm_connector_name": "UcmDs3FsStore",
"ucm_connector_config": {
"storage_backends": "/3fs/stage",
"3fs_mount_point" : "/3fs/stage"
}
Test
How was this patch tested?