redis.conf 74 KB

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