9 pidfile /var/run/redis_6379.pid
11 logfile /var/log/redis/redis.log
16 stop-writes-on-bgsave-error yes
21 {% if hostname != installation_controller %}
22 slaveof {{ internal_lb_vip_address }} 6379
24 slave-serve-stale-data yes
27 repl-diskless-sync-delay 5
28 repl-disable-tcp-nodelay no
31 appendfilename "appendonly.aof"
33 no-appendfsync-on-rewrite no
34 auto-aof-rewrite-percentage 100
35 auto-aof-rewrite-min-size 64mb
36 aof-load-truncated yes
38 slowlog-log-slower-than 10000
40 latency-monitor-threshold 0
41 notify-keyspace-events ""
42 hash-max-ziplist-entries 512
43 hash-max-ziplist-value 64
44 list-max-ziplist-size -2
46 set-max-intset-entries 512
47 zset-max-ziplist-entries 128
48 zset-max-ziplist-value 64
49 hll-sparse-max-bytes 3000
51 client-output-buffer-limit normal 0 0 0
52 client-output-buffer-limit slave 256mb 64mb 60
53 client-output-buffer-limit pubsub 32mb 8mb 60
55 aof-rewrite-incremental-fsync yes
56 requirepass {{ redis_password }}
57 masterauth {{ redis_password }}