Skip to content
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
2 changes: 1 addition & 1 deletion sample_configs/sampleFileCacheConfigAzure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ libfuse:
file_cache:
path: /<PATH>/<TO>/<CACHE_DIR>
timeout-sec: 64000000
cleanup-on-start: true
allow-non-empty-temp: true
ignore-sync: true

attr_cache:
Expand Down
2 changes: 1 addition & 1 deletion sample_configs/sampleFileCacheConfigS3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ libfuse:
file_cache:
path: /<PATH>/<TO>/<CACHE_DIR>
timeout-sec: 64000000
cleanup-on-start: true
allow-non-empty-temp: true
ignore-sync: true

attr_cache:
Expand Down
2 changes: 1 addition & 1 deletion sample_configs/sampleFileCacheWithSASConfigAzure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ libfuse:
file_cache:
path: /<PATH>/<TO>/<CACHE_DIR>
timeout-sec: 64000000
cleanup-on-start: true
allow-non-empty-temp: true
ignore-sync: true

attr_cache:
Expand Down
2 changes: 1 addition & 1 deletion setup/baseConfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ file_cache:
high-threshold: <% disk space consumed which triggers eviction. This parameter overrides 'timeout-sec' parameter and cached files will be removed even if they have not expired. Default - 80>
low-threshold: <% disk space consumed which triggers eviction to stop when previously triggered by the high-threshold. Default - 60>
create-empty-file: true|false <create an empty file on container when create call is received from kernel>
allow-non-empty-temp: true|false <allow non empty temp directory at startup. This should not be used in production.>
allow-non-empty-temp: true|false <allow non empty temp directory at startup. Set true to persist local cache across reboots.>
cleanup-on-start: true|false <cleanup the temp directory on startup, if it's not empty>
policy-trace: true|false <generate eviction policy logs showing which files will expire soon>
offload-io: true|false <by default libfuse will service reads/writes to files for better perf. Set to true to make file-cache component service read/write calls.>
Expand Down
Loading