mirror of
https://github.com/deepseek-ai/3FS
synced 2025-06-26 18:16:45 +00:00
31 lines
610 B
TOML
31 lines
610 B
TOML
attr_timeout = 2
|
|
entry_timeout = 2
|
|
fsync_length_hint = true
|
|
enable_read_cache = {{ env.READCACHE }}
|
|
chunk_size_limit = '64KB'
|
|
|
|
[[common.log.categories]]
|
|
categories = [ '.' ]
|
|
handlers = [ 'normal' ]
|
|
|
|
[[common.log.handlers]]
|
|
async = true
|
|
name = 'normal'
|
|
start_level = 'NONE'
|
|
writer_type = 'FILE'
|
|
file_path = '{{ env.LOG_FILE }}'
|
|
|
|
[mgmtd]
|
|
mgmtd_server_addresses = [ 'RDMA://${ADDRESS}:${MGMTD_PORT}' ]
|
|
|
|
[meta]
|
|
dynamic_stripe = {{ env.DYNAMIC_STRIPE }}
|
|
|
|
[periodic_sync]
|
|
enable = true
|
|
interval = '500ms'
|
|
limit = 16
|
|
|
|
[io_bufs]
|
|
write_buf_size = '{{ "1MB" if env.ENABLE_WRITE_BUFFER else "0MB" }}'
|
|
max_buf_size = '1MB' |