-
Notifications
You must be signed in to change notification settings - Fork 119
Description
I have a question about the max-creates-per-second configuration in whisper section, allowed since release 0.13, as written in changelog:
version 0.13.0
Added whisper.max-creates-per-second option
Installed Packages
Name : go-carbon
Version : 0.17.3
Release : 1
Architecture : x86_64
Size : 26 M
Source : go-carbon-0.17.3-1.src.rpm
Repository : @System
Summary : Golang implementation of Graphite/Carbon server
URL : https://github.com/go-graphite/go-carbon
License : MIT
Description : Golang implementation of Graphite/Carbon server
This is my whisper conf:
[whisper]
data-dir = "/carbon/whisper/"
schemas-file = "/etc/go-carbon/storage-schemas.conf"
aggregation-file = "/etc/go-carbon/storage-aggregation.conf"
quotas-file = ""
workers = 8
max-updates-per-second = 200
max-creates-per-second = 20
sparse-create = false
physical-size-factor = 0.75
flock = false
compressed = false
enabled = true
hash-filenames = true
remove-empty-file = true
If i change the value to 20, or 5, i have no changes in file creation on disk, always 3000 files creation in one minute.
I see lower creation of files only if i change (lowering) the max-updates-per-second value.
Can anyone help me to understand what i miss?
Thanks in advance