浏览代码

Support fileserver_list_cache_time in master configuration

tags/v0.57.0
Krzysztof Pawłowski 6 年前
父节点
当前提交
f43cc94362
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. +14
    -0
      salt/files/master.d/f_defaults.conf

+ 14
- 0
salt/files/master.d/f_defaults.conf 查看文件

@@ -993,6 +993,20 @@ fileserver_backend:
# has a very large number of files and performance is impacted. Default is False.
{{ get_config('fileserver_limit_traversal', 'False') }}

# Salt caches the list of files/symlinks/directories for each fileserver backend
# and environment as they are requested, to guard against a performance bottleneck
# at scale when many minions all ask the fileserver which files are available
# simultaneously. This configuration parameter allows for the max age of that
# cache to be altered.
#
# Set this value to 0 to disable use of this cache altogether, but keep in mind
# that this may increase the CPU load on the master when running a highstate on
# a large number of minions.
#
# Rather than altering this configuration parameter, it may be advisable to use
# the fileserver.clear_list_cache runner to clear these caches.
{{ get_config('fileserver_list_cache_time', '20') }}

# The fileserver can fire events off every time the fileserver is updated,
# these are disabled by default, but can be easily turned on by setting this
# flag to True

正在加载...
取消
保存