From 3c00d6787995d64b37f38c9418f9d8c58f4e24d6 Mon Sep 17 00:00:00 2001 From: m0duspwnens Date: Mon, 19 Dec 2022 10:24:28 -0500 Subject: [PATCH] fix redis defaults --- salt/redis/defaults.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/salt/redis/defaults.yaml b/salt/redis/defaults.yaml index 26be06229..aacb7dbba 100644 --- a/salt/redis/defaults.yaml +++ b/salt/redis/defaults.yaml @@ -80,11 +80,12 @@ redis: stream-node-max-bytes: 4096 stream-node-max-entries: 100 activerehashing: yes - client-output-buffer-limit: 'normal 0 0 0' - client-output-buffer-limit: 'replica 256mb 64mb 60' - client-output-buffer-limit: 'pubsub 32mb 8mb 60' + client-output-buffer-limit: + normal: '0 0 0' + replica: '256mb 64mb 60' + pubsub: '32mb 8mb 60' hz: 10 dynamic-hz: 'yes' aof-rewrite-incremental-fsync: 'yes' rdb-save-incremental-fsync: 'yes' - jemalloc-bg-thread: 'yes' \ No newline at end of file + jemalloc-bg-thread: 'yes'