Back up and restore meta service
This guide introduces how to back up meta service data and restore from a backup.
A meta snapshot is a backup of meta service's data at a specific point in time. Meta snapshots are persisted in S3-compatible storage.
Set backup parameters
Before you can create a meta snapshot, you need to set the backup_storage_url
and backup_storage_directory
system parameters prior to the first backup attempt.
Be careful not to set the backup_storage_url
and backup_storage_directory
when there are snapshots. However, it's not strictly forbidden. If you insist to do so, please note the snapshots taken before the setting will all be invalidated and cannot be used in restoration anymore.
To learn about how to configure system parameters, see How to configure system parameters.
Create a meta snapshot
Meta snapshot is created by meta service.
Here's an example of how to create a new meta snapshot with risectl
:
risectl meta backup-meta
risectl
is included in the pre-built RisingWave binary. For details, see Quick start.
View existing meta snapshots
The following SQL command lists existing meta snapshots:
SELECT meta_snapshot_id FROM rw_catalog.rw_meta_snapshot;
Example output:
meta_snapshot_id
------------------
3
4
Delete a meta snapshot
Here's an example of how to delete a meta snapshot with risectl
:
risectl meta delete-meta-snapshots [snapshot_ids]
Restore from a meta snapshot
Use the following steps to restore from a meta snapshot.
-
Shut down the meta service.
noteThis step is especially important because the meta backup and recovery process does not replicate SST files. It is not permitted for multiple clusters to run with the same SSTs set at any time, as this can corrupt the SST files.
-
Create an empty meta store.
-
Restore the meta snapshot to the new meta store.
risectl \
meta \
restore-meta \
--meta-store-type etcd \
--meta-snapshot-id [snapshot_id] \
--etcd-endpoints [etcd_endpoints] \
--backup-storage-url [backup_storage_url] \
--backup-storage-directory [backup_storage_directory ] \
--hummock-storage-url [hummock_storage_url] \
--hummock-storage-directory [hummock_storage_directory]If etcd enables authentication, also specify
--etcd-auth \
--etcd-username [etcd_username] \
--etcd-password [etcd_password] \restore-meta
reads snapshot data from backup storage and writes them to etcd and hummock storage. -
Configure meta service to use the new meta store.
Access historical data backed up by meta snapshot
Meta snapshot is used to support historical data access, also known as time travel query.
Use the following steps to perform a time travel query.
-
List all valid historical point-in-time (i.e., epoch).
SELECT safe_epoch,safe_epoch_ts,max_committed_epoch,max_committed_epoch_ts FROM rw_catalog.rw_meta_snapshot;
Example output:
safe_epoch | safe_epoch_ts | max_committed_epoch | max_committed_epoch_ts
------------------+-------------------------+---------------------+-------------------------
3603859827458048 | 2022-12-28 11:08:56.918 | 3603862776381440 | 2022-12-28 11:09:41.915
3603898821640192 | 2022-12-28 11:18:51.922 | 3603900263432192 | 2022-12-28 11:19:13.922Valid epochs are within range (
safe_epoch
,max_committed_epoch
). For example, any epochs in [3603859827458048, 3603862776381440] or in [3603898821640192, 3603900263432192] are acceptable.
safe_epoch_ts
andmax_committed_epoch_ts
are human-readable equivalences. -
Set session config
QUERY_EPOCH
. By default, it's 0, which means disabling historical query.SET QUERY_EPOCH=[chosen epoch];
Then, batch queries in this session return data as of this epoch instead of the latest one.
-
Disable historical query.
SET QUERY_EPOCH=0;
RisingWave only supports historical data access at a specific point in time backed up by at least one meta snapshot.