mirror of https://github.com/docker/cli.git
cli: Add options for Raft snapshotting
Add the following options to "swarm init" and "swarm update": - --max-snapshots: Retain this many old Raft snapshots in addition to the latest one - --snapshot-interval: Number of log entries between Raft snapshots These options already existed in SwarmKit and the Docker API but were never exposed in the CLI. I'm adding them here to fix this oversight. --max-snapshots may be useful for debugging purposes and more conservative users who want to store rolling backups of old versions of the Raft state. --snapshot-interval is most useful for performance tuning. The default value of 10000 may not be ideal for some setups. There is also a LogEntriesForSlowFollowers option that is not exposed. I decided not to expose it along with these others because I don't think it's generally useful (and I'm not sure what I would call the CLI flag). But if people want, I can expose it for the sake of completeness. Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
This commit is contained in:
parent
6355071b17
commit
49b6be893c
|
@ -2841,14 +2841,14 @@ _docker_swarm_leave() {
|
||||||
|
|
||||||
_docker_swarm_update() {
|
_docker_swarm_update() {
|
||||||
case "$prev" in
|
case "$prev" in
|
||||||
--cert-expiry|--dispatcher-heartbeat|--task-history-limit)
|
--cert-expiry|--dispatcher-heartbeat|--max-snapshots|--snapshot-interval|--task-history-limit)
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
-*)
|
-*)
|
||||||
COMPREPLY=( $( compgen -W "--cert-expiry --dispatcher-heartbeat --help --task-history-limit" -- "$cur" ) )
|
COMPREPLY=( $( compgen -W "--cert-expiry --dispatcher-heartbeat --help --max-snapshots --snapshot-interval --task-history-limit" -- "$cur" ) )
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
|
@ -1630,7 +1630,10 @@ __docker_swarm_subcommand() {
|
||||||
"($help)--advertise-addr[Advertised address]:ip\:port: " \
|
"($help)--advertise-addr[Advertised address]:ip\:port: " \
|
||||||
"($help)*--external-ca=[Specifications of one or more certificate signing endpoints]:endpoint: " \
|
"($help)*--external-ca=[Specifications of one or more certificate signing endpoints]:endpoint: " \
|
||||||
"($help)--force-new-cluster[Force create a new cluster from current state]" \
|
"($help)--force-new-cluster[Force create a new cluster from current state]" \
|
||||||
"($help)--listen-addr=[Listen address]:ip\:port: " && ret=0
|
"($help)--listen-addr=[Listen address]:ip\:port: " \
|
||||||
|
"($help)--max-snapshots[Number of additional Raft snapshots to retain]" \
|
||||||
|
"($help)--snapshot-interval[Number of log entries between Raft snapshots]" \
|
||||||
|
"($help)--task-history-limit=[Task history retention limit]:limit: " && ret=0
|
||||||
;;
|
;;
|
||||||
(join)
|
(join)
|
||||||
_arguments $(__docker_arguments) \
|
_arguments $(__docker_arguments) \
|
||||||
|
@ -1655,7 +1658,10 @@ __docker_swarm_subcommand() {
|
||||||
_arguments $(__docker_arguments) \
|
_arguments $(__docker_arguments) \
|
||||||
$opts_help \
|
$opts_help \
|
||||||
"($help)--cert-expiry=[Validity period for node certificates]:duration: " \
|
"($help)--cert-expiry=[Validity period for node certificates]:duration: " \
|
||||||
|
"($help)*--external-ca=[Specifications of one or more certificate signing endpoints]:endpoint: " \
|
||||||
"($help)--dispatcher-heartbeat=[Dispatcher heartbeat period]:duration: " \
|
"($help)--dispatcher-heartbeat=[Dispatcher heartbeat period]:duration: " \
|
||||||
|
"($help)--max-snapshots[Number of additional Raft snapshots to retain]" \
|
||||||
|
"($help)--snapshot-interval[Number of log entries between Raft snapshots]" \
|
||||||
"($help)--task-history-limit=[Task history retention limit]:limit: " && ret=0
|
"($help)--task-history-limit=[Task history retention limit]:limit: " && ret=0
|
||||||
;;
|
;;
|
||||||
(help)
|
(help)
|
||||||
|
|
|
@ -28,6 +28,8 @@ Options:
|
||||||
--force-new-cluster Force create a new cluster from current state
|
--force-new-cluster Force create a new cluster from current state
|
||||||
--help Print usage
|
--help Print usage
|
||||||
--listen-addr value Listen address (format: <ip|interface>[:port])
|
--listen-addr value Listen address (format: <ip|interface>[:port])
|
||||||
|
--max-snapshots int Number of additional Raft snapshots to retain
|
||||||
|
--snapshot-interval int Number of log entries between Raft snapshots
|
||||||
--task-history-limit int Task history retention limit (default 5)
|
--task-history-limit int Task history retention limit (default 5)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -64,7 +66,7 @@ This flag sets the validity period for node certificates.
|
||||||
This flags sets the frequency with which nodes are told to use as a
|
This flags sets the frequency with which nodes are told to use as a
|
||||||
period to report their health.
|
period to report their health.
|
||||||
|
|
||||||
### `--external-ca value`
|
### `--external-ca`
|
||||||
|
|
||||||
This flag sets up the swarm to use an external CA to issue node certificates. The value takes
|
This flag sets up the swarm to use an external CA to issue node certificates. The value takes
|
||||||
the form `protocol=X,url=Y`. The value for `protocol` specifies what protocol should be used
|
the form `protocol=X,url=Y`. The value for `protocol` specifies what protocol should be used
|
||||||
|
@ -75,7 +77,7 @@ The URL specifies the endpoint where signing requests should be submitted.
|
||||||
|
|
||||||
This flag forces an existing node that was part of a quorum that was lost to restart as a single node Manager without losing its data.
|
This flag forces an existing node that was part of a quorum that was lost to restart as a single node Manager without losing its data.
|
||||||
|
|
||||||
### `--listen-addr value`
|
### `--listen-addr`
|
||||||
|
|
||||||
The node listens for inbound swarm manager traffic on this address. The default is to listen on
|
The node listens for inbound swarm manager traffic on this address. The default is to listen on
|
||||||
0.0.0.0:2377. It is also possible to specify a network interface to listen on that interface's
|
0.0.0.0:2377. It is also possible to specify a network interface to listen on that interface's
|
||||||
|
@ -84,7 +86,7 @@ address; for example `--listen-addr eth0:2377`.
|
||||||
Specifying a port is optional. If the value is a bare IP address or interface
|
Specifying a port is optional. If the value is a bare IP address or interface
|
||||||
name, the default port 2377 will be used.
|
name, the default port 2377 will be used.
|
||||||
|
|
||||||
### `--advertise-addr value`
|
### `--advertise-addr`
|
||||||
|
|
||||||
This flag specifies the address that will be advertised to other members of the
|
This flag specifies the address that will be advertised to other members of the
|
||||||
swarm for API access and overlay networking. If unspecified, Docker will check
|
swarm for API access and overlay networking. If unspecified, Docker will check
|
||||||
|
@ -103,6 +105,21 @@ name, the default port 2377 will be used.
|
||||||
|
|
||||||
This flag sets up task history retention limit.
|
This flag sets up task history retention limit.
|
||||||
|
|
||||||
|
### `--max-snapshots`
|
||||||
|
|
||||||
|
This flag sets the number of old Raft snapshots to retain in addition to the
|
||||||
|
current Raft snapshots. By default, no old snapshots are retained. This option
|
||||||
|
may be used for debugging, or to store old snapshots of the swarm state for
|
||||||
|
disaster recovery purposes.
|
||||||
|
|
||||||
|
### `--snapshot-interval`
|
||||||
|
|
||||||
|
This flag specifies how many log entries to allow in between Raft snapshots.
|
||||||
|
Setting this to a higher number will trigger snapshots less frequently.
|
||||||
|
Snapshots compact the Raft log and allow for more efficient transfer of the
|
||||||
|
state to new managers. However, there is a performance cost to taking snapshots
|
||||||
|
frequently.
|
||||||
|
|
||||||
## Related information
|
## Related information
|
||||||
|
|
||||||
* [swarm join](swarm_join.md)
|
* [swarm join](swarm_join.md)
|
||||||
|
|
|
@ -25,6 +25,8 @@ Options:
|
||||||
--dispatcher-heartbeat duration Dispatcher heartbeat period (default 5s)
|
--dispatcher-heartbeat duration Dispatcher heartbeat period (default 5s)
|
||||||
--external-ca value Specifications of one or more certificate signing endpoints
|
--external-ca value Specifications of one or more certificate signing endpoints
|
||||||
--help Print usage
|
--help Print usage
|
||||||
|
--max-snapshots int Number of additional Raft snapshots to retain
|
||||||
|
--snapshot-interval int Number of log entries between Raft snapshots
|
||||||
--task-history-limit int Task history retention limit (default 5)
|
--task-history-limit int Task history retention limit (default 5)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue