123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- daemonize yes
- pidfile /var/run/redis/{{ redis_daemon }}.pid
- port {{ redis_port }}
- # {% if ansible_eth0.ipv4.address == hostvars[groups['lan_rd'][0]]['ansible_host'] %}
- # bind 127.0.0.1 {{ ansible_default_ipv4.address }}
- # {% else %}
- # bind 127.0.0.1 {{ ansible_default_ipv4.address }}
- # slaveof {{ hostvars[groups['lan_rd'][0]]['ansible_host'] }} 6379
- # {% endif %}
- bind {{ redis_bind_interface }}
- {% if redis_unixsocket %}
- unixsocket {{ redis_unixsocket }}
- {% endif %}
- timeout {{ redis_timeout }}
- loglevel {{ redis_loglevel }}
- logfile {{ redis_logfile }}
- # To enable logging to the system logger, just set 'syslog-enabled' to yes,
- # and optionally update the other syslog parameters to suit your needs.
- # syslog-enabled no
- # syslog-ident redis
- # syslog-facility local0
- databases {{ redis_databases }}
- {% for save in redis_save %}
- save {{ save }}
- {% endfor %}
- rdbcompression {{ redis_rdbcompression }}
- dbfilename {{ redis_dbfilename }}
- dir {{ redis_dbdir }}
- # maxclients 128
- {% if redis_maxmemory %}
- maxmemory {{ redis_maxmemory }}
- maxmemory-policy {{ redis_maxmemory_policy }}
- maxmemory-samples {{ redis_maxmemory_samples }}
- {% endif %}
- appendonly {{ redis_appendonly }}
- appendfsync {{ redis_appendfsync }}
- no-appendfsync-on-rewrite no
- {% for include in redis_includes %}
- include {{ include }}
- {% endfor %}
- {% if redis_requirepass %}
- requirepass {{ redis_requirepass }}
- {% endif %}
- {% for redis_disabled_command in redis_disabled_commands %}
- rename-command {{ redis_disabled_command }} ""
- {% endfor %}
- protected-mode yes
- unixsocketperm 775
- maxclients 512
- tcp-backlog 511
- tcp-keepalive 300
- supervised no
- always-show-logo yes
- stop-writes-on-bgsave-error yes
- rdbchecksum yes
- replica-serve-stale-data yes
- replica-read-only yes
- repl-diskless-sync no
- repl-diskless-sync-delay 5
- repl-disable-tcp-nodelay no
- replica-priority 100
- lazyfree-lazy-eviction no
- lazyfree-lazy-expire no
- lazyfree-lazy-server-del no
- replica-lazy-flush no
- appendfilename "appendonly.aof"
- auto-aof-rewrite-percentage 100
- auto-aof-rewrite-min-size 64mb
- aof-load-truncated yes
- aof-use-rdb-preamble yes
- lua-time-limit 5000
- slowlog-log-slower-than 10000
- slowlog-max-len 128
- latency-monitor-threshold 0
- notify-keyspace-events ""
- hash-max-ziplist-entries 512
- hash-max-ziplist-value 64
- list-max-ziplist-size -2
- list-compress-depth 0
- set-max-intset-entries 512
- zset-max-ziplist-entries 128
- zset-max-ziplist-value 64
- hll-sparse-max-bytes 3000
- 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
- hz 10
- dynamic-hz yes
- aof-rewrite-incremental-fsync yes
- rdb-save-incremental-fsync yes
|