Redis 镜像 好像 Redis 没有默认的配置文件,如果要提供自己的配置文件需要在源码或则安装目录下复制配置文件,可以手动找到你当前版本的 redis 下载后拿到配置文件 Redis 的详细使用可以参考此文章

  1. services:
  2. redis:
  3. image: redis:6.2.6
  4. container_name: redis
  5. volumes:
  6. - ./redis/data:/data
  7. - ./redis/conf:/usr/local/etc/redis
  8. - ./redis/logs:/logs
  9. command: redis-server /usr/local/etc/redis/redis.conf
  10. ports:
  11. - 6379:6379

上面配置的含义:

  • ./data:/data 将数据挂载出来,比如 dump.rdb 文件就会写到该目录下
  • ./conf:/usr/local/etc/redis: 这个只是将该目录挂载出来了,里面需要我们将配置文件写入,而不是 redis 会主动将配置文件写到该目录中,使用自定义配置文件还需要配合 command: redis-server /usr/local/etc/redis/redis.conf 指定
  • ./logs:/logs 创建一个 logs 目录,在配置文件中,我们将 redis 日志写入到此目录下

针对于 redis 配置文件的简单修改:redis.conf

  1. # 设置为后台运行
  2. daemonize yes
  3. # 配置那些服务能链接到 redis,默认是本机,设置为所有机器都可访问
  4. # bind 127.0.0.1
  5. bind 0.0.0.0
  6. # 设置 redis 的访问密码,默认是不需要密码
  7. requirepass 123456
  8. # 将日志文件打印出来,如果配置了这个,docker 容器就看不了日志了
  9. # logfile "/logs/redis.log"

:::tips 上面的配置是要修改的配置,不能直接使用,要拿到 redis 的默认配置文件,在这个基础上修改之后才能使用。
否则你在启动 redis 的时候可能就直接会出现一句日志 redis exited with code 0 然后容器就退出了(这个日志信息还是在 docker desktop 桌面版的软件上才能看到) :::

redis.conf 默认配置文件

