Skip to content
Snippets Groups Projects
Verified Commit 393fc34d authored by Chris Croome's avatar Chris Croome
Browse files

add missing argspec entries

parent 27456bcb
No related branches found
No related tags found
No related merge requests found
Pipeline #37010 failed
......@@ -344,6 +344,14 @@ argument_specs:
type: bool
required: false
description: With slow disks and fast (large bandwidth) networks, diskless replication works better.
repl_diskless_sync_delay:
type: int
required: false
description: 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_max_replicas:
type: int
required: true
description: When diskless replication is enabled with a delay, it is possible to let the replication start before the maximum delay is reached if the maximum number of replicas expected have connected. Default of 0 means that the maximum is not defined and the server will wait the full delay.
repl_diskless_load:
type: str
choices:
......@@ -1012,6 +1020,10 @@ argument_specs:
type: int
required: false
description: Sets containing non-integer values are also 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. The default value is 128.
set_max_listpack_entries:
type: int
required: false
description: Sets containing non-integer values are also 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. The default value is 64.
set_max_listpack_value:
type: int
required: false
......@@ -1065,6 +1077,10 @@ argument_specs:
type: bool
required: false
description: Normally it is useful to have an HZ value which is proportional to the number of clients connected. Since the default HZ value by default is conservatively set to 10, the server offers, and enables by default, the ability to use an adaptive HZ value which will temporarily raise when there are many connected clients.
aof-rewrite-incremental-fsync:
type: bool
required: false
description: When a child rewrites the AOF file, if the following option is enabled the file will be fsync-ed every 4 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:
type: bool
required: false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment