From d44b3eb4d7fdf1bbf9fb3cc5ba9d80dbf2038eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E7=91=9E=E6=96=8C?= Date: Tue, 28 May 2024 22:15:11 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0MeterSphere=20(#1478)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- metersphere/3.0.0-beta/data.yml | 10 + metersphere/3.0.0-beta/docker-compose.yml | 22 + .../mount/conf/kafka/config/server.properties | 34 + .../mount/conf/metersphere.properties | 14 + .../3.0.0-beta/mount/conf/mysql/my.cnf | 35 + .../3.0.0-beta/mount/conf/redis/redis.conf | 2051 +++++++++++++++++ .../3.0.0-beta/mount/conf/redisson.yml | 6 + metersphere/3.0.0-beta/mount/data/.gitkeep | 0 metersphere/3.0.0-beta/mount/logs/.gitkeep | 0 metersphere/3.0.0-beta/scripts/init.sh | 4 + metersphere/README.md | 10 + metersphere/data.yml | 20 + metersphere/logo.png | Bin 0 -> 106910 bytes 13 files changed, 2206 insertions(+) create mode 100644 metersphere/3.0.0-beta/data.yml create mode 100644 metersphere/3.0.0-beta/docker-compose.yml create mode 100755 metersphere/3.0.0-beta/mount/conf/kafka/config/server.properties create mode 100755 metersphere/3.0.0-beta/mount/conf/metersphere.properties create mode 100755 metersphere/3.0.0-beta/mount/conf/mysql/my.cnf create mode 100755 metersphere/3.0.0-beta/mount/conf/redis/redis.conf create mode 100755 metersphere/3.0.0-beta/mount/conf/redisson.yml create mode 100644 metersphere/3.0.0-beta/mount/data/.gitkeep create mode 100644 metersphere/3.0.0-beta/mount/logs/.gitkeep create mode 100644 metersphere/3.0.0-beta/scripts/init.sh create mode 100644 metersphere/README.md create mode 100644 metersphere/data.yml create mode 100644 metersphere/logo.png diff --git a/metersphere/3.0.0-beta/data.yml b/metersphere/3.0.0-beta/data.yml new file mode 100644 index 000000000..fb2a0f463 --- /dev/null +++ b/metersphere/3.0.0-beta/data.yml @@ -0,0 +1,10 @@ +additionalProperties: + formFields: + - default: 8081 + envKey: PANEL_APP_PORT_HTTP + labelEn: Web Port + labelZh: Web 端口 + required: true + rule: paramPort + type: number + diff --git a/metersphere/3.0.0-beta/docker-compose.yml b/metersphere/3.0.0-beta/docker-compose.yml new file mode 100644 index 000000000..f97dc5233 --- /dev/null +++ b/metersphere/3.0.0-beta/docker-compose.yml @@ -0,0 +1,22 @@ +version: '3' +services: + metersphere: + image: metersphere/metersphere-ce-allinone:v3.0.0-beta + container_name: ${CONTAINER_NAME} + privileged: true + restart: always + labels: + createdBy: "Apps" + environment: + JAVA_MAX_HEAP_RATIO: 15 + ports: + - ${PANEL_APP_PORT_HTTP}:8081 + volumes: + - ./mount/logs:/opt/metersphere/logs + - ./mount/data:/opt/metersphere/data + - ./mount/conf:/opt/metersphere/conf + networks: + - 1panel-network +networks: + 1panel-network: + external: true \ No newline at end of file diff --git a/metersphere/3.0.0-beta/mount/conf/kafka/config/server.properties b/metersphere/3.0.0-beta/mount/conf/kafka/config/server.properties new file mode 100755 index 000000000..ea3892602 --- /dev/null +++ b/metersphere/3.0.0-beta/mount/conf/kafka/config/server.properties @@ -0,0 +1,34 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# Set properties not provided in the file input +controller.quorum.voters=1@127.0.0.1:29093 +listeners=CONTROLLER://:29093,PLAINTEXT_HOST://:9092,PLAINTEXT://:19092 +node.id=1 +advertised.listeners=PLAINTEXT_HOST://127.0.0.1:9092,PLAINTEXT://broker:19092 +controller.listener.names=CONTROLLER +group.initial.rebalance.delay.ms=0 +inter.broker.listener.name=PLAINTEXT +listener.security.protocol.map=PLAINTEXT:PLAINTEXT,CONTROLLER:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT +log.dirs=/tmp/kraft-combined-logs +offsets.topic.replication.factor=1 +process.roles=broker,controller +transaction.state.log.min.isr=1 +transaction.state.log.replication.factor=1 +log.retention.ms=60000 +max.request.size=524288000 +message.max.bytes=524288000 +replica.fetch.max.bytes=524288000 +fetch.message.max_bytes=524288000 +partition.fetch.bytes=524288000 diff --git a/metersphere/3.0.0-beta/mount/conf/metersphere.properties b/metersphere/3.0.0-beta/mount/conf/metersphere.properties new file mode 100755 index 000000000..89e284e37 --- /dev/null +++ b/metersphere/3.0.0-beta/mount/conf/metersphere.properties @@ -0,0 +1,14 @@ +logger.sql.level=info +management.endpoints.enabled-by-default=false +springdoc.api-docs.groups.enabled=true +spring.freemarker.check-template-location=false +spring.groovy.template.check-template-location=false + +spring.datasource.url=jdbc:mysql://127.0.0.1:3306/test?autoReconnect=false&useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8&zeroDateTimeBehavior=convertToNull&allowPublicKeyRetrieval=true&useSSL=false&sessionVariables=sql_mode=%27STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION%27 +spring.datasource.username=root +spring.datasource.password=111111 +kafka.bootstrapServers=127.0.0.1:9092 +spring.session.timeout=30d +minio.endpoint=http://127.0.0.1:9000 +minio.accessKey=minioadmin +minio.secretKey=minioadmin \ No newline at end of file diff --git a/metersphere/3.0.0-beta/mount/conf/mysql/my.cnf b/metersphere/3.0.0-beta/mount/conf/mysql/my.cnf new file mode 100755 index 000000000..5616a9801 --- /dev/null +++ b/metersphere/3.0.0-beta/mount/conf/mysql/my.cnf @@ -0,0 +1,35 @@ +[mysqld] +datadir=/opt/metersphere/data/mysql + +default-storage-engine=INNODB +character_set_server=utf8mb4 +lower_case_table_names=1 +performance_schema=off +table_open_cache=128 +transaction_isolation=READ-COMMITTED +max_connections=1000 +max_connect_errors=6000 +max_allowed_packet=64M +innodb_file_per_table=1 +innodb_buffer_pool_size=256M +innodb_lock_wait_timeout=1800 + +server-id=1 +log-bin=mysql-bin +expire_logs_days = 2 +binlog_format=mixed + +character-set-client-handshake = FALSE +character-set-server=utf8mb4 +collation-server=utf8mb4_general_ci +init_connect='SET default_collation_for_utf8mb4=utf8mb4_general_ci' + +sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION + +skip-name-resolve + +[mysql] +default-character-set=utf8mb4 + +[mysql.server] +default-character-set=utf8mb4 \ No newline at end of file diff --git a/metersphere/3.0.0-beta/mount/conf/redis/redis.conf b/metersphere/3.0.0-beta/mount/conf/redis/redis.conf new file mode 100755 index 000000000..2744c68c1 --- /dev/null +++ b/metersphere/3.0.0-beta/mount/conf/redis/redis.conf @@ -0,0 +1,2051 @@ +# Redis configuration file example. +# +# Note that in order to read the configuration file, Redis must be +# started with the file path as first argument: +# +# ./redis-server /path/to/redis.conf + +# Note on units: when memory size is needed, it is possible to specify +# it in the usual form of 1k 5GB 4M and so forth: +# +# 1k => 1000 bytes +# 1kb => 1024 bytes +# 1m => 1000000 bytes +# 1mb => 1024*1024 bytes +# 1g => 1000000000 bytes +# 1gb => 1024*1024*1024 bytes +# +# units are case insensitive so 1GB 1Gb 1gB are all the same. + +################################## INCLUDES ################################### + +# Include one or more other config files here. This is useful if you +# have a standard template that goes to all Redis servers but also need +# to customize a few per-server settings. Include files can include +# other files, so use this wisely. +# +# Note that option "include" won't be rewritten by command "CONFIG REWRITE" +# from admin or Redis Sentinel. Since Redis always uses the last processed +# line as value of a configuration directive, you'd better put includes +# at the beginning of this file to avoid overwriting config change at runtime. +# +# If instead you are interested in using includes to override configuration +# options, it is better to use include as the last line. +# +# include /path/to/local.conf +# include /path/to/other.conf + +################################## MODULES ##################################### + +# Load modules at startup. If the server is not able to load modules +# it will abort. It is possible to use multiple loadmodule directives. +# +# loadmodule /path/to/my_module.so +# loadmodule /path/to/other_module.so + +################################## NETWORK ##################################### + +# By default, if no "bind" configuration directive is specified, Redis listens +# for connections from all available network interfaces on the host machine. +# It is possible to listen to just one or multiple selected interfaces using +# the "bind" configuration directive, followed by one or more IP addresses. +# Each address can be prefixed by "-", which means that redis will not fail to +# start if the address is not available. Being not available only refers to +# addresses that does not correspond to any network interfece. Addresses that +# are already in use will always fail, and unsupported protocols will always BE +# silently skipped. +# +# Examples: +# +# bind 192.168.1.100 10.0.0.1 # listens on two specific IPv4 addresses +# bind 127.0.0.1 ::1 # listens on loopback IPv4 and IPv6 +# bind * -::* # like the default, all available interfaces +# +# ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the +# internet, binding to all the interfaces is dangerous and will expose the +# instance to everybody on the internet. So by default we uncomment the +# following bind directive, that will force Redis to listen only on the +# IPv4 and IPv6 (if available) loopback interface addresses (this means Redis +# will only be able to accept client connections from the same host that it is +# running on). +# +# IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES +# JUST COMMENT OUT THE FOLLOWING LINE. +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +bind 0.0.0.0 + +# Protected mode is a layer of security protection, in order to avoid that +# Redis instances left open on the internet are accessed and exploited. +# +# When protected mode is on and if: +# +# 1) The server is not binding explicitly to a set of addresses using the +# "bind" directive. +# 2) No password is configured. +# +# The server only accepts connections from clients connecting from the +# IPv4 and IPv6 loopback addresses 127.0.0.1 and ::1, and from Unix domain +# sockets. +# +# By default protected mode is enabled. You should disable it only if +# you are sure you want clients from other hosts to connect to Redis +# even if no authentication is configured, nor a specific set of interfaces +# are explicitly listed using the "bind" directive. +protected-mode yes + +# Accept connections on the specified port, default is 6379 (IANA #815344). +# If port 0 is specified Redis will not listen on a TCP socket. +port 6379 + +# TCP listen() backlog. +# +# In high requests-per-second environments you need a high backlog in order +# to avoid slow clients connection issues. Note that the Linux kernel +# will silently truncate it to the value of /proc/sys/net/core/somaxconn so +# make sure to raise both the value of somaxconn and tcp_max_syn_backlog +# in order to get the desired effect. +tcp-backlog 511 + +# Unix socket. +# +# Specify the path for the Unix socket that will be used to listen for +# incoming connections. There is no default, so Redis will not listen +# on a unix socket when not specified. +# +# unixsocket /run/redis.sock +# unixsocketperm 700 + +# Close the connection after a client is idle for N seconds (0 to disable) +timeout 0 + +# TCP keepalive. +# +# If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence +# of communication. This is useful for two reasons: +# +# 1) Detect dead peers. +# 2) Force network equipment in the middle to consider the connection to be +# alive. +# +# On Linux, the specified value (in seconds) is the period used to send ACKs. +# Note that to close the connection the double of the time is needed. +# On other kernels the period depends on the kernel configuration. +# +# A reasonable value for this option is 300 seconds, which is the new +# Redis default starting with Redis 3.2.1. +tcp-keepalive 300 + +################################# TLS/SSL ##################################### + +# By default, TLS/SSL is disabled. To enable it, the "tls-port" configuration +# directive can be used to define TLS-listening ports. To enable TLS on the +# default port, use: +# +# port 0 +# tls-port 6379 + +# Configure a X.509 certificate and private key to use for authenticating the +# server to connected clients, masters or cluster peers. These files should be +# PEM formatted. +# +# tls-cert-file redis.crt +# tls-key-file redis.key +# +# If the key file is encrypted using a passphrase, it can be included here +# as well. +# +# tls-key-file-pass secret + +# Normally Redis uses the same certificate for both server functions (accepting +# connections) and client functions (replicating from a master, establishing +# cluster bus connections, etc.). +# +# Sometimes certificates are issued with attributes that designate them as +# client-only or server-only certificates. In that case it may be desired to use +# different certificates for incoming (server) and outgoing (client) +# connections. To do that, use the following directives: +# +# tls-client-cert-file client.crt +# tls-client-key-file client.key +# +# If the key file is encrypted using a passphrase, it can be included here +# as well. +# +# tls-client-key-file-pass secret + +# Configure a DH parameters file to enable Diffie-Hellman (DH) key exchange: +# +# tls-dh-params-file redis.dh + +# Configure a CA certificate(s) bundle or directory to authenticate TLS/SSL +# clients and peers. Redis requires an explicit configuration of at least one +# of these, and will not implicitly use the system wide configuration. +# +# tls-ca-cert-file ca.crt +# tls-ca-cert-dir /etc/ssl/certs + +# By default, clients (including replica servers) on a TLS port are required +# to authenticate using valid client side certificates. +# +# If "no" is specified, client certificates are not required and not accepted. +# If "optional" is specified, client certificates are accepted and must be +# valid if provided, but are not required. +# +# tls-auth-clients no +# tls-auth-clients optional + +# By default, a Redis replica does not attempt to establish a TLS connection +# with its master. +# +# Use the following directive to enable TLS on replication links. +# +# tls-replication yes + +# By default, the Redis Cluster bus uses a plain TCP connection. To enable +# TLS for the bus protocol, use the following directive: +# +# tls-cluster yes + +# By default, only TLSv1.2 and TLSv1.3 are enabled and it is highly recommended +# that older formally deprecated versions are kept disabled to reduce the attack surface. +# You can explicitly specify TLS versions to support. +# Allowed values are case insensitive and include "TLSv1", "TLSv1.1", "TLSv1.2", +# "TLSv1.3" (OpenSSL >= 1.1.1) or any combination. +# To enable only TLSv1.2 and TLSv1.3, use: +# +# tls-protocols "TLSv1.2 TLSv1.3" + +# Configure allowed ciphers. See the ciphers(1ssl) manpage for more information +# about the syntax of this string. +# +# Note: this configuration applies only to <= TLSv1.2. +# +# tls-ciphers DEFAULT:!MEDIUM + +# Configure allowed TLSv1.3 ciphersuites. See the ciphers(1ssl) manpage for more +# information about the syntax of this string, and specifically for TLSv1.3 +# ciphersuites. +# +# tls-ciphersuites TLS_CHACHA20_POLY1305_SHA256 + +# When choosing a cipher, use the server's preference instead of the client +# preference. By default, the server follows the client's preference. +# +# tls-prefer-server-ciphers yes + +# By default, TLS session caching is enabled to allow faster and less expensive +# reconnections by clients that support it. Use the following directive to disable +# caching. +# +# tls-session-caching no + +# Change the default number of TLS sessions cached. A zero value sets the cache +# to unlimited size. The default size is 20480. +# +# tls-session-cache-size 5000 + +# Change the default timeout of cached TLS sessions. The default timeout is 300 +# seconds. +# +# tls-session-cache-timeout 60 + +################################# GENERAL ##################################### + +# By default Redis does not run as a daemon. Use 'yes' if you need it. +# Note that Redis will write a pid file in /var/run/redis.pid when daemonized. +# When Redis is supervised by upstart or systemd, this parameter has no impact. +daemonize no + +# If you run Redis from upstart or systemd, Redis can interact with your +# supervision tree. Options: +# supervised no - no supervision interaction +# supervised upstart - signal upstart by putting Redis into SIGSTOP mode +# requires "expect stop" in your upstart job config +# supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET +# on startup, and updating Redis status on a regular +# basis. +# supervised auto - detect upstart or systemd method based on +# UPSTART_JOB or NOTIFY_SOCKET environment variables +# Note: these supervision methods only signal "process is ready." +# They do not enable continuous pings back to your supervisor. +# +# The default is "no". To run under upstart/systemd, you can simply uncomment +# the line below: +# +# supervised auto + +# If a pid file is specified, Redis writes it where specified at startup +# and removes it at exit. +# +# When the server runs non daemonized, no pid file is created if none is +# specified in the configuration. When the server is daemonized, the pid file +# is used even if not specified, defaulting to "/var/run/redis.pid". +# +# Creating a pid file is best effort: if Redis is not able to create it +# nothing bad happens, the server will start and run normally. +# +# Note that on modern Linux systems "/run/redis.pid" is more conforming +# and should be used instead. +pidfile /var/run/redis_6379.pid + +# Specify the server verbosity level. +# This can be one of: +# debug (a lot of information, useful for development/testing) +# verbose (many rarely useful info, but not a mess like the debug level) +# notice (moderately verbose, what you want in production probably) +# warning (only very important / critical messages are logged) +loglevel notice + +# Specify the log file name. Also the empty string can be used to force +# Redis to log on the standard output. Note that if you use standard +# output for logging but daemonize, logs will be sent to /dev/null +logfile "" + +# To enable logging to the system logger, just set 'syslog-enabled' to yes, +# and optionally update the other syslog parameters to suit your needs. +# syslog-enabled no + +# Specify the syslog identity. +# syslog-ident redis + +# Specify the syslog facility. Must be USER or between LOCAL0-LOCAL7. +# syslog-facility local0 + +# To disable the built in crash log, which will possibly produce cleaner core +# dumps when they are needed, uncomment the following: +# +# crash-log-enabled no + +# To disable the fast memory check that's run as part of the crash log, which +# will possibly let redis terminate sooner, uncomment the following: +# +# crash-memcheck-enabled no + +# Set the number of databases. The default database is DB 0, you can select +# a different one on a per-connection basis using SELECT where +# dbid is a number between 0 and 'databases'-1 +databases 16 + +# By default Redis shows an ASCII art logo only when started to log to the +# standard output and if the standard output is a TTY and syslog logging is +# disabled. Basically this means that normally a logo is displayed only in +# interactive sessions. +# +# However it is possible to force the pre-4.0 behavior and always show a +# ASCII art logo in startup logs by setting the following option to yes. +always-show-logo no + +# By default, Redis modifies the process title (as seen in 'top' and 'ps') to +# provide some runtime information. It is possible to disable this and leave +# the process name as executed by setting the following to no. +set-proc-title yes + +# When changing the process title, Redis uses the following template to construct +# the modified title. +# +# Template variables are specified in curly brackets. The following variables are +# supported: +# +# {title} Name of process as executed if parent, or type of child process. +# {listen-addr} Bind address or '*' followed by TCP or TLS port listening on, or +# Unix socket if only that's available. +# {server-mode} Special mode, i.e. "[sentinel]" or "[cluster]". +# {port} TCP port listening on, or 0. +# {tls-port} TLS port listening on, or 0. +# {unixsocket} Unix domain socket listening on, or "". +# {config-file} Name of configuration file used. +# +proc-title-template "{title} {listen-addr} {server-mode}" + +################################ SNAPSHOTTING ################################ + +# Save the DB to disk. +# +# save +# +# Redis will save the DB if both the given number of seconds and the given +# number of write operations against the DB occurred. +# +# Snapshotting can be completely disabled with a single empty string argument +# as in following example: +# +# save "" +# +# Unless specified otherwise, by default Redis will save the DB: +# * After 3600 seconds (an hour) if at least 1 key changed +# * After 300 seconds (5 minutes) if at least 100 keys changed +# * After 60 seconds if at least 10000 keys changed +# +# You can set these explicitly by uncommenting the three following lines. +# +# save 3600 1 +# save 300 100 +# save 60 10000 + +# By default Redis will stop accepting writes if RDB snapshots are enabled +# (at least one save point) and the latest background save failed. +# This will make the user aware (in a hard way) that data is not persisting +# on disk properly, otherwise chances are that no one will notice and some +# disaster will happen. +# +# If the background saving process will start working again Redis will +# automatically allow writes again. +# +# However if you have setup your proper monitoring of the Redis server +# and persistence, you may want to disable this feature so that Redis will +# continue to work as usual even if there are problems with disk, +# permissions, and so forth. +stop-writes-on-bgsave-error yes + +# Compress string objects using LZF when dump .rdb databases? +# By default compression is enabled as it's almost always a win. +# If you want to save some CPU in the saving child set it to 'no' but +# the dataset will likely be bigger if you have compressible values or keys. +rdbcompression yes + +# Since version 5 of RDB a CRC64 checksum is placed at the end of the file. +# This makes the format more resistant to corruption but there is a performance +# hit to pay (around 10%) when saving and loading RDB files, so you can disable it +# for maximum performances. +# +# RDB files created with checksum disabled have a checksum of zero that will +# tell the loading code to skip the check. +rdbchecksum yes + +# Enables or disables full sanitation checks for ziplist and listpack etc when +# loading an RDB or RESTORE payload. This reduces the chances of a assertion or +# crash later on while processing commands. +# Options: +# no - Never perform full sanitation +# yes - Always perform full sanitation +# clients - Perform full sanitation only for user connections. +# Excludes: RDB files, RESTORE commands received from the master +# connection, and client connections which have the +# skip-sanitize-payload ACL flag. +# The default should be 'clients' but since it currently affects cluster +# resharding via MIGRATE, it is temporarily set to 'no' by default. +# +# sanitize-dump-payload no + +# The filename where to dump the DB +dbfilename dump.rdb + +# Remove RDB files used by replication in instances without persistence +# enabled. By default this option is disabled, however there are environments +# where for regulations or other security concerns, RDB files persisted on +# disk by masters in order to feed replicas, or stored on disk by replicas +# in order to load them for the initial synchronization, should be deleted +# ASAP. Note that this option ONLY WORKS in instances that have both AOF +# and RDB persistence disabled, otherwise is completely ignored. +# +# An alternative (and sometimes better) way to obtain the same effect is +# to use diskless replication on both master and replicas instances. However +# in the case of replicas, diskless is not always an option. +rdb-del-sync-files no + +# The working directory. +# +# The DB will be written inside this directory, with the filename specified +# above using the 'dbfilename' configuration directive. +# +# The Append Only File will also be created inside this directory. +# +# Note that you must specify a directory here, not a file name. +dir /opt/metersphere/data/redis + +################################# REPLICATION ################################# + +# Master-Replica replication. Use replicaof to make a Redis instance a copy of +# another Redis server. A few things to understand ASAP about Redis replication. +# +# +------------------+ +---------------+ +# | Master | ---> | Replica | +# | (receive writes) | | (exact copy) | +# +------------------+ +---------------+ +# +# 1) Redis replication is asynchronous, but you can configure a master to +# stop accepting writes if it appears to be not connected with at least +# a given number of replicas. +# 2) Redis replicas are able to perform a partial resynchronization with the +# master if the replication link is lost for a relatively small amount of +# time. You may want to configure the replication backlog size (see the next +# sections of this file) with a sensible value depending on your needs. +# 3) Replication is automatic and does not need user intervention. After a +# network partition replicas automatically try to reconnect to masters +# and resynchronize with them. +# +# replicaof + +# If the master is password protected (using the "requirepass" configuration +# directive below) it is possible to tell the replica to authenticate before +# starting the replication synchronization process, otherwise the master will +# refuse the replica request. +# +# masterauth +# +# However this is not enough if you are using Redis ACLs (for Redis version +# 6 or greater), and the default user is not capable of running the PSYNC +# command and/or other commands needed for replication. In this case it's +# better to configure a special user to use with replication, and specify the +# masteruser configuration as such: +# +# masteruser +# +# When masteruser is specified, the replica will authenticate against its +# master using the new AUTH form: AUTH . + +# When a replica loses its connection with the master, or when the replication +# is still in progress, the replica can act in two different ways: +# +# 1) if replica-serve-stale-data is set to 'yes' (the default) the replica will +# still reply to client requests, possibly with out of date data, or the +# data set may just be empty if this is the first synchronization. +# +# 2) If replica-serve-stale-data is set to 'no' the replica will reply with +# an error "SYNC with master in progress" to all commands except: +# INFO, REPLICAOF, AUTH, PING, SHUTDOWN, REPLCONF, ROLE, CONFIG, SUBSCRIBE, +# UNSUBSCRIBE, PSUBSCRIBE, PUNSUBSCRIBE, PUBLISH, PUBSUB, COMMAND, POST, +# HOST and LATENCY. +# +replica-serve-stale-data yes + +# You can configure a replica instance to accept writes or not. Writing against +# a replica instance may be useful to store some ephemeral data (because data +# written on a replica will be easily deleted after resync with the master) but +# may also cause problems if clients are writing to it because of a +# misconfiguration. +# +# Since Redis 2.6 by default replicas are read-only. +# +# Note: read only replicas are not designed to be exposed to untrusted clients +# on the internet. It's just a protection layer against misuse of the instance. +# Still a read only replica exports by default all the administrative commands +# such as CONFIG, DEBUG, and so forth. To a limited extent you can improve +# security of read only replicas using 'rename-command' to shadow all the +# administrative / dangerous commands. +replica-read-only yes + +# Replication SYNC strategy: disk or socket. +# +# New replicas and reconnecting replicas that are not able to continue the +# replication process just receiving differences, need to do what is called a +# "full synchronization". An RDB file is transmitted from the master to the +# replicas. +# +# The transmission can happen in two different ways: +# +# 1) Disk-backed: The Redis master creates a new process that writes the RDB +# file on disk. Later the file is transferred by the parent +# process to the replicas incrementally. +# 2) Diskless: The Redis master creates a new process that directly writes the +# RDB file to replica sockets, without touching the disk at all. +# +# With disk-backed replication, while the RDB file is generated, more replicas +# can be queued and served with the RDB file as soon as the current child +# producing the RDB file finishes its work. With diskless replication instead +# once the transfer starts, new replicas arriving will be queued and a new +# transfer will start when the current one terminates. +# +# When diskless replication is used, the master waits a configurable amount of +# time (in seconds) before starting the transfer in the hope that multiple +# replicas will arrive and the transfer can be parallelized. +# +# With slow disks and fast (large bandwidth) networks, diskless replication +# works better. +repl-diskless-sync no + +# When diskless replication is enabled, it is possible to configure the delay +# the server waits in order to spawn the child that transfers the RDB via socket +# to the replicas. +# +# This is important since once the transfer starts, it is not possible to serve +# new replicas arriving, that will be queued for the next RDB transfer, so the +# server waits a delay in order to let more replicas arrive. +# +# The delay is specified in seconds, and by default is 5 seconds. To disable +# it entirely just set it to 0 seconds and the transfer will start ASAP. +repl-diskless-sync-delay 5 + +# ----------------------------------------------------------------------------- +# WARNING: RDB diskless load is experimental. Since in this setup the replica +# does not immediately store an RDB on disk, it may cause data loss during +# failovers. RDB diskless load + Redis modules not handling I/O reads may also +# cause Redis to abort in case of I/O errors during the initial synchronization +# stage with the master. Use only if you know what you are doing. +# ----------------------------------------------------------------------------- +# +# Replica can load the RDB it reads from the replication link directly from the +# socket, or store the RDB to a file and read that file after it was completely +# received from the master. +# +# In many cases the disk is slower than the network, and storing and loading +# the RDB file may increase replication time (and even increase the master's +# Copy on Write memory and salve buffers). +# However, parsing the RDB file directly from the socket may mean that we have +# to flush the contents of the current database before the full rdb was +# received. For this reason we have the following options: +# +# "disabled" - Don't use diskless load (store the rdb file to the disk first) +# "on-empty-db" - Use diskless load only when it is completely safe. +# "swapdb" - Keep a copy of the current db contents in RAM while parsing +# the data directly from the socket. note that this requires +# sufficient memory, if you don't have it, you risk an OOM kill. +repl-diskless-load disabled + +# Replicas send PINGs to server in a predefined interval. It's possible to +# change this interval with the repl_ping_replica_period option. The default +# value is 10 seconds. +# +# repl-ping-replica-period 10 + +# The following option sets the replication timeout for: +# +# 1) Bulk transfer I/O during SYNC, from the point of view of replica. +# 2) Master timeout from the point of view of replicas (data, pings). +# 3) Replica timeout from the point of view of masters (REPLCONF ACK pings). +# +# It is important to make sure that this value is greater than the value +# specified for repl-ping-replica-period otherwise a timeout will be detected +# every time there is low traffic between the master and the replica. The default +# value is 60 seconds. +# +# repl-timeout 60 + +# Disable TCP_NODELAY on the replica socket after SYNC? +# +# If you select "yes" Redis will use a smaller number of TCP packets and +# less bandwidth to send data to replicas. But this can add a delay for +# the data to appear on the replica side, up to 40 milliseconds with +# Linux kernels using a default configuration. +# +# If you select "no" the delay for data to appear on the replica side will +# be reduced but more bandwidth will be used for replication. +# +# By default we optimize for low latency, but in very high traffic conditions +# or when the master and replicas are many hops away, turning this to "yes" may +# be a good idea. +repl-disable-tcp-nodelay no + +# Set the replication backlog size. The backlog is a buffer that accumulates +# replica data when replicas are disconnected for some time, so that when a +# replica wants to reconnect again, often a full resync is not needed, but a +# partial resync is enough, just passing the portion of data the replica +# missed while disconnected. +# +# The bigger the replication backlog, the longer the replica can endure the +# disconnect and later be able to perform a partial resynchronization. +# +# The backlog is only allocated if there is at least one replica connected. +# +# repl-backlog-size 1mb + +# After a master has no connected replicas for some time, the backlog will be +# freed. The following option configures the amount of seconds that need to +# elapse, starting from the time the last replica disconnected, for the backlog +# buffer to be freed. +# +# Note that replicas never free the backlog for timeout, since they may be +# promoted to masters later, and should be able to correctly "partially +# resynchronize" with other replicas: hence they should always accumulate backlog. +# +# A value of 0 means to never release the backlog. +# +# repl-backlog-ttl 3600 + +# The replica priority is an integer number published by Redis in the INFO +# output. It is used by Redis Sentinel in order to select a replica to promote +# into a master if the master is no longer working correctly. +# +# A replica with a low priority number is considered better for promotion, so +# for instance if there are three replicas with priority 10, 100, 25 Sentinel +# will pick the one with priority 10, that is the lowest. +# +# However a special priority of 0 marks the replica as not able to perform the +# role of master, so a replica with priority of 0 will never be selected by +# Redis Sentinel for promotion. +# +# By default the priority is 100. +replica-priority 100 + +# ----------------------------------------------------------------------------- +# By default, Redis Sentinel includes all replicas in its reports. A replica +# can be excluded from Redis Sentinel's announcements. An unannounced replica +# will be ignored by the 'sentinel replicas ' command and won't be +# exposed to Redis Sentinel's clients. +# +# This option does not change the behavior of replica-priority. Even with +# replica-announced set to 'no', the replica can be promoted to master. To +# prevent this behavior, set replica-priority to 0. +# +# replica-announced yes + +# It is possible for a master to stop accepting writes if there are less than +# N replicas connected, having a lag less or equal than M seconds. +# +# The N replicas need to be in "online" state. +# +# The lag in seconds, that must be <= the specified value, is calculated from +# the last ping received from the replica, that is usually sent every second. +# +# This option does not GUARANTEE that N replicas will accept the write, but +# will limit the window of exposure for lost writes in case not enough replicas +# are available, to the specified number of seconds. +# +# For example to require at least 3 replicas with a lag <= 10 seconds use: +# +# min-replicas-to-write 3 +# min-replicas-max-lag 10 +# +# Setting one or the other to 0 disables the feature. +# +# By default min-replicas-to-write is set to 0 (feature disabled) and +# min-replicas-max-lag is set to 10. + +# A Redis master is able to list the address and port of the attached +# replicas in different ways. For example the "INFO replication" section +# offers this information, which is used, among other tools, by +# Redis Sentinel in order to discover replica instances. +# Another place where this info is available is in the output of the +# "ROLE" command of a master. +# +# The listed IP address and port normally reported by a replica is +# obtained in the following way: +# +# IP: The address is auto detected by checking the peer address +# of the socket used by the replica to connect with the master. +# +# Port: The port is communicated by the replica during the replication +# handshake, and is normally the port that the replica is using to +# listen for connections. +# +# However when port forwarding or Network Address Translation (NAT) is +# used, the replica may actually be reachable via different IP and port +# pairs. The following two options can be used by a replica in order to +# report to its master a specific set of IP and port, so that both INFO +# and ROLE will report those values. +# +# There is no need to use both the options if you need to override just +# the port or the IP address. +# +# replica-announce-ip 5.5.5.5 +# replica-announce-port 1234 + +############################### KEYS TRACKING ################################# + +# Redis implements server assisted support for client side caching of values. +# This is implemented using an invalidation table that remembers, using +# a radix key indexed by key name, what clients have which keys. In turn +# this is used in order to send invalidation messages to clients. Please +# check this page to understand more about the feature: +# +# https://redis.io/topics/client-side-caching +# +# When tracking is enabled for a client, all the read only queries are assumed +# to be cached: this will force Redis to store information in the invalidation +# table. When keys are modified, such information is flushed away, and +# invalidation messages are sent to the clients. However if the workload is +# heavily dominated by reads, Redis could use more and more memory in order +# to track the keys fetched by many clients. +# +# For this reason it is possible to configure a maximum fill value for the +# invalidation table. By default it is set to 1M of keys, and once this limit +# is reached, Redis will start to evict keys in the invalidation table +# even if they were not modified, just to reclaim memory: this will in turn +# force the clients to invalidate the cached values. Basically the table +# maximum size is a trade off between the memory you want to spend server +# side to track information about who cached what, and the ability of clients +# to retain cached objects in memory. +# +# If you set the value to 0, it means there are no limits, and Redis will +# retain as many keys as needed in the invalidation table. +# In the "stats" INFO section, you can find information about the number of +# keys in the invalidation table at every given moment. +# +# Note: when key tracking is used in broadcasting mode, no memory is used +# in the server side so this setting is useless. +# +# tracking-table-max-keys 1000000 + +################################## SECURITY ################################### + +# Warning: since Redis is pretty fast, an outside user can try up to +# 1 million passwords per second against a modern box. This means that you +# should use very strong passwords, otherwise they will be very easy to break. +# Note that because the password is really a shared secret between the client +# and the server, and should not be memorized by any human, the password +# can be easily a long string from /dev/urandom or whatever, so by using a +# long and unguessable password no brute force attack will be possible. + +# Redis ACL users are defined in the following format: +# +# user ... acl rules ... +# +# For example: +# +# user worker +@list +@connection ~jobs:* on >ffa9203c493aa99 +# +# The special username "default" is used for new connections. If this user +# has the "nopass" rule, then new connections will be immediately authenticated +# as the "default" user without the need of any password provided via the +# AUTH command. Otherwise if the "default" user is not flagged with "nopass" +# the connections will start in not authenticated state, and will require +# AUTH (or the HELLO command AUTH option) in order to be authenticated and +# start to work. +# +# The ACL rules that describe what a user can do are the following: +# +# on Enable the user: it is possible to authenticate as this user. +# off Disable the user: it's no longer possible to authenticate +# with this user, however the already authenticated connections +# will still work. +# skip-sanitize-payload RESTORE dump-payload sanitation is skipped. +# sanitize-payload RESTORE dump-payload is sanitized (default). +# + Allow the execution of that command +# - Disallow the execution of that command +# +@ Allow the execution of all the commands in such category +# with valid categories are like @admin, @set, @sortedset, ... +# and so forth, see the full list in the server.c file where +# the Redis command table is described and defined. +# The special category @all means all the commands, but currently +# present in the server, and that will be loaded in the future +# via modules. +# +|subcommand Allow a specific subcommand of an otherwise +# disabled command. Note that this form is not +# allowed as negative like -DEBUG|SEGFAULT, but +# only additive starting with "+". +# allcommands Alias for +@all. Note that it implies the ability to execute +# all the future commands loaded via the modules system. +# nocommands Alias for -@all. +# ~ Add a pattern of keys that can be mentioned as part of +# commands. For instance ~* allows all the keys. The pattern +# is a glob-style pattern like the one of KEYS. +# It is possible to specify multiple patterns. +# allkeys Alias for ~* +# resetkeys Flush the list of allowed keys patterns. +# & Add a glob-style pattern of Pub/Sub channels that can be +# accessed by the user. It is possible to specify multiple channel +# patterns. +# allchannels Alias for &* +# resetchannels Flush the list of allowed channel patterns. +# > Add this password to the list of valid password for the user. +# For example >mypass will add "mypass" to the list. +# This directive clears the "nopass" flag (see later). +# < Remove this password from the list of valid passwords. +# nopass All the set passwords of the user are removed, and the user +# is flagged as requiring no password: it means that every +# password will work against this user. If this directive is +# used for the default user, every new connection will be +# immediately authenticated with the default user without +# any explicit AUTH command required. Note that the "resetpass" +# directive will clear this condition. +# resetpass Flush the list of allowed passwords. Moreover removes the +# "nopass" status. After "resetpass" the user has no associated +# passwords and there is no way to authenticate without adding +# some password (or setting it as "nopass" later). +# reset Performs the following actions: resetpass, resetkeys, off, +# -@all. The user returns to the same state it has immediately +# after its creation. +# +# ACL rules can be specified in any order: for instance you can start with +# passwords, then flags, or key patterns. However note that the additive +# and subtractive rules will CHANGE MEANING depending on the ordering. +# For instance see the following example: +# +# user alice on +@all -DEBUG ~* >somepassword +# +# This will allow "alice" to use all the commands with the exception of the +# DEBUG command, since +@all added all the commands to the set of the commands +# alice can use, and later DEBUG was removed. However if we invert the order +# of two ACL rules the result will be different: +# +# user alice on -DEBUG +@all ~* >somepassword +# +# Now DEBUG was removed when alice had yet no commands in the set of allowed +# commands, later all the commands are added, so the user will be able to +# execute everything. +# +# Basically ACL rules are processed left-to-right. +# +# For more information about ACL configuration please refer to +# the Redis web site at https://redis.io/topics/acl + +# ACL LOG +# +# The ACL Log tracks failed commands and authentication events associated +# with ACLs. The ACL Log is useful to troubleshoot failed commands blocked +# by ACLs. The ACL Log is stored in memory. You can reclaim memory with +# ACL LOG RESET. Define the maximum entry length of the ACL Log below. +acllog-max-len 128 + +# Using an external ACL file +# +# Instead of configuring users here in this file, it is possible to use +# a stand-alone file just listing users. The two methods cannot be mixed: +# if you configure users here and at the same time you activate the external +# ACL file, the server will refuse to start. +# +# The format of the external ACL user file is exactly the same as the +# format that is used inside redis.conf to describe users. +# +# aclfile /etc/redis/users.acl + +# IMPORTANT NOTE: starting with Redis 6 "requirepass" is just a compatibility +# layer on top of the new ACL system. The option effect will be just setting +# the password for the default user. Clients will still authenticate using +# AUTH as usually, or more explicitly with AUTH default +# if they follow the new protocol: both will work. +# +# The requirepass is not compatable with aclfile option and the ACL LOAD +# command, these will cause requirepass to be ignored. +# +# requirepass foobared + +# New users are initialized with restrictive permissions by default, via the +# equivalent of this ACL rule 'off resetkeys -@all'. Starting with Redis 6.2, it +# is possible to manage access to Pub/Sub channels with ACL rules as well. The +# default Pub/Sub channels permission if new users is controlled by the +# acl-pubsub-default configuration directive, which accepts one of these values: +# +# allchannels: grants access to all Pub/Sub channels +# resetchannels: revokes access to all Pub/Sub channels +# +# To ensure backward compatibility while upgrading Redis 6.0, acl-pubsub-default +# defaults to the 'allchannels' permission. +# +# Future compatibility note: it is very likely that in a future version of Redis +# the directive's default of 'allchannels' will be changed to 'resetchannels' in +# order to provide better out-of-the-box Pub/Sub security. Therefore, it is +# recommended that you explicitly define Pub/Sub permissions for all users +# rather then rely on implicit default values. Once you've set explicit +# Pub/Sub for all existing users, you should uncomment the following line. +# +# acl-pubsub-default resetchannels + +# Command renaming (DEPRECATED). +# +# ------------------------------------------------------------------------ +# WARNING: avoid using this option if possible. Instead use ACLs to remove +# commands from the default user, and put them only in some admin user you +# create for administrative purposes. +# ------------------------------------------------------------------------ +# +# It is possible to change the name of dangerous commands in a shared +# environment. For instance the CONFIG command may be renamed into something +# hard to guess so that it will still be available for internal-use tools +# but not available for general clients. +# +# Example: +# +# rename-command CONFIG b840fc02d524045429941cc15f59e41cb7be6c52 +# +# It is also possible to completely kill a command by renaming it into +# an empty string: +# +# rename-command CONFIG "" +# +# Please note that changing the name of commands that are logged into the +# AOF file or transmitted to replicas may cause problems. + +################################### CLIENTS #################################### + +# Set the max number of connected clients at the same time. By default +# this limit is set to 10000 clients, however if the Redis server is not +# able to configure the process file limit to allow for the specified limit +# the max number of allowed clients is set to the current file limit +# minus 32 (as Redis reserves a few file descriptors for internal uses). +# +# Once the limit is reached Redis will close all the new connections sending +# an error 'max number of clients reached'. +# +# IMPORTANT: When Redis Cluster is used, the max number of connections is also +# shared with the cluster bus: every node in the cluster will use two +# connections, one incoming and another outgoing. It is important to size the +# limit accordingly in case of very large clusters. +# +# maxclients 10000 + +############################## MEMORY MANAGEMENT ################################ + +# Set a memory usage limit to the specified amount of bytes. +# When the memory limit is reached Redis will try to remove keys +# according to the eviction policy selected (see maxmemory-policy). +# +# If Redis can't remove keys according to the policy, or if the policy is +# set to 'noeviction', Redis will start to reply with errors to commands +# that would use more memory, like SET, LPUSH, and so on, and will continue +# to reply to read-only commands like GET. +# +# This option is usually useful when using Redis as an LRU or LFU cache, or to +# set a hard memory limit for an instance (using the 'noeviction' policy). +# +# WARNING: If you have replicas attached to an instance with maxmemory on, +# the size of the output buffers needed to feed the replicas are subtracted +# from the used memory count, so that network problems / resyncs will +# not trigger a loop where keys are evicted, and in turn the output +# buffer of replicas is full with DELs of keys evicted triggering the deletion +# of more keys, and so forth until the database is completely emptied. +# +# In short... if you have replicas attached it is suggested that you set a lower +# limit for maxmemory so that there is some free RAM on the system for replica +# output buffers (but this is not needed if the policy is 'noeviction'). +# +maxmemory 1G + +# MAXMEMORY POLICY: how Redis will select what to remove when maxmemory +# is reached. You can select one from the following behaviors: +# +# volatile-lru -> Evict using approximated LRU, only keys with an expire set. +# allkeys-lru -> Evict any key using approximated LRU. +# volatile-lfu -> Evict using approximated LFU, only keys with an expire set. +# allkeys-lfu -> Evict any key using approximated LFU. +# volatile-random -> Remove a random key having an expire set. +# allkeys-random -> Remove a random key, any key. +# volatile-ttl -> Remove the key with the nearest expire time (minor TTL) +# noeviction -> Don't evict anything, just return an error on write operations. +# +# LRU means Least Recently Used +# LFU means Least Frequently Used +# +# Both LRU, LFU and volatile-ttl are implemented using approximated +# randomized algorithms. +# +# Note: with any of the above policies, when there are no suitable keys for +# eviction, Redis will return an error on write operations that require +# more memory. These are usually commands that create new keys, add data or +# modify existing keys. A few examples are: SET, INCR, HSET, LPUSH, SUNIONSTORE, +# SORT (due to the STORE argument), and EXEC (if the transaction includes any +# command that requires memory). +# +# The default is: +# +maxmemory-policy allkeys-lru + +# LRU, LFU and minimal TTL algorithms are not precise algorithms but approximated +# algorithms (in order to save memory), so you can tune it for speed or +# accuracy. By default Redis will check five keys and pick the one that was +# used least recently, you can change the sample size using the following +# configuration directive. +# +# The default of 5 produces good enough results. 10 Approximates very closely +# true LRU but costs more CPU. 3 is faster but not very accurate. +# +# maxmemory-samples 5 + +# Eviction processing is designed to function well with the default setting. +# If there is an unusually large amount of write traffic, this value may need to +# be increased. Decreasing this value may reduce latency at the risk of +# eviction processing effectiveness +# 0 = minimum latency, 10 = default, 100 = process without regard to latency +# +# maxmemory-eviction-tenacity 10 + +# Starting from Redis 5, by default a replica will ignore its maxmemory setting +# (unless it is promoted to master after a failover or manually). It means +# that the eviction of keys will be just handled by the master, sending the +# DEL commands to the replica as keys evict in the master side. +# +# This behavior ensures that masters and replicas stay consistent, and is usually +# what you want, however if your replica is writable, or you want the replica +# to have a different memory setting, and you are sure all the writes performed +# to the replica are idempotent, then you may change this default (but be sure +# to understand what you are doing). +# +# Note that since the replica by default does not evict, it may end using more +# memory than the one set via maxmemory (there are certain buffers that may +# be larger on the replica, or data structures may sometimes take more memory +# and so forth). So make sure you monitor your replicas and make sure they +# have enough memory to never hit a real out-of-memory condition before the +# master hits the configured maxmemory setting. +# +# replica-ignore-maxmemory yes + +# Redis reclaims expired keys in two ways: upon access when those keys are +# found to be expired, and also in background, in what is called the +# "active expire key". The key space is slowly and interactively scanned +# looking for expired keys to reclaim, so that it is possible to free memory +# of keys that are expired and will never be accessed again in a short time. +# +# The default effort of the expire cycle will try to avoid having more than +# ten percent of expired keys still in memory, and will try to avoid consuming +# more than 25% of total memory and to add latency to the system. However +# it is possible to increase the expire "effort" that is normally set to +# "1", to a greater value, up to the value "10". At its maximum value the +# system will use more CPU, longer cycles (and technically may introduce +# more latency), and will tolerate less already expired keys still present +# in the system. It's a tradeoff between memory, CPU and latency. +# +# active-expire-effort 1 + +############################# LAZY FREEING #################################### + +# Redis has two primitives to delete keys. One is called DEL and is a blocking +# deletion of the object. It means that the server stops processing new commands +# in order to reclaim all the memory associated with an object in a synchronous +# way. If the key deleted is associated with a small object, the time needed +# in order to execute the DEL command is very small and comparable to most other +# O(1) or O(log_N) commands in Redis. However if the key is associated with an +# aggregated value containing millions of elements, the server can block for +# a long time (even seconds) in order to complete the operation. +# +# For the above reasons Redis also offers non blocking deletion primitives +# such as UNLINK (non blocking DEL) and the ASYNC option of FLUSHALL and +# FLUSHDB commands, in order to reclaim memory in background. Those commands +# are executed in constant time. Another thread will incrementally free the +# object in the background as fast as possible. +# +# DEL, UNLINK and ASYNC option of FLUSHALL and FLUSHDB are user-controlled. +# It's up to the design of the application to understand when it is a good +# idea to use one or the other. However the Redis server sometimes has to +# delete keys or flush the whole database as a side effect of other operations. +# Specifically Redis deletes objects independently of a user call in the +# following scenarios: +# +# 1) On eviction, because of the maxmemory and maxmemory policy configurations, +# in order to make room for new data, without going over the specified +# memory limit. +# 2) Because of expire: when a key with an associated time to live (see the +# EXPIRE command) must be deleted from memory. +# 3) Because of a side effect of a command that stores data on a key that may +# already exist. For example the RENAME command may delete the old key +# content when it is replaced with another one. Similarly SUNIONSTORE +# or SORT with STORE option may delete existing keys. The SET command +# itself removes any old content of the specified key in order to replace +# it with the specified string. +# 4) During replication, when a replica performs a full resynchronization with +# its master, the content of the whole database is removed in order to +# load the RDB file just transferred. +# +# In all the above cases the default is to delete objects in a blocking way, +# like if DEL was called. However you can configure each case specifically +# in order to instead release memory in a non-blocking way like if UNLINK +# was called, using the following configuration directives. + +lazyfree-lazy-eviction no +lazyfree-lazy-expire no +lazyfree-lazy-server-del no +replica-lazy-flush no + +# It is also possible, for the case when to replace the user code DEL calls +# with UNLINK calls is not easy, to modify the default behavior of the DEL +# command to act exactly like UNLINK, using the following configuration +# directive: + +lazyfree-lazy-user-del no + +# FLUSHDB, FLUSHALL, and SCRIPT FLUSH support both asynchronous and synchronous +# deletion, which can be controlled by passing the [SYNC|ASYNC] flags into the +# commands. When neither flag is passed, this directive will be used to determine +# if the data should be deleted asynchronously. + +lazyfree-lazy-user-flush no + +################################ THREADED I/O ################################# + +# Redis is mostly single threaded, however there are certain threaded +# operations such as UNLINK, slow I/O accesses and other things that are +# performed on side threads. +# +# Now it is also possible to handle Redis clients socket reads and writes +# in different I/O threads. Since especially writing is so slow, normally +# Redis users use pipelining in order to speed up the Redis performances per +# core, and spawn multiple instances in order to scale more. Using I/O +# threads it is possible to easily speedup two times Redis without resorting +# to pipelining nor sharding of the instance. +# +# By default threading is disabled, we suggest enabling it only in machines +# that have at least 4 or more cores, leaving at least one spare core. +# Using more than 8 threads is unlikely to help much. We also recommend using +# threaded I/O only if you actually have performance problems, with Redis +# instances being able to use a quite big percentage of CPU time, otherwise +# there is no point in using this feature. +# +# So for instance if you have a four cores boxes, try to use 2 or 3 I/O +# threads, if you have a 8 cores, try to use 6 threads. In order to +# enable I/O threads use the following configuration directive: +# +# io-threads 4 +# +# Setting io-threads to 1 will just use the main thread as usual. +# When I/O threads are enabled, we only use threads for writes, that is +# to thread the write(2) syscall and transfer the client buffers to the +# socket. However it is also possible to enable threading of reads and +# protocol parsing using the following configuration directive, by setting +# it to yes: +# +# io-threads-do-reads no +# +# Usually threading reads doesn't help much. +# +# NOTE 1: This configuration directive cannot be changed at runtime via +# CONFIG SET. Aso this feature currently does not work when SSL is +# enabled. +# +# NOTE 2: If you want to test the Redis speedup using redis-benchmark, make +# sure you also run the benchmark itself in threaded mode, using the +# --threads option to match the number of Redis threads, otherwise you'll not +# be able to notice the improvements. + +############################ KERNEL OOM CONTROL ############################## + +# On Linux, it is possible to hint the kernel OOM killer on what processes +# should be killed first when out of memory. +# +# Enabling this feature makes Redis actively control the oom_score_adj value +# for all its processes, depending on their role. The default scores will +# attempt to have background child processes killed before all others, and +# replicas killed before masters. +# +# Redis supports three options: +# +# no: Don't make changes to oom-score-adj (default). +# yes: Alias to "relative" see below. +# absolute: Values in oom-score-adj-values are written as is to the kernel. +# relative: Values are used relative to the initial value of oom_score_adj when +# the server starts and are then clamped to a range of -1000 to 1000. +# Because typically the initial value is 0, they will often match the +# absolute values. +oom-score-adj no + +# When oom-score-adj is used, this directive controls the specific values used +# for master, replica and background child processes. Values range -2000 to +# 2000 (higher means more likely to be killed). +# +# Unprivileged processes (not root, and without CAP_SYS_RESOURCE capabilities) +# can freely increase their value, but not decrease it below its initial +# settings. This means that setting oom-score-adj to "relative" and setting the +# oom-score-adj-values to positive values will always succeed. +oom-score-adj-values 0 200 800 + + +#################### KERNEL transparent hugepage CONTROL ###################### + +# Usually the kernel Transparent Huge Pages control is set to "madvise" or +# or "never" by default (/sys/kernel/mm/transparent_hugepage/enabled), in which +# case this config has no effect. On systems in which it is set to "always", +# redis will attempt to disable it specifically for the redis process in order +# to avoid latency problems specifically with fork(2) and CoW. +# If for some reason you prefer to keep it enabled, you can set this config to +# "no" and the kernel global to "always". + +disable-thp yes + +############################## APPEND ONLY MODE ############################### + +# By default Redis asynchronously dumps the dataset on disk. This mode is +# good enough in many applications, but an issue with the Redis process or +# a power outage may result into a few minutes of writes lost (depending on +# the configured save points). +# +# The Append Only File is an alternative persistence mode that provides +# much better durability. For instance using the default data fsync policy +# (see later in the config file) Redis can lose just one second of writes in a +# dramatic event like a server power outage, or a single write if something +# wrong with the Redis process itself happens, but the operating system is +# still running correctly. +# +# AOF and RDB persistence can be enabled at the same time without problems. +# If the AOF is enabled on startup Redis will load the AOF, that is the file +# with the better durability guarantees. +# +# Please check https://redis.io/topics/persistence for more information. + +appendonly no + +# The name of the append only file (default: "appendonly.aof") + +appendfilename "appendonly.aof" + +# The fsync() call tells the Operating System to actually write data on disk +# instead of waiting for more data in the output buffer. Some OS will really flush +# data on disk, some other OS will just try to do it ASAP. +# +# Redis supports three different modes: +# +# no: don't fsync, just let the OS flush the data when it wants. Faster. +# always: fsync after every write to the append only log. Slow, Safest. +# everysec: fsync only one time every second. Compromise. +# +# The default is "everysec", as that's usually the right compromise between +# speed and data safety. It's up to you to understand if you can relax this to +# "no" that will let the operating system flush the output buffer when +# it wants, for better performances (but if you can live with the idea of +# some data loss consider the default persistence mode that's snapshotting), +# or on the contrary, use "always" that's very slow but a bit safer than +# everysec. +# +# More details please check the following article: +# http://antirez.com/post/redis-persistence-demystified.html +# +# If unsure, use "everysec". + +# appendfsync always +appendfsync everysec +# appendfsync no + +# When the AOF fsync policy is set to always or everysec, and a background +# saving process (a background save or AOF log background rewriting) is +# performing a lot of I/O against the disk, in some Linux configurations +# Redis may block too long on the fsync() call. Note that there is no fix for +# this currently, as even performing fsync in a different thread will block +# our synchronous write(2) call. +# +# In order to mitigate this problem it's possible to use the following option +# that will prevent fsync() from being called in the main process while a +# BGSAVE or BGREWRITEAOF is in progress. +# +# This means that while another child is saving, the durability of Redis is +# the same as "appendfsync none". In practical terms, this means that it is +# possible to lose up to 30 seconds of log in the worst scenario (with the +# default Linux settings). +# +# If you have latency problems turn this to "yes". Otherwise leave it as +# "no" that is the safest pick from the point of view of durability. + +no-appendfsync-on-rewrite no + +# Automatic rewrite of the append only file. +# Redis is able to automatically rewrite the log file implicitly calling +# BGREWRITEAOF when the AOF log size grows by the specified percentage. +# +# This is how it works: Redis remembers the size of the AOF file after the +# latest rewrite (if no rewrite has happened since the restart, the size of +# the AOF at startup is used). +# +# This base size is compared to the current size. If the current size is +# bigger than the specified percentage, the rewrite is triggered. Also +# you need to specify a minimal size for the AOF file to be rewritten, this +# is useful to avoid rewriting the AOF file even if the percentage increase +# is reached but it is still pretty small. +# +# Specify a percentage of zero in order to disable the automatic AOF +# rewrite feature. + +auto-aof-rewrite-percentage 100 +auto-aof-rewrite-min-size 64mb + +# An AOF file may be found to be truncated at the end during the Redis +# startup process, when the AOF data gets loaded back into memory. +# This may happen when the system where Redis is running +# crashes, especially when an ext4 filesystem is mounted without the +# data=ordered option (however this can't happen when Redis itself +# crashes or aborts but the operating system still works correctly). +# +# Redis can either exit with an error when this happens, or load as much +# data as possible (the default now) and start if the AOF file is found +# to be truncated at the end. The following option controls this behavior. +# +# If aof-load-truncated is set to yes, a truncated AOF file is loaded and +# the Redis server starts emitting a log to inform the user of the event. +# Otherwise if the option is set to no, the server aborts with an error +# and refuses to start. When the option is set to no, the user requires +# to fix the AOF file using the "redis-check-aof" utility before to restart +# the server. +# +# Note that if the AOF file will be found to be corrupted in the middle +# the server will still exit with an error. This option only applies when +# Redis will try to read more data from the AOF file but not enough bytes +# will be found. +aof-load-truncated yes + +# When rewriting the AOF file, Redis is able to use an RDB preamble in the +# AOF file for faster rewrites and recoveries. When this option is turned +# on the rewritten AOF file is composed of two different stanzas: +# +# [RDB file][AOF tail] +# +# When loading, Redis recognizes that the AOF file starts with the "REDIS" +# string and loads the prefixed RDB file, then continues loading the AOF +# tail. +aof-use-rdb-preamble yes + +################################ LUA SCRIPTING ############################### + +# Max execution time of a Lua script in milliseconds. +# +# If the maximum execution time is reached Redis will log that a script is +# still in execution after the maximum allowed time and will start to +# reply to queries with an error. +# +# When a long running script exceeds the maximum execution time only the +# SCRIPT KILL and SHUTDOWN NOSAVE commands are available. The first can be +# used to stop a script that did not yet call any write commands. The second +# is the only way to shut down the server in the case a write command was +# already issued by the script but the user doesn't want to wait for the natural +# termination of the script. +# +# Set it to 0 or a negative value for unlimited execution without warnings. +lua-time-limit 5000 + +################################ REDIS CLUSTER ############################### + +# Normal Redis instances can't be part of a Redis Cluster; only nodes that are +# started as cluster nodes can. In order to start a Redis instance as a +# cluster node enable the cluster support uncommenting the following: +# +# cluster-enabled yes + +# Every cluster node has a cluster configuration file. This file is not +# intended to be edited by hand. It is created and updated by Redis nodes. +# Every Redis Cluster node requires a different cluster configuration file. +# Make sure that instances running in the same system do not have +# overlapping cluster configuration file names. +# +# cluster-config-file nodes-6379.conf + +# Cluster node timeout is the amount of milliseconds a node must be unreachable +# for it to be considered in failure state. +# Most other internal time limits are a multiple of the node timeout. +# +# cluster-node-timeout 15000 + +# A replica of a failing master will avoid to start a failover if its data +# looks too old. +# +# There is no simple way for a replica to actually have an exact measure of +# its "data age", so the following two checks are performed: +# +# 1) If there are multiple replicas able to failover, they exchange messages +# in order to try to give an advantage to the replica with the best +# replication offset (more data from the master processed). +# Replicas will try to get their rank by offset, and apply to the start +# of the failover a delay proportional to their rank. +# +# 2) Every single replica computes the time of the last interaction with +# its master. This can be the last ping or command received (if the master +# is still in the "connected" state), or the time that elapsed since the +# disconnection with the master (if the replication link is currently down). +# If the last interaction is too old, the replica will not try to failover +# at all. +# +# The point "2" can be tuned by user. Specifically a replica will not perform +# the failover if, since the last interaction with the master, the time +# elapsed is greater than: +# +# (node-timeout * cluster-replica-validity-factor) + repl-ping-replica-period +# +# So for example if node-timeout is 30 seconds, and the cluster-replica-validity-factor +# is 10, and assuming a default repl-ping-replica-period of 10 seconds, the +# replica will not try to failover if it was not able to talk with the master +# for longer than 310 seconds. +# +# A large cluster-replica-validity-factor may allow replicas with too old data to failover +# a master, while a too small value may prevent the cluster from being able to +# elect a replica at all. +# +# For maximum availability, it is possible to set the cluster-replica-validity-factor +# to a value of 0, which means, that replicas will always try to failover the +# master regardless of the last time they interacted with the master. +# (However they'll always try to apply a delay proportional to their +# offset rank). +# +# Zero is the only value able to guarantee that when all the partitions heal +# the cluster will always be able to continue. +# +# cluster-replica-validity-factor 10 + +# Cluster replicas are able to migrate to orphaned masters, that are masters +# that are left without working replicas. This improves the cluster ability +# to resist to failures as otherwise an orphaned master can't be failed over +# in case of failure if it has no working replicas. +# +# Replicas migrate to orphaned masters only if there are still at least a +# given number of other working replicas for their old master. This number +# is the "migration barrier". A migration barrier of 1 means that a replica +# will migrate only if there is at least 1 other working replica for its master +# and so forth. It usually reflects the number of replicas you want for every +# master in your cluster. +# +# Default is 1 (replicas migrate only if their masters remain with at least +# one replica). To disable migration just set it to a very large value or +# set cluster-allow-replica-migration to 'no'. +# A value of 0 can be set but is useful only for debugging and dangerous +# in production. +# +# cluster-migration-barrier 1 + +# Turning off this option allows to use less automatic cluster configuration. +# It both disables migration to orphaned masters and migration from masters +# that became empty. +# +# Default is 'yes' (allow automatic migrations). +# +# cluster-allow-replica-migration yes + +# By default Redis Cluster nodes stop accepting queries if they detect there +# is at least a hash slot uncovered (no available node is serving it). +# This way if the cluster is partially down (for example a range of hash slots +# are no longer covered) all the cluster becomes, eventually, unavailable. +# It automatically returns available as soon as all the slots are covered again. +# +# However sometimes you want the subset of the cluster which is working, +# to continue to accept queries for the part of the key space that is still +# covered. In order to do so, just set the cluster-require-full-coverage +# option to no. +# +# cluster-require-full-coverage yes + +# This option, when set to yes, prevents replicas from trying to failover its +# master during master failures. However the replica can still perform a +# manual failover, if forced to do so. +# +# This is useful in different scenarios, especially in the case of multiple +# data center operations, where we want one side to never be promoted if not +# in the case of a total DC failure. +# +# cluster-replica-no-failover no + +# This option, when set to yes, allows nodes to serve read traffic while the +# the cluster is in a down state, as long as it believes it owns the slots. +# +# This is useful for two cases. The first case is for when an application +# doesn't require consistency of data during node failures or network partitions. +# One example of this is a cache, where as long as the node has the data it +# should be able to serve it. +# +# The second use case is for configurations that don't meet the recommended +# three shards but want to enable cluster mode and scale later. A +# master outage in a 1 or 2 shard configuration causes a read/write outage to the +# entire cluster without this option set, with it set there is only a write outage. +# Without a quorum of masters, slot ownership will not change automatically. +# +# cluster-allow-reads-when-down no + +# In order to setup your cluster make sure to read the documentation +# available at https://redis.io web site. + +########################## CLUSTER DOCKER/NAT support ######################## + +# In certain deployments, Redis Cluster nodes address discovery fails, because +# addresses are NAT-ted or because ports are forwarded (the typical case is +# Docker and other containers). +# +# In order to make Redis Cluster working in such environments, a static +# configuration where each node knows its public address is needed. The +# following four options are used for this scope, and are: +# +# * cluster-announce-ip +# * cluster-announce-port +# * cluster-announce-tls-port +# * cluster-announce-bus-port +# +# Each instructs the node about its address, client ports (for connections +# without and with TLS) and cluster message bus port. The information is then +# published in the header of the bus packets so that other nodes will be able to +# correctly map the address of the node publishing the information. +# +# If cluster-tls is set to yes and cluster-announce-tls-port is omitted or set +# to zero, then cluster-announce-port refers to the TLS port. Note also that +# cluster-announce-tls-port has no effect if cluster-tls is set to no. +# +# If the above options are not used, the normal Redis Cluster auto-detection +# will be used instead. +# +# Note that when remapped, the bus port may not be at the fixed offset of +# clients port + 10000, so you can specify any port and bus-port depending +# on how they get remapped. If the bus-port is not set, a fixed offset of +# 10000 will be used as usual. +# +# Example: +# +# cluster-announce-ip 10.1.1.5 +# cluster-announce-tls-port 6379 +# cluster-announce-port 0 +# cluster-announce-bus-port 6380 + +################################## SLOW LOG ################################### + +# The Redis Slow Log is a system to log queries that exceeded a specified +# execution time. The execution time does not include the I/O operations +# like talking with the client, sending the reply and so forth, +# but just the time needed to actually execute the command (this is the only +# stage of command execution where the thread is blocked and can not serve +# other requests in the meantime). +# +# You can configure the slow log with two parameters: one tells Redis +# what is the execution time, in microseconds, to exceed in order for the +# command to get logged, and the other parameter is the length of the +# slow log. When a new command is logged the oldest one is removed from the +# queue of logged commands. + +# The following time is expressed in microseconds, so 1000000 is equivalent +# to one second. Note that a negative number disables the slow log, while +# a value of zero forces the logging of every command. +slowlog-log-slower-than 10000 + +# There is no limit to this length. Just be aware that it will consume memory. +# You can reclaim memory used by the slow log with SLOWLOG RESET. +slowlog-max-len 128 + +################################ LATENCY MONITOR ############################## + +# The Redis latency monitoring subsystem samples different operations +# at runtime in order to collect data related to possible sources of +# latency of a Redis instance. +# +# Via the LATENCY command this information is available to the user that can +# print graphs and obtain reports. +# +# The system only logs operations that were performed in a time equal or +# greater than the amount of milliseconds specified via the +# latency-monitor-threshold configuration directive. When its value is set +# to zero, the latency monitor is turned off. +# +# By default latency monitoring is disabled since it is mostly not needed +# if you don't have latency issues, and collecting data has a performance +# impact, that while very small, can be measured under big load. Latency +# monitoring can easily be enabled at runtime using the command +# "CONFIG SET latency-monitor-threshold " if needed. +latency-monitor-threshold 0 + +############################# EVENT NOTIFICATION ############################## + +# Redis can notify Pub/Sub clients about events happening in the key space. +# This feature is documented at https://redis.io/topics/notifications +# +# For instance if keyspace events notification is enabled, and a client +# performs a DEL operation on key "foo" stored in the Database 0, two +# messages will be published via Pub/Sub: +# +# PUBLISH __keyspace@0__:foo del +# PUBLISH __keyevent@0__:del foo +# +# It is possible to select the events that Redis will notify among a set +# of classes. Every class is identified by a single character: +# +# K Keyspace events, published with __keyspace@__ prefix. +# E Keyevent events, published with __keyevent@__ prefix. +# g Generic commands (non-type specific) like DEL, EXPIRE, RENAME, ... +# $ String commands +# l List commands +# s Set commands +# h Hash commands +# z Sorted set commands +# x Expired events (events generated every time a key expires) +# e Evicted events (events generated when a key is evicted for maxmemory) +# t Stream commands +# d Module key type events +# m Key-miss events (Note: It is not included in the 'A' class) +# A Alias for g$lshzxetd, so that the "AKE" string means all the events +# (Except key-miss events which are excluded from 'A' due to their +# unique nature). +# +# The "notify-keyspace-events" takes as argument a string that is composed +# of zero or multiple characters. The empty string means that notifications +# are disabled. +# +# Example: to enable list and generic events, from the point of view of the +# event name, use: +# +# notify-keyspace-events Elg +# +# Example 2: to get the stream of the expired keys subscribing to channel +# name __keyevent@0__:expired use: +# +# notify-keyspace-events Ex +# +# By default all notifications are disabled because most users don't need +# this feature and the feature has some overhead. Note that if you don't +# specify at least one of K or E, no events will be delivered. +notify-keyspace-events "" + +############################### GOPHER SERVER ################################# + +# Redis contains an implementation of the Gopher protocol, as specified in +# the RFC 1436 (https://www.ietf.org/rfc/rfc1436.txt). +# +# The Gopher protocol was very popular in the late '90s. It is an alternative +# to the web, and the implementation both server and client side is so simple +# that the Redis server has just 100 lines of code in order to implement this +# support. +# +# What do you do with Gopher nowadays? Well Gopher never *really* died, and +# lately there is a movement in order for the Gopher more hierarchical content +# composed of just plain text documents to be resurrected. Some want a simpler +# internet, others believe that the mainstream internet became too much +# controlled, and it's cool to create an alternative space for people that +# want a bit of fresh air. +# +# Anyway for the 10nth birthday of the Redis, we gave it the Gopher protocol +# as a gift. +# +# --- HOW IT WORKS? --- +# +# The Redis Gopher support uses the inline protocol of Redis, and specifically +# two kind of inline requests that were anyway illegal: an empty request +# or any request that starts with "/" (there are no Redis commands starting +# with such a slash). Normal RESP2/RESP3 requests are completely out of the +# path of the Gopher protocol implementation and are served as usual as well. +# +# If you open a connection to Redis when Gopher is enabled and send it +# a string like "/foo", if there is a key named "/foo" it is served via the +# Gopher protocol. +# +# In order to create a real Gopher "hole" (the name of a Gopher site in Gopher +# talking), you likely need a script like the following: +# +# https://github.com/antirez/gopher2redis +# +# --- SECURITY WARNING --- +# +# If you plan to put Redis on the internet in a publicly accessible address +# to server Gopher pages MAKE SURE TO SET A PASSWORD to the instance. +# Once a password is set: +# +# 1. The Gopher server (when enabled, not by default) will still serve +# content via Gopher. +# 2. However other commands cannot be called before the client will +# authenticate. +# +# So use the 'requirepass' option to protect your instance. +# +# Note that Gopher is not currently supported when 'io-threads-do-reads' +# is enabled. +# +# To enable Gopher support, uncomment the following line and set the option +# from no (the default) to yes. +# +# gopher-enabled no + +############################### ADVANCED CONFIG ############################### + +# Hashes are encoded using a memory efficient data structure when they have a +# small number of entries, and the biggest entry does not exceed a given +# threshold. These thresholds can be configured using the following directives. +hash-max-ziplist-entries 512 +hash-max-ziplist-value 64 + +# Lists are also encoded in a special way to save a lot of space. +# The number of entries allowed per internal list node can be specified +# as a fixed maximum size or a maximum number of elements. +# For a fixed maximum size, use -5 through -1, meaning: +# -5: max size: 64 Kb <-- not recommended for normal workloads +# -4: max size: 32 Kb <-- not recommended +# -3: max size: 16 Kb <-- probably not recommended +# -2: max size: 8 Kb <-- good +# -1: max size: 4 Kb <-- good +# Positive numbers mean store up to _exactly_ that number of elements +# per list node. +# The highest performing option is usually -2 (8 Kb size) or -1 (4 Kb size), +# but if your use case is unique, adjust the settings as necessary. +list-max-ziplist-size -2 + +# Lists may also be compressed. +# Compress depth is the number of quicklist ziplist nodes from *each* side of +# the list to *exclude* from compression. The head and tail of the list +# are always uncompressed for fast push/pop operations. Settings are: +# 0: disable all list compression +# 1: depth 1 means "don't start compressing until after 1 node into the list, +# going from either the head or tail" +# So: [head]->node->node->...->node->[tail] +# [head], [tail] will always be uncompressed; inner nodes will compress. +# 2: [head]->[next]->node->node->...->node->[prev]->[tail] +# 2 here means: don't compress head or head->next or tail->prev or tail, +# but compress all nodes between them. +# 3: [head]->[next]->[next]->node->node->...->node->[prev]->[prev]->[tail] +# etc. +list-compress-depth 0 + +# Sets have a special encoding in just one case: when a set is composed +# of just strings that happen to be integers in radix 10 in the range +# of 64 bit signed integers. +# The following configuration setting sets the limit in the size of the +# set in order to use this special memory saving encoding. +set-max-intset-entries 512 + +# Similarly to hashes and lists, sorted sets are also specially encoded in +# order to save a lot of space. This encoding is only used when the length and +# elements of a sorted set are below the following limits: +zset-max-ziplist-entries 128 +zset-max-ziplist-value 64 + +# HyperLogLog sparse representation bytes limit. The limit includes the +# 16 bytes header. When an HyperLogLog using the sparse representation crosses +# this limit, it is converted into the dense representation. +# +# A value greater than 16000 is totally useless, since at that point the +# dense representation is more memory efficient. +# +# The suggested value is ~ 3000 in order to have the benefits of +# the space efficient encoding without slowing down too much PFADD, +# which is O(N) with the sparse encoding. The value can be raised to +# ~ 10000 when CPU is not a concern, but space is, and the data set is +# composed of many HyperLogLogs with cardinality in the 0 - 15000 range. +hll-sparse-max-bytes 3000 + +# Streams macro node max size / items. The stream data structure is a radix +# tree of big nodes that encode multiple items inside. Using this configuration +# it is possible to configure how big a single node can be in bytes, and the +# maximum number of items it may contain before switching to a new node when +# appending new stream entries. If any of the following settings are set to +# zero, the limit is ignored, so for instance it is possible to set just a +# max entries limit by setting max-bytes to 0 and max-entries to the desired +# value. +stream-node-max-bytes 4096 +stream-node-max-entries 100 + +# Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in +# order to help rehashing the main Redis hash table (the one mapping top-level +# keys to values). The hash table implementation Redis uses (see dict.c) +# performs a lazy rehashing: the more operation you run into a hash table +# that is rehashing, the more rehashing "steps" are performed, so if the +# server is idle the rehashing is never complete and some more memory is used +# by the hash table. +# +# The default is to use this millisecond 10 times every second in order to +# actively rehash the main dictionaries, freeing memory when possible. +# +# If unsure: +# use "activerehashing no" if you have hard latency requirements and it is +# not a good thing in your environment that Redis can reply from time to time +# to queries with 2 milliseconds delay. +# +# use "activerehashing yes" if you don't have such hard requirements but +# want to free memory asap when possible. +activerehashing yes + +# The client output buffer limits can be used to force disconnection of clients +# that are not reading data from the server fast enough for some reason (a +# common reason is that a Pub/Sub client can't consume messages as fast as the +# publisher can produce them). +# +# The limit can be set differently for the three different classes of clients: +# +# normal -> normal clients including MONITOR clients +# replica -> replica clients +# pubsub -> clients subscribed to at least one pubsub channel or pattern +# +# The syntax of every client-output-buffer-limit directive is the following: +# +# client-output-buffer-limit +# +# A client is immediately disconnected once the hard limit is reached, or if +# the soft limit is reached and remains reached for the specified number of +# seconds (continuously). +# So for instance if the hard limit is 32 megabytes and the soft limit is +# 16 megabytes / 10 seconds, the client will get disconnected immediately +# if the size of the output buffers reach 32 megabytes, but will also get +# disconnected if the client reaches 16 megabytes and continuously overcomes +# the limit for 10 seconds. +# +# By default normal clients are not limited because they don't receive data +# without asking (in a push way), but just after a request, so only +# asynchronous clients may create a scenario where data is requested faster +# than it can read. +# +# Instead there is a default limit for pubsub and replica clients, since +# subscribers and replicas receive data in a push fashion. +# +# Both the hard or the soft limit can be disabled by setting them to zero. +client-output-buffer-limit normal 0 0 0 +client-output-buffer-limit replica 256mb 64mb 60 +client-output-buffer-limit pubsub 32mb 8mb 60 + +# Client query buffers accumulate new commands. They are limited to a fixed +# amount by default in order to avoid that a protocol desynchronization (for +# instance due to a bug in the client) will lead to unbound memory usage in +# the query buffer. However you can configure it here if you have very special +# needs, such us huge multi/exec requests or alike. +# +# client-query-buffer-limit 1gb + +# In the Redis protocol, bulk requests, that are, elements representing single +# strings, are normally limited to 512 mb. However you can change this limit +# here, but must be 1mb or greater +# +# proto-max-bulk-len 512mb + +# Redis calls an internal function to perform many background tasks, like +# closing connections of clients in timeout, purging expired keys that are +# never requested, and so forth. +# +# Not all tasks are performed with the same frequency, but Redis checks for +# tasks to perform according to the specified "hz" value. +# +# By default "hz" is set to 10. Raising the value will use more CPU when +# Redis is idle, but at the same time will make Redis more responsive when +# there are many keys expiring at the same time, and timeouts may be +# handled with more precision. +# +# The range is between 1 and 500, however a value over 100 is usually not +# a good idea. Most users should use the default of 10 and raise this up to +# 100 only in environments where very low latency is required. +hz 10 + +# Normally it is useful to have an HZ value which is proportional to the +# number of clients connected. This is useful in order, for instance, to +# avoid too many clients are processed for each background task invocation +# in order to avoid latency spikes. +# +# Since the default HZ value by default is conservatively set to 10, Redis +# offers, and enables by default, the ability to use an adaptive HZ value +# which will temporarily raise when there are many connected clients. +# +# When dynamic HZ is enabled, the actual configured HZ will be used +# as a baseline, but multiples of the configured HZ value will be actually +# used as needed once more clients are connected. In this way an idle +# instance will use very little CPU time while a busy instance will be +# more responsive. +dynamic-hz yes + +# When a child rewrites the AOF file, if the following option is enabled +# the file will be fsync-ed every 32 MB of data generated. This is useful +# in order to commit the file to the disk more incrementally and avoid +# big latency spikes. +aof-rewrite-incremental-fsync yes + +# When redis saves RDB file, if the following option is enabled +# the file will be fsync-ed every 32 MB of data generated. This is useful +# in order to commit the file to the disk more incrementally and avoid +# big latency spikes. +rdb-save-incremental-fsync yes + +# Redis LFU eviction (see maxmemory setting) can be tuned. However it is a good +# idea to start with the default settings and only change them after investigating +# how to improve the performances and how the keys LFU change over time, which +# is possible to inspect via the OBJECT FREQ command. +# +# There are two tunable parameters in the Redis LFU implementation: the +# counter logarithm factor and the counter decay time. It is important to +# understand what the two parameters mean before changing them. +# +# The LFU counter is just 8 bits per key, it's maximum value is 255, so Redis +# uses a probabilistic increment with logarithmic behavior. Given the value +# of the old counter, when a key is accessed, the counter is incremented in +# this way: +# +# 1. A random number R between 0 and 1 is extracted. +# 2. A probability P is calculated as 1/(old_value*lfu_log_factor+1). +# 3. The counter is incremented only if R < P. +# +# The default lfu-log-factor is 10. This is a table of how the frequency +# counter changes with a different number of accesses with different +# logarithmic factors: +# +# +--------+------------+------------+------------+------------+------------+ +# | factor | 100 hits | 1000 hits | 100K hits | 1M hits | 10M hits | +# +--------+------------+------------+------------+------------+------------+ +# | 0 | 104 | 255 | 255 | 255 | 255 | +# +--------+------------+------------+------------+------------+------------+ +# | 1 | 18 | 49 | 255 | 255 | 255 | +# +--------+------------+------------+------------+------------+------------+ +# | 10 | 10 | 18 | 142 | 255 | 255 | +# +--------+------------+------------+------------+------------+------------+ +# | 100 | 8 | 11 | 49 | 143 | 255 | +# +--------+------------+------------+------------+------------+------------+ +# +# NOTE: The above table was obtained by running the following commands: +# +# redis-benchmark -n 1000000 incr foo +# redis-cli object freq foo +# +# NOTE 2: The counter initial value is 5 in order to give new objects a chance +# to accumulate hits. +# +# The counter decay time is the time, in minutes, that must elapse in order +# for the key counter to be divided by two (or decremented if it has a value +# less <= 10). +# +# The default value for the lfu-decay-time is 1. A special value of 0 means to +# decay the counter every time it happens to be scanned. +# +# lfu-log-factor 10 +# lfu-decay-time 1 + +########################### ACTIVE DEFRAGMENTATION ####################### +# +# What is active defragmentation? +# ------------------------------- +# +# Active (online) defragmentation allows a Redis server to compact the +# spaces left between small allocations and deallocations of data in memory, +# thus allowing to reclaim back memory. +# +# Fragmentation is a natural process that happens with every allocator (but +# less so with Jemalloc, fortunately) and certain workloads. Normally a server +# restart is needed in order to lower the fragmentation, or at least to flush +# away all the data and create it again. However thanks to this feature +# implemented by Oran Agra for Redis 4.0 this process can happen at runtime +# in a "hot" way, while the server is running. +# +# Basically when the fragmentation is over a certain level (see the +# configuration options below) Redis will start to create new copies of the +# values in contiguous memory regions by exploiting certain specific Jemalloc +# features (in order to understand if an allocation is causing fragmentation +# and to allocate it in a better place), and at the same time, will release the +# old copies of the data. This process, repeated incrementally for all the keys +# will cause the fragmentation to drop back to normal values. +# +# Important things to understand: +# +# 1. This feature is disabled by default, and only works if you compiled Redis +# to use the copy of Jemalloc we ship with the source code of Redis. +# This is the default with Linux builds. +# +# 2. You never need to enable this feature if you don't have fragmentation +# issues. +# +# 3. Once you experience fragmentation, you can enable this feature when +# needed with the command "CONFIG SET activedefrag yes". +# +# The configuration parameters are able to fine tune the behavior of the +# defragmentation process. If you are not sure about what they mean it is +# a good idea to leave the defaults untouched. + +# Enabled active defragmentation +# activedefrag no + +# Minimum amount of fragmentation waste to start active defrag +# active-defrag-ignore-bytes 100mb + +# Minimum percentage of fragmentation to start active defrag +# active-defrag-threshold-lower 10 + +# Maximum percentage of fragmentation at which we use maximum effort +# active-defrag-threshold-upper 100 + +# Minimal effort for defrag in CPU percentage, to be used when the lower +# threshold is reached +# active-defrag-cycle-min 1 + +# Maximal effort for defrag in CPU percentage, to be used when the upper +# threshold is reached +# active-defrag-cycle-max 25 + +# Maximum number of set/hash/zset/list fields that will be processed from +# the main dictionary scan +# active-defrag-max-scan-fields 1000 + +# Jemalloc background thread for purging will be enabled by default +jemalloc-bg-thread yes + +# It is possible to pin different threads and processes of Redis to specific +# CPUs in your system, in order to maximize the performances of the server. +# This is useful both in order to pin different Redis threads in different +# CPUs, but also in order to make sure that multiple Redis instances running +# in the same host will be pinned to different CPUs. +# +# Normally you can do this using the "taskset" command, however it is also +# possible to this via Redis configuration directly, both in Linux and FreeBSD. +# +# You can pin the server/IO threads, bio threads, aof rewrite child process, and +# the bgsave child process. The syntax to specify the cpu list is the same as +# the taskset command: +# +# Set redis server/io threads to cpu affinity 0,2,4,6: +# server_cpulist 0-7:2 +# +# Set bio threads to cpu affinity 1,3: +# bio_cpulist 1,3 +# +# Set aof rewrite child process to cpu affinity 8,9,10,11: +# aof_rewrite_cpulist 8-11 +# +# Set bgsave child process to cpu affinity 1,10,11 +# bgsave_cpulist 1,10-11 + +# In some cases redis will emit warnings and even refuse to start if it detects +# that the system is in bad state, it is possible to suppress these warnings +# by setting the following config which takes a space delimited list of warnings +# to suppress +# +ignore-warnings ARM64-COW-BUG diff --git a/metersphere/3.0.0-beta/mount/conf/redisson.yml b/metersphere/3.0.0-beta/mount/conf/redisson.yml new file mode 100755 index 000000000..280650d92 --- /dev/null +++ b/metersphere/3.0.0-beta/mount/conf/redisson.yml @@ -0,0 +1,6 @@ +singleServerConfig: + password: + address: "redis://127.0.0.1:6379" + database: 0 +threads: 4 +nettyThreads: 8 \ No newline at end of file diff --git a/metersphere/3.0.0-beta/mount/data/.gitkeep b/metersphere/3.0.0-beta/mount/data/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/metersphere/3.0.0-beta/mount/logs/.gitkeep b/metersphere/3.0.0-beta/mount/logs/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/metersphere/3.0.0-beta/scripts/init.sh b/metersphere/3.0.0-beta/scripts/init.sh new file mode 100644 index 000000000..1a5fed6e7 --- /dev/null +++ b/metersphere/3.0.0-beta/scripts/init.sh @@ -0,0 +1,4 @@ +#!/bin/bash + + +chmod 777 mount/logs \ No newline at end of file diff --git a/metersphere/README.md b/metersphere/README.md new file mode 100644 index 000000000..745a94640 --- /dev/null +++ b/metersphere/README.md @@ -0,0 +1,10 @@ +# MeterSphere + +MeterSphere 是新一代的测试管理和接口测试工具,让测试工作更简单、更高效,不再成为持续交付的瓶颈。 + + + +## 主要功能: + +- 测试管理: 从测试用例管理,到测试计划执行、缺陷管理、测试报告生成,具有远超禅道和 TestLink 的使用体验; +- 接口测试: 集 Postman 的易用与 JMeter 的灵活于一体,接口定义、接口调试、接口 Mock、场景自动化、接口报告,你想要的都有。 \ No newline at end of file diff --git a/metersphere/data.yml b/metersphere/data.yml new file mode 100644 index 000000000..b6cca1fd5 --- /dev/null +++ b/metersphere/data.yml @@ -0,0 +1,20 @@ +name: MeterSphere +tags: + - 实用工具 +title: MeterSphere 新一代的测试管理和接口测试工具 +type: 实用工具 +description: MeterSphere 新一代的测试管理和接口测试工具 +additionalProperties: + key: metersphere + name: MeterSphere + tags: + - Tool + shortDescZh: 新一代的测试管理和接口测试工具 + shortDescEn: Open-source Continuous Testing Platform + type: tool + crossVersionUpdate: true + limit: 1 + recommend: 9 + website: https://www.metersphere.io + github: https://github.com/metersphere/metersphere + document: https://metersphere.io/docs \ No newline at end of file diff --git a/metersphere/logo.png b/metersphere/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..15fb97a69325b4766cb9af2f854ded18ec3fa527 GIT binary patch literal 106910 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%0DuU>UjeYxe4)_IoFB*~sCt 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