From d9c0c7e043d3edeea315bff3546dfce69390d581 Mon Sep 17 00:00:00 2001 From: John Martin Date: Fri, 28 Jun 2024 09:51:56 -0700 Subject: [PATCH] include --request-payer flag in docs (#18452) --- docs/content/guides/operator/snapshots.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guides/operator/snapshots.mdx b/docs/content/guides/operator/snapshots.mdx index 46fa56b2bcc96..f0cf266ddc63a 100644 --- a/docs/content/guides/operator/snapshots.mdx +++ b/docs/content/guides/operator/snapshots.mdx @@ -45,7 +45,7 @@ To restore from a RocksDB snapshot, follow these steps: 1. Place the snapshot into the directory that the `db-config` value points to in your fullnode.yaml file. For example, if the `db-config` value points to `/opt/sui/db/authorities_db/full_node_db` and you want to restore from epoch 10, then copy the snapshot to the directory with this command: You can use the aws cli (provided you have credentials to associate with the download): - `aws s3 cp s3:///epoch_10 /opt/sui/db/authorities_db/full_node_db/live --recursive`. + `aws s3 cp s3:///epoch_10 /opt/sui/db/authorities_db/full_node_db/live --recursive --request-payer`. An alternative is to use `sui-tool` to copy the files: ```