灾难回复
In the event of unrecoverable JetStream message persistence on one (or more) server nodes, there are two recovery scenarios:
Automatic recovery from intact quorum nodes
Manual recovery from existing stream snapshots (backups)
For R1 streams, data is persisted on one server node only. If that server node is unrecoverable then recovery from backup is the sole option.
Automatic Recovery
NATS will create replacement stream replicas automatically under the following conditions:
Impacted stream is of replica configuration R3 (or greater)
Remaining intact nodes (stream replicas) meet minimum RAFT quorum: floor(R/2) + 1
Available node(s) in the stream's cluster for new replica(s)
Impacted node(s) removed from the stream's domain RAFT Meta group (e.g.
nats server raft peer-remove
)
Manual Recovery
Snapshots (also known as backups) can pro-actively be made of any stream regardless of replication configuration.
The backup includes (by default):
Stream configuration and state
Stream durable consumer configuration and state
All message payload data including metadata like timestamps and headers
Backup
The nats stream backup
CLI command is used to create snapshots of a stream and its durable consumers.
As an account owner, if you wish to make a backup of ALL streams in your account, you may use nats account backup
instead.
Output
During a backup operation, the stream is placed in a status where it's configuration cannot change and no data will be evicted based on stream retention policies.
Progress using the terminal bar can be disabled using --no-progress
, it will then issue log lines instead.
Restore
An existing backup (as above) can be restored to the same or a new NATS server (or cluster) using the nats stream restore
command.
If there are multiple streams in the backup directory, they will all be restored.
Output
The /data/js-backup/ORDERS.tgz
file can also be extracted into the data dir of a stopped NATS Server.
Progress using the terminal bar can be disabled using --no-progress
, it will then issue log lines instead.
Interactive CLI
In environments where the nats
CLI is used interactively to configure the server you do not have a desired state to recreate the server from. This is not the ideal way to administer the server, we recommend Configuration Management, but many will use this approach.
Here you can back up the configuration into a directory from where you can recover the configuration later. The data for File backed stores can also be backed up.
This backs up Stream and Consumer configuration.
During the same process the data can also be backed up by passing --data
, this will create files like /data/js-backup/stream_ORDERS.tgz
.
Later the data can be restored, for Streams we support editing the Stream configuration in place to match what was in the backup.
The nats restore
tool does not support restoring data, the same process using nats stream restore
, as outlined earlier, can be used which will also restore Stream and Consumer configurations and state.
On restore, if a stream already exists in the server of same name and account, you will receive a Stream {name} already exist
error.
最后更新于