blob: 096db8d5276595b57aedc94086b0e12058739f0e [file] [log] [blame]
# SPDX-License-Identifier: Apache-2.0
# Moved this here from generic module, should probably be replaced
# with vm::min_free_kbytes at usage sites by someone who
# knows about tuning those machines -- bblack
class vm::higher_min_free_kbytes {
# Set a high min_free_kbytes watermark.
# See https://wikitech.wikimedia.org/wiki/Dataset1001#Feb_8_2012
# FIXME: Is this setting appropriate to the nodes on which it is applied? Is
# the value optimal? Investigate.
sysctl::parameters { 'higher_min_free_kbytes':
values => { 'vm.min_free_kbytes' => 1024 * 2048,},
}
}