diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
commit | e6918187568dbd01842d8d1d2c808ce16a894239 (patch) | |
tree | 64f88b554b444a49f656b6c656111a145cbbaa28 /src/seastar/scripts/perftune.yaml | |
parent | Initial commit. (diff) | |
download | ceph-upstream/18.2.2.tar.xz ceph-upstream/18.2.2.zip |
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/seastar/scripts/perftune.yaml')
-rw-r--r-- | src/seastar/scripts/perftune.yaml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/seastar/scripts/perftune.yaml b/src/seastar/scripts/perftune.yaml new file mode 100644 index 000000000..945f23e62 --- /dev/null +++ b/src/seastar/scripts/perftune.yaml @@ -0,0 +1,33 @@ +# Mode is one of the following values: +# - 'mq' +# - 'sq' +# - 'sq_split' +#mode: 'sq_split' + +# Name of the NIC to tune, e.g. eth7. +# By default would use 'eth0'. +#nic: eth7 + +# If 'true' the script will the CPU mask to be used for compute. +#get_cpu_mask: true + +# Define what to tune: could be any combination of the values from {'net', 'disks'} set. +#tune: +# - net +# - disks + +# Mask of cores to use, by default use all available cores. +#cpu_mask: '0x00f,,,0x0,,0x00f' + +# Set of directories to optimize. +#dir: +# - /root +# - /home + +# Set of disk devices to optimize +#dev: +# - /dev/sda2 +# - /dev/md0 + +# write_back_cache: false + |