Skip to content
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

Set network-share true in sample configs #206

Merged
merged 2 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sampleBlockCacheConfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ libfuse:
attribute-expiration-sec: 120
entry-expiration-sec: 120
negative-entry-expiration-sec: 240
network-share: true

block_cache:
block-size-mb: 32
Expand Down
1 change: 1 addition & 0 deletions sampleFileCacheConfigAzure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ components:
- azstorage

libfuse:
network-share: true

file_cache:
path: /<PATH>/<TO>/<CACHE_DIR>
Expand Down
1 change: 1 addition & 0 deletions sampleFileCacheConfigS3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ components:
- s3storage

libfuse:
network-share: true

file_cache:
path: /<PATH>/<TO>/<CACHE_DIR>
Expand Down
1 change: 1 addition & 0 deletions sampleFileCacheWithSASConfigAzure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ components:
- azstorage

libfuse:
network-share: true

file_cache:
path: /<PATH>/<TO>/<CACHE_DIR>
Expand Down
1 change: 1 addition & 0 deletions sampleStreamingConfigAzure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ libfuse:
attribute-expiration-sec: 120
entry-expiration-sec: 120
negative-entry-expiration-sec: 240
network-share: true

stream:
block-size-mb: 8
Expand Down
1 change: 1 addition & 0 deletions sampleStreamingConfigS3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ libfuse:
attribute-expiration-sec: 120
entry-expiration-sec: 120
negative-entry-expiration-sec: 240
network-share: true

stream:
block-size-mb: 8
Expand Down
2 changes: 1 addition & 1 deletion setup/baseConfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ libfuse:
ignore-open-flags: true|false <ignore the append and write only flag since O_APPEND and O_WRONLY is not supported with writeback caching. alternatively, you can disable-writeback-cache. Default value is true>
max-fuse-threads: <number of threads allowed at libfuse layer for highly parallel operations, Default is 128>
direct-io: true|false <enable to bypass the kernel cache>
network-share: true|false <runs as a network share. may improve performance when latency to cloud is high. only supported on Windows.
network-share: true|false <runs as a network share. may improve performance when latency to cloud is high. only supported on Windows. Known issue - only one Cloudfuse network share can be mounted at a time>

# Streaming configuration
stream:
Expand Down
Loading