下面给出 6.2.6 版本的 redis.conf 文件, 已经将上面修改之后的参数在下面配置文件中修改好了,可以直接复制过去就可以使用

  1. # Redis configuration file example.
  2. #
  3. # Note that in order to read the configuration file, Redis must be
  4. # started with the file path as first argument:
  5. #
  6. # ./redis-server /path/to/redis.conf
  7. # Note on units: when memory size is needed, it is possible to specify
  8. # it in the usual form of 1k 5GB 4M and so forth:
  9. #
  10. # 1k => 1000 bytes
  11. # 1kb => 1024 bytes
  12. # 1m => 1000000 bytes
  13. # 1mb => 1024*1024 bytes
  14. # 1g => 1000000000 bytes
  15. # 1gb => 1024*1024*1024 bytes
  16. #
  17. # units are case insensitive so 1GB 1Gb 1gB are all the same.
  18. ################################## INCLUDES ###################################
  19. # Include one or more other config files here. This is useful if you
  20. # have a standard template that goes to all Redis servers but also need
  21. # to customize a few per-server settings. Include files can include
  22. # other files, so use this wisely.
  23. #
  24. # Note that option "include" won't be rewritten by command "CONFIG REWRITE"
  25. # from admin or Redis Sentinel. Since Redis always uses the last processed
  26. # line as value of a configuration directive, you'd better put includes
  27. # at the beginning of this file to avoid overwriting config change at runtime.
  28. #
  29. # If instead you are interested in using includes to override configuration
  30. # options, it is better to use include as the last line.
  31. #
  32. # include /path/to/local.conf
  33. # include /path/to/other.conf
  34. ################################## MODULES #####################################
  35. # Load modules at startup. If the server is not able to load modules
  36. # it will abort. It is possible to use multiple loadmodule directives.
  37. #
  38. # loadmodule /path/to/my_module.so
  39. # loadmodule /path/to/other_module.so
  40. ################################## NETWORK #####################################
  41. # By default, if no "bind" configuration directive is specified, Redis listens
  42. # for connections from all available network interfaces on the host machine.
  43. # It is possible to listen to just one or multiple selected interfaces using
  44. # the "bind" configuration directive, followed by one or more IP addresses.
  45. # Each address can be prefixed by "-", which means that redis will not fail to
  46. # start if the address is not available. Being not available only refers to
  47. # addresses that does not correspond to any network interfece. Addresses that
  48. # are already in use will always fail, and unsupported protocols will always BE
  49. # silently skipped.
  50. #
  51. # Examples:
  52. #
  53. # bind 192.168.1.100 10.0.0.1 # listens on two specific IPv4 addresses
  54. # bind 127.0.0.1 ::1 # listens on loopback IPv4 and IPv6
  55. # bind * -::* # like the default, all available interfaces
  56. #
  57. # ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the
  58. # internet, binding to all the interfaces is dangerous and will expose the
  59. # instance to everybody on the internet. So by default we uncomment the
  60. # following bind directive, that will force Redis to listen only on the
  61. # IPv4 and IPv6 (if available) loopback interface addresses (this means Redis
  62. # will only be able to accept client connections from the same host that it is
  63. # running on).
  64. #
  65. # IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES
  66. # JUST COMMENT OUT THE FOLLOWING LINE.
  67. # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  68. # bind 127.0.0.1 -::1
  69. bind 0.0.0.0
  70. # Protected mode is a layer of security protection, in order to avoid that
  71. # Redis instances left open on the internet are accessed and exploited.
  72. #
  73. # When protected mode is on and if:
  74. #
  75. # 1) The server is not binding explicitly to a set of addresses using the
  76. # "bind" directive.
  77. # 2) No password is configured.
  78. #
  79. # The server only accepts connections from clients connecting from the
  80. # IPv4 and IPv6 loopback addresses 127.0.0.1 and ::1, and from Unix domain
  81. # sockets.
  82. #
  83. # By default protected mode is enabled. You should disable it only if
  84. # you are sure you want clients from other hosts to connect to Redis
  85. # even if no authentication is configured, nor a specific set of interfaces
  86. # are explicitly listed using the "bind" directive.
  87. protected-mode yes
  88. # Accept connections on the specified port, default is 6379 (IANA #815344).
  89. # If port 0 is specified Redis will not listen on a TCP socket.
  90. port 6379
  91. # TCP listen() backlog.
  92. #
  93. # In high requests-per-second environments you need a high backlog in order
  94. # to avoid slow clients connection issues. Note that the Linux kernel
  95. # will silently truncate it to the value of /proc/sys/net/core/somaxconn so
  96. # make sure to raise both the value of somaxconn and tcp_max_syn_backlog
  97. # in order to get the desired effect.
  98. tcp-backlog 511
  99. # Unix socket.
  100. #
  101. # Specify the path for the Unix socket that will be used to listen for
  102. # incoming connections. There is no default, so Redis will not listen
  103. # on a unix socket when not specified.
  104. #
  105. # unixsocket /run/redis.sock
  106. # unixsocketperm 700
  107. # Close the connection after a client is idle for N seconds (0 to disable)
  108. timeout 0
  109. # TCP keepalive.
  110. #
  111. # If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence
  112. # of communication. This is useful for two reasons:
  113. #
  114. # 1) Detect dead peers.
  115. # 2) Force network equipment in the middle to consider the connection to be
  116. # alive.
  117. #
  118. # On Linux, the specified value (in seconds) is the period used to send ACKs.
  119. # Note that to close the connection the double of the time is needed.
  120. # On other kernels the period depends on the kernel configuration.
  121. #
  122. # A reasonable value for this option is 300 seconds, which is the new
  123. # Redis default starting with Redis 3.2.1.
  124. tcp-keepalive 300
  125. ################################# TLS/SSL #####################################
  126. # By default, TLS/SSL is disabled. To enable it, the "tls-port" configuration
  127. # directive can be used to define TLS-listening ports. To enable TLS on the
  128. # default port, use:
  129. #
  130. # port 0
  131. # tls-port 6379
  132. # Configure a X.509 certificate and private key to use for authenticating the
  133. # server to connected clients, masters or cluster peers. These files should be
  134. # PEM formatted.
  135. #
  136. # tls-cert-file redis.crt
  137. # tls-key-file redis.key
  138. #
  139. # If the key file is encrypted using a passphrase, it can be included here
  140. # as well.
  141. #
  142. # tls-key-file-pass secret
  143. # Normally Redis uses the same certificate for both server functions (accepting
  144. # connections) and client functions (replicating from a master, establishing
  145. # cluster bus connections, etc.).
  146. #
  147. # Sometimes certificates are issued with attributes that designate them as
  148. # client-only or server-only certificates. In that case it may be desired to use
  149. # different certificates for incoming (server) and outgoing (client)
  150. # connections. To do that, use the following directives:
  151. #
  152. # tls-client-cert-file client.crt
  153. # tls-client-key-file client.key
  154. #
  155. # If the key file is encrypted using a passphrase, it can be included here
  156. # as well.
  157. #
  158. # tls-client-key-file-pass secret
  159. # Configure a DH parameters file to enable Diffie-Hellman (DH) key exchange:
  160. #
  161. # tls-dh-params-file redis.dh
  162. # Configure a CA certificate(s) bundle or directory to authenticate TLS/SSL
  163. # clients and peers. Redis requires an explicit configuration of at least one
  164. # of these, and will not implicitly use the system wide configuration.
  165. #
  166. # tls-ca-cert-file ca.crt
  167. # tls-ca-cert-dir /etc/ssl/certs
  168. # By default, clients (including replica servers) on a TLS port are required
  169. # to authenticate using valid client side certificates.
  170. #
  171. # If "no" is specified, client certificates are not required and not accepted.
  172. # If "optional" is specified, client certificates are accepted and must be
  173. # valid if provided, but are not required.
  174. #
  175. # tls-auth-clients no
  176. # tls-auth-clients optional
  177. # By default, a Redis replica does not attempt to establish a TLS connection
  178. # with its master.
  179. #
  180. # Use the following directive to enable TLS on replication links.
  181. #
  182. # tls-replication yes
  183. # By default, the Redis Cluster bus uses a plain TCP connection. To enable
  184. # TLS for the bus protocol, use the following directive:
  185. #
  186. # tls-cluster yes
  187. # By default, only TLSv1.2 and TLSv1.3 are enabled and it is highly recommended
  188. # that older formally deprecated versions are kept disabled to reduce the attack surface.
  189. # You can explicitly specify TLS versions to support.
  190. # Allowed values are case insensitive and include "TLSv1", "TLSv1.1", "TLSv1.2",
  191. # "TLSv1.3" (OpenSSL >= 1.1.1) or any combination.
  192. # To enable only TLSv1.2 and TLSv1.3, use:
  193. #
  194. # tls-protocols "TLSv1.2 TLSv1.3"
  195. # Configure allowed ciphers. See the ciphers(1ssl) manpage for more information
  196. # about the syntax of this string.
  197. #
  198. # Note: this configuration applies only to <= TLSv1.2.
  199. #
  200. # tls-ciphers DEFAULT:!MEDIUM
  201. # Configure allowed TLSv1.3 ciphersuites. See the ciphers(1ssl) manpage for more
  202. # information about the syntax of this string, and specifically for TLSv1.3
  203. # ciphersuites.
  204. #
  205. # tls-ciphersuites TLS_CHACHA20_POLY1305_SHA256
  206. # When choosing a cipher, use the server's preference instead of the client
  207. # preference. By default, the server follows the client's preference.
  208. #
  209. # tls-prefer-server-ciphers yes
  210. # By default, TLS session caching is enabled to allow faster and less expensive
  211. # reconnections by clients that support it. Use the following directive to disable
  212. # caching.
  213. #
  214. # tls-session-caching no
  215. # Change the default number of TLS sessions cached. A zero value sets the cache
  216. # to unlimited size. The default size is 20480.
  217. #
  218. # tls-session-cache-size 5000
  219. # Change the default timeout of cached TLS sessions. The default timeout is 300
  220. # seconds.
  221. #
  222. # tls-session-cache-timeout 60
  223. ################################# GENERAL #####################################
  224. # By default Redis does not run as a daemon. Use 'yes' if you need it.
  225. # Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
  226. # When Redis is supervised by upstart or systemd, this parameter has no impact.
  227. daemonize no
  228. # If you run Redis from upstart or systemd, Redis can interact with your
  229. # supervision tree. Options:
  230. # supervised no - no supervision interaction
  231. # supervised upstart - signal upstart by putting Redis into SIGSTOP mode
  232. # requires "expect stop" in your upstart job config
  233. # supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
  234. # on startup, and updating Redis status on a regular
  235. # basis.
  236. # supervised auto - detect upstart or systemd method based on
  237. # UPSTART_JOB or NOTIFY_SOCKET environment variables
  238. # Note: these supervision methods only signal "process is ready."
  239. # They do not enable continuous pings back to your supervisor.
  240. #
  241. # The default is "no". To run under upstart/systemd, you can simply uncomment
  242. # the line below:
  243. #
  244. # supervised auto
  245. # If a pid file is specified, Redis writes it where specified at startup
  246. # and removes it at exit.
  247. #
  248. # When the server runs non daemonized, no pid file is created if none is
  249. # specified in the configuration. When the server is daemonized, the pid file
  250. # is used even if not specified, defaulting to "/var/run/redis.pid".
  251. #
  252. # Creating a pid file is best effort: if Redis is not able to create it
  253. # nothing bad happens, the server will start and run normally.
  254. #
  255. # Note that on modern Linux systems "/run/redis.pid" is more conforming
  256. # and should be used instead.
  257. pidfile /var/run/redis_6379.pid
  258. # Specify the server verbosity level.
  259. # This can be one of:
  260. # debug (a lot of information, useful for development/testing)
  261. # verbose (many rarely useful info, but not a mess like the debug level)
  262. # notice (moderately verbose, what you want in production probably)
  263. # warning (only very important / critical messages are logged)
  264. loglevel notice
  265. # Specify the log file name. Also the empty string can be used to force
  266. # Redis to log on the standard output. Note that if you use standard
  267. # output for logging but daemonize, logs will be sent to /dev/null
  268. # logfile "/logs/redis.log"
  269. # To enable logging to the system logger, just set 'syslog-enabled' to yes,
  270. # and optionally update the other syslog parameters to suit your needs.
  271. # syslog-enabled no
  272. # Specify the syslog identity.
  273. # syslog-ident redis
  274. # Specify the syslog facility. Must be USER or between LOCAL0-LOCAL7.
  275. # syslog-facility local0
  276. # To disable the built in crash log, which will possibly produce cleaner core
  277. # dumps when they are needed, uncomment the following:
  278. #
  279. # crash-log-enabled no
  280. # To disable the fast memory check that's run as part of the crash log, which
  281. # will possibly let redis terminate sooner, uncomment the following:
  282. #
  283. # crash-memcheck-enabled no
  284. # Set the number of databases. The default database is DB 0, you can select
  285. # a different one on a per-connection basis using SELECT <dbid> where
  286. # dbid is a number between 0 and 'databases'-1
  287. databases 16
  288. # By default Redis shows an ASCII art logo only when started to log to the
  289. # standard output and if the standard output is a TTY and syslog logging is
  290. # disabled. Basically this means that normally a logo is displayed only in
  291. # interactive sessions.
  292. #
  293. # However it is possible to force the pre-4.0 behavior and always show a
  294. # ASCII art logo in startup logs by setting the following option to yes.
  295. always-show-logo no
  296. # By default, Redis modifies the process title (as seen in 'top' and 'ps') to
  297. # provide some runtime information. It is possible to disable this and leave
  298. # the process name as executed by setting the following to no.
  299. set-proc-title yes
  300. # When changing the process title, Redis uses the following template to construct
  301. # the modified title.
  302. #
  303. # Template variables are specified in curly brackets. The following variables are
  304. # supported:
  305. #
  306. # {title} Name of process as executed if parent, or type of child process.
  307. # {listen-addr} Bind address or '*' followed by TCP or TLS port listening on, or
  308. # Unix socket if only that's available.
  309. # {server-mode} Special mode, i.e. "[sentinel]" or "[cluster]".
  310. # {port} TCP port listening on, or 0.
  311. # {tls-port} TLS port listening on, or 0.
  312. # {unixsocket} Unix domain socket listening on, or "".
  313. # {config-file} Name of configuration file used.
  314. #
  315. proc-title-template "{title} {listen-addr} {server-mode}"
  316. ################################ SNAPSHOTTING ################################
  317. # Save the DB to disk.
  318. #
  319. # save <seconds> <changes>
  320. #
  321. # Redis will save the DB if both the given number of seconds and the given
  322. # number of write operations against the DB occurred.
  323. #
  324. # Snapshotting can be completely disabled with a single empty string argument
  325. # as in following example:
  326. #
  327. # save ""
  328. #
  329. # Unless specified otherwise, by default Redis will save the DB:
  330. # * After 3600 seconds (an hour) if at least 1 key changed
  331. # * After 300 seconds (5 minutes) if at least 100 keys changed
  332. # * After 60 seconds if at least 10000 keys changed
  333. #
  334. # You can set these explicitly by uncommenting the three following lines.
  335. #
  336. # save 3600 1
  337. # save 300 100
  338. # save 60 10000
  339. # By default Redis will stop accepting writes if RDB snapshots are enabled
  340. # (at least one save point) and the latest background save failed.
  341. # This will make the user aware (in a hard way) that data is not persisting
  342. # on disk properly, otherwise chances are that no one will notice and some
  343. # disaster will happen.
  344. #
  345. # If the background saving process will start working again Redis will
  346. # automatically allow writes again.
  347. #
  348. # However if you have setup your proper monitoring of the Redis server
  349. # and persistence, you may want to disable this feature so that Redis will
  350. # continue to work as usual even if there are problems with disk,
  351. # permissions, and so forth.
  352. stop-writes-on-bgsave-error yes
  353. # Compress string objects using LZF when dump .rdb databases?
  354. # By default compression is enabled as it's almost always a win.
  355. # If you want to save some CPU in the saving child set it to 'no' but
  356. # the dataset will likely be bigger if you have compressible values or keys.
  357. rdbcompression yes
  358. # Since version 5 of RDB a CRC64 checksum is placed at the end of the file.
  359. # This makes the format more resistant to corruption but there is a performance
  360. # hit to pay (around 10%) when saving and loading RDB files, so you can disable it
  361. # for maximum performances.
  362. #
  363. # RDB files created with checksum disabled have a checksum of zero that will
  364. # tell the loading code to skip the check.
  365. rdbchecksum yes
  366. # Enables or disables full sanitation checks for ziplist and listpack etc when
  367. # loading an RDB or RESTORE payload. This reduces the chances of a assertion or
  368. # crash later on while processing commands.
  369. # Options:
  370. # no - Never perform full sanitation
  371. # yes - Always perform full sanitation
  372. # clients - Perform full sanitation only for user connections.
  373. # Excludes: RDB files, RESTORE commands received from the master
  374. # connection, and client connections which have the
  375. # skip-sanitize-payload ACL flag.
  376. # The default should be 'clients' but since it currently affects cluster
  377. # resharding via MIGRATE, it is temporarily set to 'no' by default.
  378. #
  379. # sanitize-dump-payload no
  380. # The filename where to dump the DB
  381. dbfilename dump.rdb
  382. # Remove RDB files used by replication in instances without persistence
  383. # enabled. By default this option is disabled, however there are environments
  384. # where for regulations or other security concerns, RDB files persisted on
  385. # disk by masters in order to feed replicas, or stored on disk by replicas
  386. # in order to load them for the initial synchronization, should be deleted
  387. # ASAP. Note that this option ONLY WORKS in instances that have both AOF
  388. # and RDB persistence disabled, otherwise is completely ignored.
  389. #
  390. # An alternative (and sometimes better) way to obtain the same effect is
  391. # to use diskless replication on both master and replicas instances. However
  392. # in the case of replicas, diskless is not always an option.
  393. rdb-del-sync-files no
  394. # The working directory.
  395. #
  396. # The DB will be written inside this directory, with the filename specified
  397. # above using the 'dbfilename' configuration directive.
  398. #
  399. # The Append Only File will also be created inside this directory.
  400. #
  401. # Note that you must specify a directory here, not a file name.
  402. dir ./
  403. ################################# REPLICATION #################################
  404. # Master-Replica replication. Use replicaof to make a Redis instance a copy of
  405. # another Redis server. A few things to understand ASAP about Redis replication.
  406. #
  407. # +------------------+ +---------------+
  408. # | Master | ---> | Replica |
  409. # | (receive writes) | | (exact copy) |
  410. # +------------------+ +---------------+
  411. #
  412. # 1) Redis replication is asynchronous, but you can configure a master to
  413. # stop accepting writes if it appears to be not connected with at least
  414. # a given number of replicas.
  415. # 2) Redis replicas are able to perform a partial resynchronization with the
  416. # master if the replication link is lost for a relatively small amount of
  417. # time. You may want to configure the replication backlog size (see the next
  418. # sections of this file) with a sensible value depending on your needs.
  419. # 3) Replication is automatic and does not need user intervention. After a
  420. # network partition replicas automatically try to reconnect to masters
  421. # and resynchronize with them.
  422. #
  423. # replicaof <masterip> <masterport>
  424. # If the master is password protected (using the "requirepass" configuration
  425. # directive below) it is possible to tell the replica to authenticate before
  426. # starting the replication synchronization process, otherwise the master will
  427. # refuse the replica request.
  428. #
  429. # masterauth <master-password>
  430. #
  431. # However this is not enough if you are using Redis ACLs (for Redis version
  432. # 6 or greater), and the default user is not capable of running the PSYNC
  433. # command and/or other commands needed for replication. In this case it's
  434. # better to configure a special user to use with replication, and specify the
  435. # masteruser configuration as such:
  436. #
  437. # masteruser <username>
  438. #
  439. # When masteruser is specified, the replica will authenticate against its
  440. # master using the new AUTH form: AUTH <username> <password>.
  441. # When a replica loses its connection with the master, or when the replication
  442. # is still in progress, the replica can act in two different ways:
  443. #
  444. # 1) if replica-serve-stale-data is set to 'yes' (the default) the replica will
  445. # still reply to client requests, possibly with out of date data, or the
  446. # data set may just be empty if this is the first synchronization.
  447. #
  448. # 2) If replica-serve-stale-data is set to 'no' the replica will reply with
  449. # an error "SYNC with master in progress" to all commands except:
  450. # INFO, REPLICAOF, AUTH, PING, SHUTDOWN, REPLCONF, ROLE, CONFIG, SUBSCRIBE,
  451. # UNSUBSCRIBE, PSUBSCRIBE, PUNSUBSCRIBE, PUBLISH, PUBSUB, COMMAND, POST,
  452. # HOST and LATENCY.
  453. #
  454. replica-serve-stale-data yes
  455. # You can configure a replica instance to accept writes or not. Writing against
  456. # a replica instance may be useful to store some ephemeral data (because data
  457. # written on a replica will be easily deleted after resync with the master) but
  458. # may also cause problems if clients are writing to it because of a
  459. # misconfiguration.
  460. #
  461. # Since Redis 2.6 by default replicas are read-only.
  462. #
  463. # Note: read only replicas are not designed to be exposed to untrusted clients
  464. # on the internet. It's just a protection layer against misuse of the instance.
  465. # Still a read only replica exports by default all the administrative commands
  466. # such as CONFIG, DEBUG, and so forth. To a limited extent you can improve
  467. # security of read only replicas using 'rename-command' to shadow all the
  468. # administrative / dangerous commands.
  469. replica-read-only yes
  470. # Replication SYNC strategy: disk or socket.
  471. #
  472. # New replicas and reconnecting replicas that are not able to continue the
  473. # replication process just receiving differences, need to do what is called a
  474. # "full synchronization". An RDB file is transmitted from the master to the
  475. # replicas.
  476. #
  477. # The transmission can happen in two different ways:
  478. #
  479. # 1) Disk-backed: The Redis master creates a new process that writes the RDB
  480. # file on disk. Later the file is transferred by the parent
  481. # process to the replicas incrementally.
  482. # 2) Diskless: The Redis master creates a new process that directly writes the
  483. # RDB file to replica sockets, without touching the disk at all.
  484. #
  485. # With disk-backed replication, while the RDB file is generated, more replicas
  486. # can be queued and served with the RDB file as soon as the current child
  487. # producing the RDB file finishes its work. With diskless replication instead
  488. # once the transfer starts, new replicas arriving will be queued and a new
  489. # transfer will start when the current one terminates.
  490. #
  491. # When diskless replication is used, the master waits a configurable amount of
  492. # time (in seconds) before starting the transfer in the hope that multiple
  493. # replicas will arrive and the transfer can be parallelized.
  494. #
  495. # With slow disks and fast (large bandwidth) networks, diskless replication
  496. # works better.
  497. repl-diskless-sync no
  498. # When diskless replication is enabled, it is possible to configure the delay
  499. # the server waits in order to spawn the child that transfers the RDB via socket
  500. # to the replicas.
  501. #
  502. # This is important since once the transfer starts, it is not possible to serve
  503. # new replicas arriving, that will be queued for the next RDB transfer, so the
  504. # server waits a delay in order to let more replicas arrive.
  505. #
  506. # The delay is specified in seconds, and by default is 5 seconds. To disable
  507. # it entirely just set it to 0 seconds and the transfer will start ASAP.
  508. repl-diskless-sync-delay 5
  509. # -----------------------------------------------------------------------------
  510. # WARNING: RDB diskless load is experimental. Since in this setup the replica
  511. # does not immediately store an RDB on disk, it may cause data loss during
  512. # failovers. RDB diskless load + Redis modules not handling I/O reads may also
  513. # cause Redis to abort in case of I/O errors during the initial synchronization
  514. # stage with the master. Use only if you know what you are doing.
  515. # -----------------------------------------------------------------------------
  516. #
  517. # Replica can load the RDB it reads from the replication link directly from the
  518. # socket, or store the RDB to a file and read that file after it was completely
  519. # received from the master.
  520. #
  521. # In many cases the disk is slower than the network, and storing and loading
  522. # the RDB file may increase replication time (and even increase the master's
  523. # Copy on Write memory and salve buffers).
  524. # However, parsing the RDB file directly from the socket may mean that we have
  525. # to flush the contents of the current database before the full rdb was
  526. # received. For this reason we have the following options:
  527. #
  528. # "disabled" - Don't use diskless load (store the rdb file to the disk first)
  529. # "on-empty-db" - Use diskless load only when it is completely safe.
  530. # "swapdb" - Keep a copy of the current db contents in RAM while parsing
  531. # the data directly from the socket. note that this requires
  532. # sufficient memory, if you don't have it, you risk an OOM kill.
  533. repl-diskless-load disabled
  534. # Replicas send PINGs to server in a predefined interval. It's possible to
  535. # change this interval with the repl_ping_replica_period option. The default
  536. # value is 10 seconds.
  537. #
  538. # repl-ping-replica-period 10
  539. # The following option sets the replication timeout for:
  540. #
  541. # 1) Bulk transfer I/O during SYNC, from the point of view of replica.
  542. # 2) Master timeout from the point of view of replicas (data, pings).
  543. # 3) Replica timeout from the point of view of masters (REPLCONF ACK pings).
  544. #
  545. # It is important to make sure that this value is greater than the value
  546. # specified for repl-ping-replica-period otherwise a timeout will be detected
  547. # every time there is low traffic between the master and the replica. The default
  548. # value is 60 seconds.
  549. #
  550. # repl-timeout 60
  551. # Disable TCP_NODELAY on the replica socket after SYNC?
  552. #
  553. # If you select "yes" Redis will use a smaller number of TCP packets and
  554. # less bandwidth to send data to replicas. But this can add a delay for
  555. # the data to appear on the replica side, up to 40 milliseconds with
  556. # Linux kernels using a default configuration.
  557. #
  558. # If you select "no" the delay for data to appear on the replica side will
  559. # be reduced but more bandwidth will be used for replication.
  560. #
  561. # By default we optimize for low latency, but in very high traffic conditions
  562. # or when the master and replicas are many hops away, turning this to "yes" may
  563. # be a good idea.
  564. repl-disable-tcp-nodelay no
  565. # Set the replication backlog size. The backlog is a buffer that accumulates
  566. # replica data when replicas are disconnected for some time, so that when a
  567. # replica wants to reconnect again, often a full resync is not needed, but a
  568. # partial resync is enough, just passing the portion of data the replica
  569. # missed while disconnected.
  570. #
  571. # The bigger the replication backlog, the longer the replica can endure the
  572. # disconnect and later be able to perform a partial resynchronization.
  573. #
  574. # The backlog is only allocated if there is at least one replica connected.
  575. #
  576. # repl-backlog-size 1mb
  577. # After a master has no connected replicas for some time, the backlog will be
  578. # freed. The following option configures the amount of seconds that need to
  579. # elapse, starting from the time the last replica disconnected, for the backlog
  580. # buffer to be freed.
  581. #
  582. # Note that replicas never free the backlog for timeout, since they may be
  583. # promoted to masters later, and should be able to correctly "partially
  584. # resynchronize" with other replicas: hence they should always accumulate backlog.
  585. #
  586. # A value of 0 means to never release the backlog.
  587. #
  588. # repl-backlog-ttl 3600
  589. # The replica priority is an integer number published by Redis in the INFO
  590. # output. It is used by Redis Sentinel in order to select a replica to promote
  591. # into a master if the master is no longer working correctly.
  592. #
  593. # A replica with a low priority number is considered better for promotion, so
  594. # for instance if there are three replicas with priority 10, 100, 25 Sentinel
  595. # will pick the one with priority 10, that is the lowest.
  596. #
  597. # However a special priority of 0 marks the replica as not able to perform the
  598. # role of master, so a replica with priority of 0 will never be selected by
  599. # Redis Sentinel for promotion.
  600. #
  601. # By default the priority is 100.
  602. replica-priority 100
  603. # -----------------------------------------------------------------------------
  604. # By default, Redis Sentinel includes all replicas in its reports. A replica
  605. # can be excluded from Redis Sentinel's announcements. An unannounced replica
  606. # will be ignored by the 'sentinel replicas <master>' command and won't be
  607. # exposed to Redis Sentinel's clients.
  608. #
  609. # This option does not change the behavior of replica-priority. Even with
  610. # replica-announced set to 'no', the replica can be promoted to master. To
  611. # prevent this behavior, set replica-priority to 0.
  612. #
  613. # replica-announced yes
  614. # It is possible for a master to stop accepting writes if there are less than
  615. # N replicas connected, having a lag less or equal than M seconds.
  616. #
  617. # The N replicas need to be in "online" state.
  618. #
  619. # The lag in seconds, that must be <= the specified value, is calculated from
  620. # the last ping received from the replica, that is usually sent every second.
  621. #
  622. # This option does not GUARANTEE that N replicas will accept the write, but
  623. # will limit the window of exposure for lost writes in case not enough replicas
  624. # are available, to the specified number of seconds.
  625. #
  626. # For example to require at least 3 replicas with a lag <= 10 seconds use:
  627. #
  628. # min-replicas-to-write 3
  629. # min-replicas-max-lag 10
  630. #
  631. # Setting one or the other to 0 disables the feature.
  632. #
  633. # By default min-replicas-to-write is set to 0 (feature disabled) and
  634. # min-replicas-max-lag is set to 10.
  635. # A Redis master is able to list the address and port of the attached
  636. # replicas in different ways. For example the "INFO replication" section
  637. # offers this information, which is used, among other tools, by
  638. # Redis Sentinel in order to discover replica instances.
  639. # Another place where this info is available is in the output of the
  640. # "ROLE" command of a master.
  641. #
  642. # The listed IP address and port normally reported by a replica is
  643. # obtained in the following way:
  644. #
  645. # IP: The address is auto detected by checking the peer address
  646. # of the socket used by the replica to connect with the master.
  647. #
  648. # Port: The port is communicated by the replica during the replication
  649. # handshake, and is normally the port that the replica is using to
  650. # listen for connections.
  651. #
  652. # However when port forwarding or Network Address Translation (NAT) is
  653. # used, the replica may actually be reachable via different IP and port
  654. # pairs. The following two options can be used by a replica in order to
  655. # report to its master a specific set of IP and port, so that both INFO
  656. # and ROLE will report those values.
  657. #
  658. # There is no need to use both the options if you need to override just
  659. # the port or the IP address.
  660. #
  661. # replica-announce-ip 5.5.5.5
  662. # replica-announce-port 1234
  663. ############################### KEYS TRACKING #################################
  664. # Redis implements server assisted support for client side caching of values.
  665. # This is implemented using an invalidation table that remembers, using
  666. # a radix key indexed by key name, what clients have which keys. In turn
  667. # this is used in order to send invalidation messages to clients. Please
  668. # check this page to understand more about the feature:
  669. #
  670. # https://redis.io/topics/client-side-caching
  671. #
  672. # When tracking is enabled for a client, all the read only queries are assumed
  673. # to be cached: this will force Redis to store information in the invalidation
  674. # table. When keys are modified, such information is flushed away, and
  675. # invalidation messages are sent to the clients. However if the workload is
  676. # heavily dominated by reads, Redis could use more and more memory in order
  677. # to track the keys fetched by many clients.
  678. #
  679. # For this reason it is possible to configure a maximum fill value for the
  680. # invalidation table. By default it is set to 1M of keys, and once this limit
  681. # is reached, Redis will start to evict keys in the invalidation table
  682. # even if they were not modified, just to reclaim memory: this will in turn
  683. # force the clients to invalidate the cached values. Basically the table
  684. # maximum size is a trade off between the memory you want to spend server
  685. # side to track information about who cached what, and the ability of clients
  686. # to retain cached objects in memory.
  687. #
  688. # If you set the value to 0, it means there are no limits, and Redis will
  689. # retain as many keys as needed in the invalidation table.
  690. # In the "stats" INFO section, you can find information about the number of
  691. # keys in the invalidation table at every given moment.
  692. #
  693. # Note: when key tracking is used in broadcasting mode, no memory is used
  694. # in the server side so this setting is useless.
  695. #
  696. # tracking-table-max-keys 1000000
  697. ################################## SECURITY ###################################
  698. # Warning: since Redis is pretty fast, an outside user can try up to
  699. # 1 million passwords per second against a modern box. This means that you
  700. # should use very strong passwords, otherwise they will be very easy to break.
  701. # Note that because the password is really a shared secret between the client
  702. # and the server, and should not be memorized by any human, the password
  703. # can be easily a long string from /dev/urandom or whatever, so by using a
  704. # long and unguessable password no brute force attack will be possible.
  705. # Redis ACL users are defined in the following format:
  706. #
  707. # user <username> ... acl rules ...
  708. #
  709. # For example:
  710. #
  711. # user worker +@list +@connection ~jobs:* on >ffa9203c493aa99
  712. #
  713. # The special username "default" is used for new connections. If this user
  714. # has the "nopass" rule, then new connections will be immediately authenticated
  715. # as the "default" user without the need of any password provided via the
  716. # AUTH command. Otherwise if the "default" user is not flagged with "nopass"
  717. # the connections will start in not authenticated state, and will require
  718. # AUTH (or the HELLO command AUTH option) in order to be authenticated and
  719. # start to work.
  720. #
  721. # The ACL rules that describe what a user can do are the following:
  722. #
  723. # on Enable the user: it is possible to authenticate as this user.
  724. # off Disable the user: it's no longer possible to authenticate
  725. # with this user, however the already authenticated connections
  726. # will still work.
  727. # skip-sanitize-payload RESTORE dump-payload sanitation is skipped.
  728. # sanitize-payload RESTORE dump-payload is sanitized (default).
  729. # +<command> Allow the execution of that command
  730. # -<command> Disallow the execution of that command
  731. # +@<category> Allow the execution of all the commands in such category
  732. # with valid categories are like @admin, @set, @sortedset, ...
  733. # and so forth, see the full list in the server.c file where
  734. # the Redis command table is described and defined.
  735. # The special category @all means all the commands, but currently
  736. # present in the server, and that will be loaded in the future
  737. # via modules.
  738. # +<command>|subcommand Allow a specific subcommand of an otherwise
  739. # disabled command. Note that this form is not
  740. # allowed as negative like -DEBUG|SEGFAULT, but
  741. # only additive starting with "+".
  742. # allcommands Alias for +@all. Note that it implies the ability to execute
  743. # all the future commands loaded via the modules system.
  744. # nocommands Alias for -@all.
  745. # ~<pattern> Add a pattern of keys that can be mentioned as part of
  746. # commands. For instance ~* allows all the keys. The pattern
  747. # is a glob-style pattern like the one of KEYS.
  748. # It is possible to specify multiple patterns.
  749. # allkeys Alias for ~*
  750. # resetkeys Flush the list of allowed keys patterns.
  751. # &<pattern> Add a glob-style pattern of Pub/Sub channels that can be
  752. # accessed by the user. It is possible to specify multiple channel
  753. # patterns.
  754. # allchannels Alias for &*
  755. # resetchannels Flush the list of allowed channel patterns.
  756. # ><password> Add this password to the list of valid password for the user.
  757. # For example >mypass will add "mypass" to the list.
  758. # This directive clears the "nopass" flag (see later).
  759. # <<password> Remove this password from the list of valid passwords.
  760. # nopass All the set passwords of the user are removed, and the user
  761. # is flagged as requiring no password: it means that every
  762. # password will work against this user. If this directive is
  763. # used for the default user, every new connection will be
  764. # immediately authenticated with the default user without
  765. # any explicit AUTH command required. Note that the "resetpass"
  766. # directive will clear this condition.
  767. # resetpass Flush the list of allowed passwords. Moreover removes the
  768. # "nopass" status. After "resetpass" the user has no associated
  769. # passwords and there is no way to authenticate without adding
  770. # some password (or setting it as "nopass" later).
  771. # reset Performs the following actions: resetpass, resetkeys, off,
  772. # -@all. The user returns to the same state it has immediately
  773. # after its creation.
  774. #
  775. # ACL rules can be specified in any order: for instance you can start with
  776. # passwords, then flags, or key patterns. However note that the additive
  777. # and subtractive rules will CHANGE MEANING depending on the ordering.
  778. # For instance see the following example:
  779. #
  780. # user alice on +@all -DEBUG ~* >somepassword
  781. #
  782. # This will allow "alice" to use all the commands with the exception of the
  783. # DEBUG command, since +@all added all the commands to the set of the commands
  784. # alice can use, and later DEBUG was removed. However if we invert the order
  785. # of two ACL rules the result will be different:
  786. #
  787. # user alice on -DEBUG +@all ~* >somepassword
  788. #
  789. # Now DEBUG was removed when alice had yet no commands in the set of allowed
  790. # commands, later all the commands are added, so the user will be able to
  791. # execute everything.
  792. #
  793. # Basically ACL rules are processed left-to-right.
  794. #
  795. # For more information about ACL configuration please refer to
  796. # the Redis web site at https://redis.io/topics/acl
  797. # ACL LOG
  798. #
  799. # The ACL Log tracks failed commands and authentication events associated
  800. # with ACLs. The ACL Log is useful to troubleshoot failed commands blocked
  801. # by ACLs. The ACL Log is stored in memory. You can reclaim memory with
  802. # ACL LOG RESET. Define the maximum entry length of the ACL Log below.
  803. acllog-max-len 128
  804. # Using an external ACL file
  805. #
  806. # Instead of configuring users here in this file, it is possible to use
  807. # a stand-alone file just listing users. The two methods cannot be mixed:
  808. # if you configure users here and at the same time you activate the external
  809. # ACL file, the server will refuse to start.
  810. #
  811. # The format of the external ACL user file is exactly the same as the
  812. # format that is used inside redis.conf to describe users.
  813. #
  814. # aclfile /etc/redis/users.acl
  815. # IMPORTANT NOTE: starting with Redis 6 "requirepass" is just a compatibility
  816. # layer on top of the new ACL system. The option effect will be just setting
  817. # the password for the default user. Clients will still authenticate using
  818. # AUTH <password> as usually, or more explicitly with AUTH default <password>
  819. # if they follow the new protocol: both will work.
  820. #
  821. # The requirepass is not compatable with aclfile option and the ACL LOAD
  822. # command, these will cause requirepass to be ignored.
  823. #
  824. # requirepass foobared
  825. # New users are initialized with restrictive permissions by default, via the
  826. # equivalent of this ACL rule 'off resetkeys -@all'. Starting with Redis 6.2, it
  827. # is possible to manage access to Pub/Sub channels with ACL rules as well. The
  828. # default Pub/Sub channels permission if new users is controlled by the
  829. # acl-pubsub-default configuration directive, which accepts one of these values:
  830. #
  831. # allchannels: grants access to all Pub/Sub channels
  832. # resetchannels: revokes access to all Pub/Sub channels
  833. #
  834. # To ensure backward compatibility while upgrading Redis 6.0, acl-pubsub-default
  835. # defaults to the 'allchannels' permission.
  836. #
  837. # Future compatibility note: it is very likely that in a future version of Redis
  838. # the directive's default of 'allchannels' will be changed to 'resetchannels' in
  839. # order to provide better out-of-the-box Pub/Sub security. Therefore, it is
  840. # recommended that you explicitly define Pub/Sub permissions for all users
  841. # rather then rely on implicit default values. Once you've set explicit
  842. # Pub/Sub for all existing users, you should uncomment the following line.
  843. #
  844. # acl-pubsub-default resetchannels
  845. # Command renaming (DEPRECATED).
  846. #
  847. # ------------------------------------------------------------------------
  848. # WARNING: avoid using this option if possible. Instead use ACLs to remove
  849. # commands from the default user, and put them only in some admin user you
  850. # create for administrative purposes.
  851. # ------------------------------------------------------------------------
  852. #
  853. # It is possible to change the name of dangerous commands in a shared
  854. # environment. For instance the CONFIG command may be renamed into something
  855. # hard to guess so that it will still be available for internal-use tools
  856. # but not available for general clients.
  857. #
  858. # Example:
  859. #
  860. # rename-command CONFIG b840fc02d524045429941cc15f59e41cb7be6c52
  861. #
  862. # It is also possible to completely kill a command by renaming it into
  863. # an empty string:
  864. #
  865. # rename-command CONFIG ""
  866. #
  867. # Please note that changing the name of commands that are logged into the
  868. # AOF file or transmitted to replicas may cause problems.
  869. ################################### CLIENTS ####################################
  870. # Set the max number of connected clients at the same time. By default
  871. # this limit is set to 10000 clients, however if the Redis server is not
  872. # able to configure the process file limit to allow for the specified limit
  873. # the max number of allowed clients is set to the current file limit
  874. # minus 32 (as Redis reserves a few file descriptors for internal uses).
  875. #
  876. # Once the limit is reached Redis will close all the new connections sending
  877. # an error 'max number of clients reached'.
  878. #
  879. # IMPORTANT: When Redis Cluster is used, the max number of connections is also
  880. # shared with the cluster bus: every node in the cluster will use two
  881. # connections, one incoming and another outgoing. It is important to size the
  882. # limit accordingly in case of very large clusters.
  883. #
  884. # maxclients 10000
  885. ############################## MEMORY MANAGEMENT ################################
  886. # Set a memory usage limit to the specified amount of bytes.
  887. # When the memory limit is reached Redis will try to remove keys
  888. # according to the eviction policy selected (see maxmemory-policy).
  889. #
  890. # If Redis can't remove keys according to the policy, or if the policy is
  891. # set to 'noeviction', Redis will start to reply with errors to commands
  892. # that would use more memory, like SET, LPUSH, and so on, and will continue
  893. # to reply to read-only commands like GET.
  894. #
  895. # This option is usually useful when using Redis as an LRU or LFU cache, or to
  896. # set a hard memory limit for an instance (using the 'noeviction' policy).
  897. #
  898. # WARNING: If you have replicas attached to an instance with maxmemory on,
  899. # the size of the output buffers needed to feed the replicas are subtracted
  900. # from the used memory count, so that network problems / resyncs will
  901. # not trigger a loop where keys are evicted, and in turn the output
  902. # buffer of replicas is full with DELs of keys evicted triggering the deletion
  903. # of more keys, and so forth until the database is completely emptied.
  904. #
  905. # In short... if you have replicas attached it is suggested that you set a lower
  906. # limit for maxmemory so that there is some free RAM on the system for replica
  907. # output buffers (but this is not needed if the policy is 'noeviction').
  908. #
  909. # maxmemory <bytes>
  910. # MAXMEMORY POLICY: how Redis will select what to remove when maxmemory
  911. # is reached. You can select one from the following behaviors:
  912. #
  913. # volatile-lru -> Evict using approximated LRU, only keys with an expire set.
  914. # allkeys-lru -> Evict any key using approximated LRU.
  915. # volatile-lfu -> Evict using approximated LFU, only keys with an expire set.
  916. # allkeys-lfu -> Evict any key using approximated LFU.
  917. # volatile-random -> Remove a random key having an expire set.
  918. # allkeys-random -> Remove a random key, any key.
  919. # volatile-ttl -> Remove the key with the nearest expire time (minor TTL)
  920. # noeviction -> Don't evict anything, just return an error on write operations.
  921. #
  922. # LRU means Least Recently Used
  923. # LFU means Least Frequently Used
  924. #
  925. # Both LRU, LFU and volatile-ttl are implemented using approximated
  926. # randomized algorithms.
  927. #
  928. # Note: with any of the above policies, when there are no suitable keys for
  929. # eviction, Redis will return an error on write operations that require
  930. # more memory. These are usually commands that create new keys, add data or
  931. # modify existing keys. A few examples are: SET, INCR, HSET, LPUSH, SUNIONSTORE,
  932. # SORT (due to the STORE argument), and EXEC (if the transaction includes any
  933. # command that requires memory).
  934. #
  935. # The default is:
  936. #
  937. # maxmemory-policy noeviction
  938. # LRU, LFU and minimal TTL algorithms are not precise algorithms but approximated
  939. # algorithms (in order to save memory), so you can tune it for speed or
  940. # accuracy. By default Redis will check five keys and pick the one that was
  941. # used least recently, you can change the sample size using the following
  942. # configuration directive.
  943. #
  944. # The default of 5 produces good enough results. 10 Approximates very closely
  945. # true LRU but costs more CPU. 3 is faster but not very accurate.
  946. #
  947. # maxmemory-samples 5
  948. # Eviction processing is designed to function well with the default setting.
  949. # If there is an unusually large amount of write traffic, this value may need to
  950. # be increased. Decreasing this value may reduce latency at the risk of
  951. # eviction processing effectiveness
  952. # 0 = minimum latency, 10 = default, 100 = process without regard to latency
  953. #
  954. # maxmemory-eviction-tenacity 10
  955. # Starting from Redis 5, by default a replica will ignore its maxmemory setting
  956. # (unless it is promoted to master after a failover or manually). It means
  957. # that the eviction of keys will be just handled by the master, sending the
  958. # DEL commands to the replica as keys evict in the master side.
  959. #
  960. # This behavior ensures that masters and replicas stay consistent, and is usually
  961. # what you want, however if your replica is writable, or you want the replica
  962. # to have a different memory setting, and you are sure all the writes performed
  963. # to the replica are idempotent, then you may change this default (but be sure
  964. # to understand what you are doing).
  965. #
  966. # Note that since the replica by default does not evict, it may end using more
  967. # memory than the one set via maxmemory (there are certain buffers that may
  968. # be larger on the replica, or data structures may sometimes take more memory
  969. # and so forth). So make sure you monitor your replicas and make sure they
  970. # have enough memory to never hit a real out-of-memory condition before the
  971. # master hits the configured maxmemory setting.
  972. #
  973. # replica-ignore-maxmemory yes
  974. # Redis reclaims expired keys in two ways: upon access when those keys are
  975. # found to be expired, and also in background, in what is called the
  976. # "active expire key". The key space is slowly and interactively scanned
  977. # looking for expired keys to reclaim, so that it is possible to free memory
  978. # of keys that are expired and will never be accessed again in a short time.
  979. #
  980. # The default effort of the expire cycle will try to avoid having more than
  981. # ten percent of expired keys still in memory, and will try to avoid consuming
  982. # more than 25% of total memory and to add latency to the system. However
  983. # it is possible to increase the expire "effort" that is normally set to
  984. # "1", to a greater value, up to the value "10". At its maximum value the
  985. # system will use more CPU, longer cycles (and technically may introduce
  986. # more latency), and will tolerate less already expired keys still present
  987. # in the system. It's a tradeoff between memory, CPU and latency.
  988. #
  989. # active-expire-effort 1
  990. ############################# LAZY FREEING ####################################
  991. # Redis has two primitives to delete keys. One is called DEL and is a blocking
  992. # deletion of the object. It means that the server stops processing new commands
  993. # in order to reclaim all the memory associated with an object in a synchronous
  994. # way. If the key deleted is associated with a small object, the time needed
  995. # in order to execute the DEL command is very small and comparable to most other
  996. # O(1) or O(log_N) commands in Redis. However if the key is associated with an
  997. # aggregated value containing millions of elements, the server can block for
  998. # a long time (even seconds) in order to complete the operation.
  999. #
  1000. # For the above reasons Redis also offers non blocking deletion primitives
  1001. # such as UNLINK (non blocking DEL) and the ASYNC option of FLUSHALL and
  1002. # FLUSHDB commands, in order to reclaim memory in background. Those commands
  1003. # are executed in constant time. Another thread will incrementally free the
  1004. # object in the background as fast as possible.
  1005. #
  1006. # DEL, UNLINK and ASYNC option of FLUSHALL and FLUSHDB are user-controlled.
  1007. # It's up to the design of the application to understand when it is a good
  1008. # idea to use one or the other. However the Redis server sometimes has to
  1009. # delete keys or flush the whole database as a side effect of other operations.
  1010. # Specifically Redis deletes objects independently of a user call in the
  1011. # following scenarios:
  1012. #
  1013. # 1) On eviction, because of the maxmemory and maxmemory policy configurations,
  1014. # in order to make room for new data, without going over the specified
  1015. # memory limit.
  1016. # 2) Because of expire: when a key with an associated time to live (see the
  1017. # EXPIRE command) must be deleted from memory.
  1018. # 3) Because of a side effect of a command that stores data on a key that may
  1019. # already exist. For example the RENAME command may delete the old key
  1020. # content when it is replaced with another one. Similarly SUNIONSTORE
  1021. # or SORT with STORE option may delete existing keys. The SET command
  1022. # itself removes any old content of the specified key in order to replace
  1023. # it with the specified string.
  1024. # 4) During replication, when a replica performs a full resynchronization with
  1025. # its master, the content of the whole database is removed in order to
  1026. # load the RDB file just transferred.
  1027. #
  1028. # In all the above cases the default is to delete objects in a blocking way,
  1029. # like if DEL was called. However you can configure each case specifically
  1030. # in order to instead release memory in a non-blocking way like if UNLINK
  1031. # was called, using the following configuration directives.
  1032. lazyfree-lazy-eviction no
  1033. lazyfree-lazy-expire no
  1034. lazyfree-lazy-server-del no
  1035. replica-lazy-flush no
  1036. # It is also possible, for the case when to replace the user code DEL calls
  1037. # with UNLINK calls is not easy, to modify the default behavior of the DEL
  1038. # command to act exactly like UNLINK, using the following configuration
  1039. # directive:
  1040. lazyfree-lazy-user-del no
  1041. # FLUSHDB, FLUSHALL, and SCRIPT FLUSH support both asynchronous and synchronous
  1042. # deletion, which can be controlled by passing the [SYNC|ASYNC] flags into the
  1043. # commands. When neither flag is passed, this directive will be used to determine
  1044. # if the data should be deleted asynchronously.
  1045. lazyfree-lazy-user-flush no
  1046. ################################ THREADED I/O #################################
  1047. # Redis is mostly single threaded, however there are certain threaded
  1048. # operations such as UNLINK, slow I/O accesses and other things that are
  1049. # performed on side threads.
  1050. #
  1051. # Now it is also possible to handle Redis clients socket reads and writes
  1052. # in different I/O threads. Since especially writing is so slow, normally
  1053. # Redis users use pipelining in order to speed up the Redis performances per
  1054. # core, and spawn multiple instances in order to scale more. Using I/O
  1055. # threads it is possible to easily speedup two times Redis without resorting
  1056. # to pipelining nor sharding of the instance.
  1057. #
  1058. # By default threading is disabled, we suggest enabling it only in machines
  1059. # that have at least 4 or more cores, leaving at least one spare core.
  1060. # Using more than 8 threads is unlikely to help much. We also recommend using
  1061. # threaded I/O only if you actually have performance problems, with Redis
  1062. # instances being able to use a quite big percentage of CPU time, otherwise
  1063. # there is no point in using this feature.
  1064. #
  1065. # So for instance if you have a four cores boxes, try to use 2 or 3 I/O
  1066. # threads, if you have a 8 cores, try to use 6 threads. In order to
  1067. # enable I/O threads use the following configuration directive:
  1068. #
  1069. # io-threads 4
  1070. #
  1071. # Setting io-threads to 1 will just use the main thread as usual.
  1072. # When I/O threads are enabled, we only use threads for writes, that is
  1073. # to thread the write(2) syscall and transfer the client buffers to the
  1074. # socket. However it is also possible to enable threading of reads and
  1075. # protocol parsing using the following configuration directive, by setting
  1076. # it to yes:
  1077. #
  1078. # io-threads-do-reads no
  1079. #
  1080. # Usually threading reads doesn't help much.
  1081. #
  1082. # NOTE 1: This configuration directive cannot be changed at runtime via
  1083. # CONFIG SET. Aso this feature currently does not work when SSL is
  1084. # enabled.
  1085. #
  1086. # NOTE 2: If you want to test the Redis speedup using redis-benchmark, make
  1087. # sure you also run the benchmark itself in threaded mode, using the
  1088. # --threads option to match the number of Redis threads, otherwise you'll not
  1089. # be able to notice the improvements.
  1090. ############################ KERNEL OOM CONTROL ##############################
  1091. # On Linux, it is possible to hint the kernel OOM killer on what processes
  1092. # should be killed first when out of memory.
  1093. #
  1094. # Enabling this feature makes Redis actively control the oom_score_adj value
  1095. # for all its processes, depending on their role. The default scores will
  1096. # attempt to have background child processes killed before all others, and
  1097. # replicas killed before masters.
  1098. #
  1099. # Redis supports three options:
  1100. #
  1101. # no: Don't make changes to oom-score-adj (default).
  1102. # yes: Alias to "relative" see below.
  1103. # absolute: Values in oom-score-adj-values are written as is to the kernel.
  1104. # relative: Values are used relative to the initial value of oom_score_adj when
  1105. # the server starts and are then clamped to a range of -1000 to 1000.
  1106. # Because typically the initial value is 0, they will often match the
  1107. # absolute values.
  1108. oom-score-adj no
  1109. # When oom-score-adj is used, this directive controls the specific values used
  1110. # for master, replica and background child processes. Values range -2000 to
  1111. # 2000 (higher means more likely to be killed).
  1112. #
  1113. # Unprivileged processes (not root, and without CAP_SYS_RESOURCE capabilities)
  1114. # can freely increase their value, but not decrease it below its initial
  1115. # settings. This means that setting oom-score-adj to "relative" and setting the
  1116. # oom-score-adj-values to positive values will always succeed.
  1117. oom-score-adj-values 0 200 800
  1118. #################### KERNEL transparent hugepage CONTROL ######################
  1119. # Usually the kernel Transparent Huge Pages control is set to "madvise" or
  1120. # or "never" by default (/sys/kernel/mm/transparent_hugepage/enabled), in which
  1121. # case this config has no effect. On systems in which it is set to "always",
  1122. # redis will attempt to disable it specifically for the redis process in order
  1123. # to avoid latency problems specifically with fork(2) and CoW.
  1124. # If for some reason you prefer to keep it enabled, you can set this config to
  1125. # "no" and the kernel global to "always".
  1126. disable-thp yes
  1127. ############################## APPEND ONLY MODE ###############################
  1128. # By default Redis asynchronously dumps the dataset on disk. This mode is
  1129. # good enough in many applications, but an issue with the Redis process or
  1130. # a power outage may result into a few minutes of writes lost (depending on
  1131. # the configured save points).
  1132. #
  1133. # The Append Only File is an alternative persistence mode that provides
  1134. # much better durability. For instance using the default data fsync policy
  1135. # (see later in the config file) Redis can lose just one second of writes in a
  1136. # dramatic event like a server power outage, or a single write if something
  1137. # wrong with the Redis process itself happens, but the operating system is
  1138. # still running correctly.
  1139. #
  1140. # AOF and RDB persistence can be enabled at the same time without problems.
  1141. # If the AOF is enabled on startup Redis will load the AOF, that is the file
  1142. # with the better durability guarantees.
  1143. #
  1144. # Please check https://redis.io/topics/persistence for more information.
  1145. appendonly no
  1146. # The name of the append only file (default: "appendonly.aof")
  1147. appendfilename "appendonly.aof"
  1148. # The fsync() call tells the Operating System to actually write data on disk
  1149. # instead of waiting for more data in the output buffer. Some OS will really flush
  1150. # data on disk, some other OS will just try to do it ASAP.
  1151. #
  1152. # Redis supports three different modes:
  1153. #
  1154. # no: don't fsync, just let the OS flush the data when it wants. Faster.
  1155. # always: fsync after every write to the append only log. Slow, Safest.
  1156. # everysec: fsync only one time every second. Compromise.
  1157. #
  1158. # The default is "everysec", as that's usually the right compromise between
  1159. # speed and data safety. It's up to you to understand if you can relax this to
  1160. # "no" that will let the operating system flush the output buffer when
  1161. # it wants, for better performances (but if you can live with the idea of
  1162. # some data loss consider the default persistence mode that's snapshotting),
  1163. # or on the contrary, use "always" that's very slow but a bit safer than
  1164. # everysec.
  1165. #
  1166. # More details please check the following article:
  1167. # http://antirez.com/post/redis-persistence-demystified.html
  1168. #
  1169. # If unsure, use "everysec".
  1170. # appendfsync always
  1171. appendfsync everysec
  1172. # appendfsync no
  1173. # When the AOF fsync policy is set to always or everysec, and a background
  1174. # saving process (a background save or AOF log background rewriting) is
  1175. # performing a lot of I/O against the disk, in some Linux configurations
  1176. # Redis may block too long on the fsync() call. Note that there is no fix for
  1177. # this currently, as even performing fsync in a different thread will block
  1178. # our synchronous write(2) call.
  1179. #
  1180. # In order to mitigate this problem it's possible to use the following option
  1181. # that will prevent fsync() from being called in the main process while a
  1182. # BGSAVE or BGREWRITEAOF is in progress.
  1183. #
  1184. # This means that while another child is saving, the durability of Redis is
  1185. # the same as "appendfsync none". In practical terms, this means that it is
  1186. # possible to lose up to 30 seconds of log in the worst scenario (with the
  1187. # default Linux settings).
  1188. #
  1189. # If you have latency problems turn this to "yes". Otherwise leave it as
  1190. # "no" that is the safest pick from the point of view of durability.
  1191. no-appendfsync-on-rewrite no
  1192. # Automatic rewrite of the append only file.
  1193. # Redis is able to automatically rewrite the log file implicitly calling
  1194. # BGREWRITEAOF when the AOF log size grows by the specified percentage.
  1195. #
  1196. # This is how it works: Redis remembers the size of the AOF file after the
  1197. # latest rewrite (if no rewrite has happened since the restart, the size of
  1198. # the AOF at startup is used).
  1199. #
  1200. # This base size is compared to the current size. If the current size is
  1201. # bigger than the specified percentage, the rewrite is triggered. Also
  1202. # you need to specify a minimal size for the AOF file to be rewritten, this
  1203. # is useful to avoid rewriting the AOF file even if the percentage increase
  1204. # is reached but it is still pretty small.
  1205. #
  1206. # Specify a percentage of zero in order to disable the automatic AOF
  1207. # rewrite feature.
  1208. auto-aof-rewrite-percentage 100
  1209. auto-aof-rewrite-min-size 64mb
  1210. # An AOF file may be found to be truncated at the end during the Redis
  1211. # startup process, when the AOF data gets loaded back into memory.
  1212. # This may happen when the system where Redis is running
  1213. # crashes, especially when an ext4 filesystem is mounted without the
  1214. # data=ordered option (however this can't happen when Redis itself
  1215. # crashes or aborts but the operating system still works correctly).
  1216. #
  1217. # Redis can either exit with an error when this happens, or load as much
  1218. # data as possible (the default now) and start if the AOF file is found
  1219. # to be truncated at the end. The following option controls this behavior.
  1220. #
  1221. # If aof-load-truncated is set to yes, a truncated AOF file is loaded and
  1222. # the Redis server starts emitting a log to inform the user of the event.
  1223. # Otherwise if the option is set to no, the server aborts with an error
  1224. # and refuses to start. When the option is set to no, the user requires
  1225. # to fix the AOF file using the "redis-check-aof" utility before to restart
  1226. # the server.
  1227. #
  1228. # Note that if the AOF file will be found to be corrupted in the middle
  1229. # the server will still exit with an error. This option only applies when
  1230. # Redis will try to read more data from the AOF file but not enough bytes
  1231. # will be found.
  1232. aof-load-truncated yes
  1233. # When rewriting the AOF file, Redis is able to use an RDB preamble in the
  1234. # AOF file for faster rewrites and recoveries. When this option is turned
  1235. # on the rewritten AOF file is composed of two different stanzas:
  1236. #
  1237. # [RDB file][AOF tail]
  1238. #
  1239. # When loading, Redis recognizes that the AOF file starts with the "REDIS"
  1240. # string and loads the prefixed RDB file, then continues loading the AOF
  1241. # tail.
  1242. aof-use-rdb-preamble yes
  1243. ################################ LUA SCRIPTING ###############################
  1244. # Max execution time of a Lua script in milliseconds.
  1245. #
  1246. # If the maximum execution time is reached Redis will log that a script is
  1247. # still in execution after the maximum allowed time and will start to
  1248. # reply to queries with an error.
  1249. #
  1250. # When a long running script exceeds the maximum execution time only the
  1251. # SCRIPT KILL and SHUTDOWN NOSAVE commands are available. The first can be
  1252. # used to stop a script that did not yet call any write commands. The second
  1253. # is the only way to shut down the server in the case a write command was
  1254. # already issued by the script but the user doesn't want to wait for the natural
  1255. # termination of the script.
  1256. #
  1257. # Set it to 0 or a negative value for unlimited execution without warnings.
  1258. lua-time-limit 5000
  1259. ################################ REDIS CLUSTER ###############################
  1260. # Normal Redis instances can't be part of a Redis Cluster; only nodes that are
  1261. # started as cluster nodes can. In order to start a Redis instance as a
  1262. # cluster node enable the cluster support uncommenting the following:
  1263. #
  1264. # cluster-enabled yes
  1265. # Every cluster node has a cluster configuration file. This file is not
  1266. # intended to be edited by hand. It is created and updated by Redis nodes.
  1267. # Every Redis Cluster node requires a different cluster configuration file.
  1268. # Make sure that instances running in the same system do not have
  1269. # overlapping cluster configuration file names.
  1270. #
  1271. # cluster-config-file nodes-6379.conf
  1272. # Cluster node timeout is the amount of milliseconds a node must be unreachable
  1273. # for it to be considered in failure state.
  1274. # Most other internal time limits are a multiple of the node timeout.
  1275. #
  1276. # cluster-node-timeout 15000
  1277. # A replica of a failing master will avoid to start a failover if its data
  1278. # looks too old.
  1279. #
  1280. # There is no simple way for a replica to actually have an exact measure of
  1281. # its "data age", so the following two checks are performed:
  1282. #
  1283. # 1) If there are multiple replicas able to failover, they exchange messages
  1284. # in order to try to give an advantage to the replica with the best
  1285. # replication offset (more data from the master processed).
  1286. # Replicas will try to get their rank by offset, and apply to the start
  1287. # of the failover a delay proportional to their rank.
  1288. #
  1289. # 2) Every single replica computes the time of the last interaction with
  1290. # its master. This can be the last ping or command received (if the master
  1291. # is still in the "connected" state), or the time that elapsed since the
  1292. # disconnection with the master (if the replication link is currently down).
  1293. # If the last interaction is too old, the replica will not try to failover
  1294. # at all.
  1295. #
  1296. # The point "2" can be tuned by user. Specifically a replica will not perform
  1297. # the failover if, since the last interaction with the master, the time
  1298. # elapsed is greater than:
  1299. #
  1300. # (node-timeout * cluster-replica-validity-factor) + repl-ping-replica-period
  1301. #
  1302. # So for example if node-timeout is 30 seconds, and the cluster-replica-validity-factor
  1303. # is 10, and assuming a default repl-ping-replica-period of 10 seconds, the
  1304. # replica will not try to failover if it was not able to talk with the master
  1305. # for longer than 310 seconds.
  1306. #
  1307. # A large cluster-replica-validity-factor may allow replicas with too old data to failover
  1308. # a master, while a too small value may prevent the cluster from being able to
  1309. # elect a replica at all.
  1310. #
  1311. # For maximum availability, it is possible to set the cluster-replica-validity-factor
  1312. # to a value of 0, which means, that replicas will always try to failover the
  1313. # master regardless of the last time they interacted with the master.
  1314. # (However they'll always try to apply a delay proportional to their
  1315. # offset rank).
  1316. #
  1317. # Zero is the only value able to guarantee that when all the partitions heal
  1318. # the cluster will always be able to continue.
  1319. #
  1320. # cluster-replica-validity-factor 10
  1321. # Cluster replicas are able to migrate to orphaned masters, that are masters
  1322. # that are left without working replicas. This improves the cluster ability
  1323. # to resist to failures as otherwise an orphaned master can't be failed over
  1324. # in case of failure if it has no working replicas.
  1325. #
  1326. # Replicas migrate to orphaned masters only if there are still at least a
  1327. # given number of other working replicas for their old master. This number
  1328. # is the "migration barrier". A migration barrier of 1 means that a replica
  1329. # will migrate only if there is at least 1 other working replica for its master
  1330. # and so forth. It usually reflects the number of replicas you want for every
  1331. # master in your cluster.
  1332. #
  1333. # Default is 1 (replicas migrate only if their masters remain with at least
  1334. # one replica). To disable migration just set it to a very large value or
  1335. # set cluster-allow-replica-migration to 'no'.
  1336. # A value of 0 can be set but is useful only for debugging and dangerous
  1337. # in production.
  1338. #
  1339. # cluster-migration-barrier 1
  1340. # Turning off this option allows to use less automatic cluster configuration.
  1341. # It both disables migration to orphaned masters and migration from masters
  1342. # that became empty.
  1343. #
  1344. # Default is 'yes' (allow automatic migrations).
  1345. #
  1346. # cluster-allow-replica-migration yes
  1347. # By default Redis Cluster nodes stop accepting queries if they detect there
  1348. # is at least a hash slot uncovered (no available node is serving it).
  1349. # This way if the cluster is partially down (for example a range of hash slots
  1350. # are no longer covered) all the cluster becomes, eventually, unavailable.
  1351. # It automatically returns available as soon as all the slots are covered again.
  1352. #
  1353. # However sometimes you want the subset of the cluster which is working,
  1354. # to continue to accept queries for the part of the key space that is still
  1355. # covered. In order to do so, just set the cluster-require-full-coverage
  1356. # option to no.
  1357. #
  1358. # cluster-require-full-coverage yes
  1359. # This option, when set to yes, prevents replicas from trying to failover its
  1360. # master during master failures. However the replica can still perform a
  1361. # manual failover, if forced to do so.
  1362. #
  1363. # This is useful in different scenarios, especially in the case of multiple
  1364. # data center operations, where we want one side to never be promoted if not
  1365. # in the case of a total DC failure.
  1366. #
  1367. # cluster-replica-no-failover no
  1368. # This option, when set to yes, allows nodes to serve read traffic while the
  1369. # the cluster is in a down state, as long as it believes it owns the slots.
  1370. #
  1371. # This is useful for two cases. The first case is for when an application
  1372. # doesn't require consistency of data during node failures or network partitions.
  1373. # One example of this is a cache, where as long as the node has the data it
  1374. # should be able to serve it.
  1375. #
  1376. # The second use case is for configurations that don't meet the recommended
  1377. # three shards but want to enable cluster mode and scale later. A
  1378. # master outage in a 1 or 2 shard configuration causes a read/write outage to the
  1379. # entire cluster without this option set, with it set there is only a write outage.
  1380. # Without a quorum of masters, slot ownership will not change automatically.
  1381. #
  1382. # cluster-allow-reads-when-down no
  1383. # In order to setup your cluster make sure to read the documentation
  1384. # available at https://redis.io web site.
  1385. ########################## CLUSTER DOCKER/NAT support ########################
  1386. # In certain deployments, Redis Cluster nodes address discovery fails, because
  1387. # addresses are NAT-ted or because ports are forwarded (the typical case is
  1388. # Docker and other containers).
  1389. #
  1390. # In order to make Redis Cluster working in such environments, a static
  1391. # configuration where each node knows its public address is needed. The
  1392. # following four options are used for this scope, and are:
  1393. #
  1394. # * cluster-announce-ip
  1395. # * cluster-announce-port
  1396. # * cluster-announce-tls-port
  1397. # * cluster-announce-bus-port
  1398. #
  1399. # Each instructs the node about its address, client ports (for connections
  1400. # without and with TLS) and cluster message bus port. The information is then
  1401. # published in the header of the bus packets so that other nodes will be able to
  1402. # correctly map the address of the node publishing the information.
  1403. #
  1404. # If cluster-tls is set to yes and cluster-announce-tls-port is omitted or set
  1405. # to zero, then cluster-announce-port refers to the TLS port. Note also that
  1406. # cluster-announce-tls-port has no effect if cluster-tls is set to no.
  1407. #
  1408. # If the above options are not used, the normal Redis Cluster auto-detection
  1409. # will be used instead.
  1410. #
  1411. # Note that when remapped, the bus port may not be at the fixed offset of
  1412. # clients port + 10000, so you can specify any port and bus-port depending
  1413. # on how they get remapped. If the bus-port is not set, a fixed offset of
  1414. # 10000 will be used as usual.
  1415. #
  1416. # Example:
  1417. #
  1418. # cluster-announce-ip 10.1.1.5
  1419. # cluster-announce-tls-port 6379
  1420. # cluster-announce-port 0
  1421. # cluster-announce-bus-port 6380
  1422. ################################## SLOW LOG ###################################
  1423. # The Redis Slow Log is a system to log queries that exceeded a specified
  1424. # execution time. The execution time does not include the I/O operations
  1425. # like talking with the client, sending the reply and so forth,
  1426. # but just the time needed to actually execute the command (this is the only
  1427. # stage of command execution where the thread is blocked and can not serve
  1428. # other requests in the meantime).
  1429. #
  1430. # You can configure the slow log with two parameters: one tells Redis
  1431. # what is the execution time, in microseconds, to exceed in order for the
  1432. # command to get logged, and the other parameter is the length of the
  1433. # slow log. When a new command is logged the oldest one is removed from the
  1434. # queue of logged commands.
  1435. # The following time is expressed in microseconds, so 1000000 is equivalent
  1436. # to one second. Note that a negative number disables the slow log, while
  1437. # a value of zero forces the logging of every command.
  1438. slowlog-log-slower-than 10000
  1439. # There is no limit to this length. Just be aware that it will consume memory.
  1440. # You can reclaim memory used by the slow log with SLOWLOG RESET.
  1441. slowlog-max-len 128
  1442. ################################ LATENCY MONITOR ##############################
  1443. # The Redis latency monitoring subsystem samples different operations
  1444. # at runtime in order to collect data related to possible sources of
  1445. # latency of a Redis instance.
  1446. #
  1447. # Via the LATENCY command this information is available to the user that can
  1448. # print graphs and obtain reports.
  1449. #
  1450. # The system only logs operations that were performed in a time equal or
  1451. # greater than the amount of milliseconds specified via the
  1452. # latency-monitor-threshold configuration directive. When its value is set
  1453. # to zero, the latency monitor is turned off.
  1454. #
  1455. # By default latency monitoring is disabled since it is mostly not needed
  1456. # if you don't have latency issues, and collecting data has a performance
  1457. # impact, that while very small, can be measured under big load. Latency
  1458. # monitoring can easily be enabled at runtime using the command
  1459. # "CONFIG SET latency-monitor-threshold <milliseconds>" if needed.
  1460. latency-monitor-threshold 0
  1461. ############################# EVENT NOTIFICATION ##############################
  1462. # Redis can notify Pub/Sub clients about events happening in the key space.
  1463. # This feature is documented at https://redis.io/topics/notifications
  1464. #
  1465. # For instance if keyspace events notification is enabled, and a client
  1466. # performs a DEL operation on key "foo" stored in the Database 0, two
  1467. # messages will be published via Pub/Sub:
  1468. #
  1469. # PUBLISH __keyspace@0__:foo del
  1470. # PUBLISH __keyevent@0__:del foo
  1471. #
  1472. # It is possible to select the events that Redis will notify among a set
  1473. # of classes. Every class is identified by a single character:
  1474. #
  1475. # K Keyspace events, published with __keyspace@<db>__ prefix.
  1476. # E Keyevent events, published with __keyevent@<db>__ prefix.
  1477. # g Generic commands (non-type specific) like DEL, EXPIRE, RENAME, ...
  1478. # $ String commands
  1479. # l List commands
  1480. # s Set commands
  1481. # h Hash commands
  1482. # z Sorted set commands
  1483. # x Expired events (events generated every time a key expires)
  1484. # e Evicted events (events generated when a key is evicted for maxmemory)
  1485. # t Stream commands
  1486. # d Module key type events
  1487. # m Key-miss events (Note: It is not included in the 'A' class)
  1488. # A Alias for g$lshzxetd, so that the "AKE" string means all the events
  1489. # (Except key-miss events which are excluded from 'A' due to their
  1490. # unique nature).
  1491. #
  1492. # The "notify-keyspace-events" takes as argument a string that is composed
  1493. # of zero or multiple characters. The empty string means that notifications
  1494. # are disabled.
  1495. #
  1496. # Example: to enable list and generic events, from the point of view of the
  1497. # event name, use:
  1498. #
  1499. # notify-keyspace-events Elg
  1500. #
  1501. # Example 2: to get the stream of the expired keys subscribing to channel
  1502. # name __keyevent@0__:expired use:
  1503. #
  1504. # notify-keyspace-events Ex
  1505. #
  1506. # By default all notifications are disabled because most users don't need
  1507. # this feature and the feature has some overhead. Note that if you don't
  1508. # specify at least one of K or E, no events will be delivered.
  1509. notify-keyspace-events ""
  1510. ############################### GOPHER SERVER #################################
  1511. # Redis contains an implementation of the Gopher protocol, as specified in
  1512. # the RFC 1436 (https://www.ietf.org/rfc/rfc1436.txt).
  1513. #
  1514. # The Gopher protocol was very popular in the late '90s. It is an alternative
  1515. # to the web, and the implementation both server and client side is so simple
  1516. # that the Redis server has just 100 lines of code in order to implement this
  1517. # support.
  1518. #
  1519. # What do you do with Gopher nowadays? Well Gopher never *really* died, and
  1520. # lately there is a movement in order for the Gopher more hierarchical content
  1521. # composed of just plain text documents to be resurrected. Some want a simpler
  1522. # internet, others believe that the mainstream internet became too much
  1523. # controlled, and it's cool to create an alternative space for people that
  1524. # want a bit of fresh air.
  1525. #
  1526. # Anyway for the 10nth birthday of the Redis, we gave it the Gopher protocol
  1527. # as a gift.
  1528. #
  1529. # --- HOW IT WORKS? ---
  1530. #
  1531. # The Redis Gopher support uses the inline protocol of Redis, and specifically
  1532. # two kind of inline requests that were anyway illegal: an empty request
  1533. # or any request that starts with "/" (there are no Redis commands starting
  1534. # with such a slash). Normal RESP2/RESP3 requests are completely out of the
  1535. # path of the Gopher protocol implementation and are served as usual as well.
  1536. #
  1537. # If you open a connection to Redis when Gopher is enabled and send it
  1538. # a string like "/foo", if there is a key named "/foo" it is served via the
  1539. # Gopher protocol.
  1540. #
  1541. # In order to create a real Gopher "hole" (the name of a Gopher site in Gopher
  1542. # talking), you likely need a script like the following:
  1543. #
  1544. # https://github.com/antirez/gopher2redis
  1545. #
  1546. # --- SECURITY WARNING ---
  1547. #
  1548. # If you plan to put Redis on the internet in a publicly accessible address
  1549. # to server Gopher pages MAKE SURE TO SET A PASSWORD to the instance.
  1550. # Once a password is set:
  1551. #
  1552. # 1. The Gopher server (when enabled, not by default) will still serve
  1553. # content via Gopher.
  1554. # 2. However other commands cannot be called before the client will
  1555. # authenticate.
  1556. #
  1557. # So use the 'requirepass' option to protect your instance.
  1558. #
  1559. # Note that Gopher is not currently supported when 'io-threads-do-reads'
  1560. # is enabled.
  1561. #
  1562. # To enable Gopher support, uncomment the following line and set the option
  1563. # from no (the default) to yes.
  1564. #
  1565. # gopher-enabled no
  1566. ############################### ADVANCED CONFIG ###############################
  1567. # Hashes are encoded using a memory efficient data structure when they have a
  1568. # small number of entries, and the biggest entry does not exceed a given
  1569. # threshold. These thresholds can be configured using the following directives.
  1570. hash-max-ziplist-entries 512
  1571. hash-max-ziplist-value 64
  1572. # Lists are also encoded in a special way to save a lot of space.
  1573. # The number of entries allowed per internal list node can be specified
  1574. # as a fixed maximum size or a maximum number of elements.
  1575. # For a fixed maximum size, use -5 through -1, meaning:
  1576. # -5: max size: 64 Kb <-- not recommended for normal workloads
  1577. # -4: max size: 32 Kb <-- not recommended
  1578. # -3: max size: 16 Kb <-- probably not recommended
  1579. # -2: max size: 8 Kb <-- good
  1580. # -1: max size: 4 Kb <-- good
  1581. # Positive numbers mean store up to _exactly_ that number of elements
  1582. # per list node.
  1583. # The highest performing option is usually -2 (8 Kb size) or -1 (4 Kb size),
  1584. # but if your use case is unique, adjust the settings as necessary.
  1585. list-max-ziplist-size -2
  1586. # Lists may also be compressed.
  1587. # Compress depth is the number of quicklist ziplist nodes from *each* side of
  1588. # the list to *exclude* from compression. The head and tail of the list
  1589. # are always uncompressed for fast push/pop operations. Settings are:
  1590. # 0: disable all list compression
  1591. # 1: depth 1 means "don't start compressing until after 1 node into the list,
  1592. # going from either the head or tail"
  1593. # So: [head]->node->node->...->node->[tail]
  1594. # [head], [tail] will always be uncompressed; inner nodes will compress.
  1595. # 2: [head]->[next]->node->node->...->node->[prev]->[tail]
  1596. # 2 here means: don't compress head or head->next or tail->prev or tail,
  1597. # but compress all nodes between them.
  1598. # 3: [head]->[next]->[next]->node->node->...->node->[prev]->[prev]->[tail]
  1599. # etc.
  1600. list-compress-depth 0
  1601. # Sets have a special encoding in just one case: when a set is composed
  1602. # of just strings that happen to be integers in radix 10 in the range
  1603. # of 64 bit signed integers.
  1604. # The following configuration setting sets the limit in the size of the
  1605. # set in order to use this special memory saving encoding.
  1606. set-max-intset-entries 512
  1607. # Similarly to hashes and lists, sorted sets are also specially encoded in
  1608. # order to save a lot of space. This encoding is only used when the length and
  1609. # elements of a sorted set are below the following limits:
  1610. zset-max-ziplist-entries 128
  1611. zset-max-ziplist-value 64
  1612. # HyperLogLog sparse representation bytes limit. The limit includes the
  1613. # 16 bytes header. When an HyperLogLog using the sparse representation crosses
  1614. # this limit, it is converted into the dense representation.
  1615. #
  1616. # A value greater than 16000 is totally useless, since at that point the
  1617. # dense representation is more memory efficient.
  1618. #
  1619. # The suggested value is ~ 3000 in order to have the benefits of
  1620. # the space efficient encoding without slowing down too much PFADD,
  1621. # which is O(N) with the sparse encoding. The value can be raised to
  1622. # ~ 10000 when CPU is not a concern, but space is, and the data set is
  1623. # composed of many HyperLogLogs with cardinality in the 0 - 15000 range.
  1624. hll-sparse-max-bytes 3000
  1625. # Streams macro node max size / items. The stream data structure is a radix
  1626. # tree of big nodes that encode multiple items inside. Using this configuration
  1627. # it is possible to configure how big a single node can be in bytes, and the
  1628. # maximum number of items it may contain before switching to a new node when
  1629. # appending new stream entries. If any of the following settings are set to
  1630. # zero, the limit is ignored, so for instance it is possible to set just a
  1631. # max entries limit by setting max-bytes to 0 and max-entries to the desired
  1632. # value.
  1633. stream-node-max-bytes 4096
  1634. stream-node-max-entries 100
  1635. # Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in
  1636. # order to help rehashing the main Redis hash table (the one mapping top-level
  1637. # keys to values). The hash table implementation Redis uses (see dict.c)
  1638. # performs a lazy rehashing: the more operation you run into a hash table
  1639. # that is rehashing, the more rehashing "steps" are performed, so if the
  1640. # server is idle the rehashing is never complete and some more memory is used
  1641. # by the hash table.
  1642. #
  1643. # The default is to use this millisecond 10 times every second in order to
  1644. # actively rehash the main dictionaries, freeing memory when possible.
  1645. #
  1646. # If unsure:
  1647. # use "activerehashing no" if you have hard latency requirements and it is
  1648. # not a good thing in your environment that Redis can reply from time to time
  1649. # to queries with 2 milliseconds delay.
  1650. #
  1651. # use "activerehashing yes" if you don't have such hard requirements but
  1652. # want to free memory asap when possible.
  1653. activerehashing yes
  1654. # The client output buffer limits can be used to force disconnection of clients
  1655. # that are not reading data from the server fast enough for some reason (a
  1656. # common reason is that a Pub/Sub client can't consume messages as fast as the
  1657. # publisher can produce them).
  1658. #
  1659. # The limit can be set differently for the three different classes of clients:
  1660. #
  1661. # normal -> normal clients including MONITOR clients
  1662. # replica -> replica clients
  1663. # pubsub -> clients subscribed to at least one pubsub channel or pattern
  1664. #
  1665. # The syntax of every client-output-buffer-limit directive is the following:
  1666. #
  1667. # client-output-buffer-limit <class> <hard limit> <soft limit> <soft seconds>
  1668. #
  1669. # A client is immediately disconnected once the hard limit is reached, or if
  1670. # the soft limit is reached and remains reached for the specified number of
  1671. # seconds (continuously).
  1672. # So for instance if the hard limit is 32 megabytes and the soft limit is
  1673. # 16 megabytes / 10 seconds, the client will get disconnected immediately
  1674. # if the size of the output buffers reach 32 megabytes, but will also get
  1675. # disconnected if the client reaches 16 megabytes and continuously overcomes
  1676. # the limit for 10 seconds.
  1677. #
  1678. # By default normal clients are not limited because they don't receive data
  1679. # without asking (in a push way), but just after a request, so only
  1680. # asynchronous clients may create a scenario where data is requested faster
  1681. # than it can read.
  1682. #
  1683. # Instead there is a default limit for pubsub and replica clients, since
  1684. # subscribers and replicas receive data in a push fashion.
  1685. #
  1686. # Both the hard or the soft limit can be disabled by setting them to zero.
  1687. client-output-buffer-limit normal 0 0 0
  1688. client-output-buffer-limit replica 256mb 64mb 60
  1689. client-output-buffer-limit pubsub 32mb 8mb 60
  1690. # Client query buffers accumulate new commands. They are limited to a fixed
  1691. # amount by default in order to avoid that a protocol desynchronization (for
  1692. # instance due to a bug in the client) will lead to unbound memory usage in
  1693. # the query buffer. However you can configure it here if you have very special
  1694. # needs, such us huge multi/exec requests or alike.
  1695. #
  1696. # client-query-buffer-limit 1gb
  1697. # In the Redis protocol, bulk requests, that are, elements representing single
  1698. # strings, are normally limited to 512 mb. However you can change this limit
  1699. # here, but must be 1mb or greater
  1700. #
  1701. # proto-max-bulk-len 512mb
  1702. # Redis calls an internal function to perform many background tasks, like
  1703. # closing connections of clients in timeout, purging expired keys that are
  1704. # never requested, and so forth.
  1705. #
  1706. # Not all tasks are performed with the same frequency, but Redis checks for
  1707. # tasks to perform according to the specified "hz" value.
  1708. #
  1709. # By default "hz" is set to 10. Raising the value will use more CPU when
  1710. # Redis is idle, but at the same time will make Redis more responsive when
  1711. # there are many keys expiring at the same time, and timeouts may be
  1712. # handled with more precision.
  1713. #
  1714. # The range is between 1 and 500, however a value over 100 is usually not
  1715. # a good idea. Most users should use the default of 10 and raise this up to
  1716. # 100 only in environments where very low latency is required.
  1717. hz 10
  1718. # Normally it is useful to have an HZ value which is proportional to the
  1719. # number of clients connected. This is useful in order, for instance, to
  1720. # avoid too many clients are processed for each background task invocation
  1721. # in order to avoid latency spikes.
  1722. #
  1723. # Since the default HZ value by default is conservatively set to 10, Redis
  1724. # offers, and enables by default, the ability to use an adaptive HZ value
  1725. # which will temporarily raise when there are many connected clients.
  1726. #
  1727. # When dynamic HZ is enabled, the actual configured HZ will be used
  1728. # as a baseline, but multiples of the configured HZ value will be actually
  1729. # used as needed once more clients are connected. In this way an idle
  1730. # instance will use very little CPU time while a busy instance will be
  1731. # more responsive.
  1732. dynamic-hz yes
  1733. # When a child rewrites the AOF file, if the following option is enabled
  1734. # the file will be fsync-ed every 32 MB of data generated. This is useful
  1735. # in order to commit the file to the disk more incrementally and avoid
  1736. # big latency spikes.
  1737. aof-rewrite-incremental-fsync yes
  1738. # When redis saves RDB file, if the following option is enabled
  1739. # the file will be fsync-ed every 32 MB of data generated. This is useful
  1740. # in order to commit the file to the disk more incrementally and avoid
  1741. # big latency spikes.
  1742. rdb-save-incremental-fsync yes
  1743. # Redis LFU eviction (see maxmemory setting) can be tuned. However it is a good
  1744. # idea to start with the default settings and only change them after investigating
  1745. # how to improve the performances and how the keys LFU change over time, which
  1746. # is possible to inspect via the OBJECT FREQ command.
  1747. #
  1748. # There are two tunable parameters in the Redis LFU implementation: the
  1749. # counter logarithm factor and the counter decay time. It is important to
  1750. # understand what the two parameters mean before changing them.
  1751. #
  1752. # The LFU counter is just 8 bits per key, it's maximum value is 255, so Redis
  1753. # uses a probabilistic increment with logarithmic behavior. Given the value
  1754. # of the old counter, when a key is accessed, the counter is incremented in
  1755. # this way:
  1756. #
  1757. # 1. A random number R between 0 and 1 is extracted.
  1758. # 2. A probability P is calculated as 1/(old_value*lfu_log_factor+1).
  1759. # 3. The counter is incremented only if R < P.
  1760. #
  1761. # The default lfu-log-factor is 10. This is a table of how the frequency
  1762. # counter changes with a different number of accesses with different
  1763. # logarithmic factors:
  1764. #
  1765. # +--------+------------+------------+------------+------------+------------+
  1766. # | factor | 100 hits | 1000 hits | 100K hits | 1M hits | 10M hits |
  1767. # +--------+------------+------------+------------+------------+------------+
  1768. # | 0 | 104 | 255 | 255 | 255 | 255 |
  1769. # +--------+------------+------------+------------+------------+------------+
  1770. # | 1 | 18 | 49 | 255 | 255 | 255 |
  1771. # +--------+------------+------------+------------+------------+------------+
  1772. # | 10 | 10 | 18 | 142 | 255 | 255 |
  1773. # +--------+------------+------------+------------+------------+------------+
  1774. # | 100 | 8 | 11 | 49 | 143 | 255 |
  1775. # +--------+------------+------------+------------+------------+------------+
  1776. #
  1777. # NOTE: The above table was obtained by running the following commands:
  1778. #
  1779. # redis-benchmark -n 1000000 incr foo
  1780. # redis-cli object freq foo
  1781. #
  1782. # NOTE 2: The counter initial value is 5 in order to give new objects a chance
  1783. # to accumulate hits.
  1784. #
  1785. # The counter decay time is the time, in minutes, that must elapse in order
  1786. # for the key counter to be divided by two (or decremented if it has a value
  1787. # less <= 10).
  1788. #
  1789. # The default value for the lfu-decay-time is 1. A special value of 0 means to
  1790. # decay the counter every time it happens to be scanned.
  1791. #
  1792. # lfu-log-factor 10
  1793. # lfu-decay-time 1
  1794. ########################### ACTIVE DEFRAGMENTATION #######################
  1795. #
  1796. # What is active defragmentation?
  1797. # -------------------------------
  1798. #
  1799. # Active (online) defragmentation allows a Redis server to compact the
  1800. # spaces left between small allocations and deallocations of data in memory,
  1801. # thus allowing to reclaim back memory.
  1802. #
  1803. # Fragmentation is a natural process that happens with every allocator (but
  1804. # less so with Jemalloc, fortunately) and certain workloads. Normally a server
  1805. # restart is needed in order to lower the fragmentation, or at least to flush
  1806. # away all the data and create it again. However thanks to this feature
  1807. # implemented by Oran Agra for Redis 4.0 this process can happen at runtime
  1808. # in a "hot" way, while the server is running.
  1809. #
  1810. # Basically when the fragmentation is over a certain level (see the
  1811. # configuration options below) Redis will start to create new copies of the
  1812. # values in contiguous memory regions by exploiting certain specific Jemalloc
  1813. # features (in order to understand if an allocation is causing fragmentation
  1814. # and to allocate it in a better place), and at the same time, will release the
  1815. # old copies of the data. This process, repeated incrementally for all the keys
  1816. # will cause the fragmentation to drop back to normal values.
  1817. #
  1818. # Important things to understand:
  1819. #
  1820. # 1. This feature is disabled by default, and only works if you compiled Redis
  1821. # to use the copy of Jemalloc we ship with the source code of Redis.
  1822. # This is the default with Linux builds.
  1823. #
  1824. # 2. You never need to enable this feature if you don't have fragmentation
  1825. # issues.
  1826. #
  1827. # 3. Once you experience fragmentation, you can enable this feature when
  1828. # needed with the command "CONFIG SET activedefrag yes".
  1829. #
  1830. # The configuration parameters are able to fine tune the behavior of the
  1831. # defragmentation process. If you are not sure about what they mean it is
  1832. # a good idea to leave the defaults untouched.
  1833. # Enabled active defragmentation
  1834. # activedefrag no
  1835. # Minimum amount of fragmentation waste to start active defrag
  1836. # active-defrag-ignore-bytes 100mb
  1837. # Minimum percentage of fragmentation to start active defrag
  1838. # active-defrag-threshold-lower 10
  1839. # Maximum percentage of fragmentation at which we use maximum effort
  1840. # active-defrag-threshold-upper 100
  1841. # Minimal effort for defrag in CPU percentage, to be used when the lower
  1842. # threshold is reached
  1843. # active-defrag-cycle-min 1
  1844. # Maximal effort for defrag in CPU percentage, to be used when the upper
  1845. # threshold is reached
  1846. # active-defrag-cycle-max 25
  1847. # Maximum number of set/hash/zset/list fields that will be processed from
  1848. # the main dictionary scan
  1849. # active-defrag-max-scan-fields 1000
  1850. # Jemalloc background thread for purging will be enabled by default
  1851. jemalloc-bg-thread yes
  1852. # It is possible to pin different threads and processes of Redis to specific
  1853. # CPUs in your system, in order to maximize the performances of the server.
  1854. # This is useful both in order to pin different Redis threads in different
  1855. # CPUs, but also in order to make sure that multiple Redis instances running
  1856. # in the same host will be pinned to different CPUs.
  1857. #
  1858. # Normally you can do this using the "taskset" command, however it is also
  1859. # possible to this via Redis configuration directly, both in Linux and FreeBSD.
  1860. #
  1861. # You can pin the server/IO threads, bio threads, aof rewrite child process, and
  1862. # the bgsave child process. The syntax to specify the cpu list is the same as
  1863. # the taskset command:
  1864. #
  1865. # Set redis server/io threads to cpu affinity 0,2,4,6:
  1866. # server_cpulist 0-7:2
  1867. #
  1868. # Set bio threads to cpu affinity 1,3:
  1869. # bio_cpulist 1,3
  1870. #
  1871. # Set aof rewrite child process to cpu affinity 8,9,10,11:
  1872. # aof_rewrite_cpulist 8-11
  1873. #
  1874. # Set bgsave child process to cpu affinity 1,10,11
  1875. # bgsave_cpulist 1,10-11
  1876. # In some cases redis will emit warnings and even refuse to start if it detects
  1877. # that the system is in bad state, it is possible to suppress these warnings
  1878. # by setting the following config which takes a space delimited list of warnings
  1879. # to suppress
  1880. #
  1881. # ignore-warnings ARM64-COW-BUG

docker 容器中的 boot 如何访问 redis

同一网络配置下的 Boot 项目访问 Redis 的话,地址写 容器名称 container_name(一般还会设置 hostname)
需要注意的是,不像 boot 之间,或则 mq 那样需要写 http:// 为前缀,仅需要写 container_name 名称就可以了