-
Notifications
You must be signed in to change notification settings - Fork 78
docs: core/config/fs - Add explanation for fs wrappers #1395
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
| | [[link,fs_compress,compress]] | File compression. | | ||
| <!-- @include: @docs/storage/providers/includes/fs-wrapper.inc --> | ||
|
|
||
| To wrap a fs driver into one of the wrapper it is to be listed after the |
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.
A bit wordy, maybe "To wrap a fs driver, it should be listed after the wrapper in the configuration."
| wrapper in the configuration. | ||
| So to wrap [[link,fs_posix,posix]] with the [[link,fs_metawrap,metawrap]] to | ||
| support storing metadata with `fs posix` it should be added before the | ||
| `fs posix {}` block. The same applies to all other wrapping fs drivers |
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 would remove "The same applies..." sentence. This is just an example, people are smart enough to understand this applies to any fs drivers.
|
|
||
| To wrap a fs driver into one of the wrapper it is to be listed after the | ||
| wrapper in the configuration. | ||
| So to wrap [[link,fs_posix,posix]] with the [[link,fs_metawrap,metawrap]] to |
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.
Prefix this sentence with "For example" (or put it in a separate sub-header), to make clear this is an example.
| } | ||
| ``` | ||
|
|
||
| It is also possible to use multiple fs wrappers on top of each other. |
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 does this mean? This probably needs an example as well.
DOV-7737