In the event of unrecoverable JetStream message persistence on one (or more) server nodes, there are two recovery scenarios:
{% hint style="danger" %} 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. {% endhint %}
NATS will create replacement stream replicas automatically under the following conditions:
nats server raft peer-remove)Snapshots (also known as backups) can pro-actively be made of any stream regardless of replication configuration.
The backup includes (by default):
The nats stream backup CLI command is used to create snapshots of a stream and its durable consumers.
{% hint style="info" %}
As an account owner, if you wish to make a backup of ALL streams in your account, you may use nats account backup instead.
{% endhint %}
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.
{% hint style="info" %}
Progress using the terminal bar can be disabled using --no-progress, it will then issue log lines instead.
{% endhint %}
An existing backup (as above) can be restored to the same or a new NATS server (or cluster) using the nats stream restore command.
{% hint style="info" %} If there are multiple streams in the backup directory, they will all be restored. {% endhint %}
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.
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 account 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.
{% hint style="warning" %}
On restore, if a stream already exists in the server of same name and account, you will receive a Stream {name} already exist error.
{% endhint %}