Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update br-ent 3.4.1 #2009

Merged
merged 1 commit into from
Mar 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Backup Restore (BR for short) Enterprise Edition is a Command-Line Interface (CL
- Cloud and on-premises backup and restoration:
- Local disks (SSD or HDD). It is recommended to use local disks with the shared storage service NFS.
- Cloud services compatible with the Amazon S3 interface, such as Alibaba Cloud OSS, MinIO, Ceph RGW, etc.
- Support to view the progress of backup or restoration.

## Limits

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To use the BR (Enterprise Edition) tool, you need to install the NebulaGraph Age

|NebulaGraph Enterprise Edition|BR Enterprise Edition|Agent |
|:---|:---|:---|
|3.4.1|3.4.0|3.4.0|
|3.4.1|3.4.1、3.4.0|3.4.0|

## Install BR (Enterprise Edition)

Expand Down
9 changes: 9 additions & 0 deletions docs-2.0/backup-and-restore/nebula-br-ent/3.backup-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,15 @@ The structure of an incremental backup is as follows:
| `--s3.secret_key`| string | No | None | The Access Key Secret that is used to verify the identity of the user. |
| `--base` | string | Yes | None | The name of the directory of any previous backup. Based on this backup, perform an incremental backup. |

## View backup progress

The log file `br.log` of BR can be viewed in the installation directory. The log file will record the backup progress and will look like as follows:

```log
{"level":"info","msg":"full upload storaged partition finished, progress: 1/20","time":"2023-03-15T02:13:20.946Z"}
{"level":"info","msg":"full upload storaged partition finished, progress: 2/20","time":"2023-03-15T02:13:21.154Z"}
{"level":"info","msg":"full upload storaged partition finished, progress: 3/20","time":"2023-03-15T02:13:21.537Z"}
```

## What is next?

Expand Down
12 changes: 11 additions & 1 deletion docs-2.0/backup-and-restore/nebula-br-ent/4.restore-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,14 @@ The following options are for data restorations.
| `--s3.access_key` | string | No | None | The Access Key ID that is used to identify a user. |
| `--s3.endpoint` | string | No | None | The S3 endpoint URL. You need to specify the HTTP or HTTPS scheme explicitly. |
| `--s3.region` | string | No | None | The physical location of a data center. |
| `--s3.secret_key` | string | No | None | The Access Key Secret that is used to verify the identity of the user. |
| `--s3.secret_key` | string | No | None | The Access Key Secret that is used to verify the identity of the user. |

## View restoration progress

The log file `br.log` of BR can be viewed in the installation directory. The log file will record the restoration progress and will look like as follows:

```log
{"level":"info","msg":"download storaged partition finished, progress: 1/20","time":"2023-03-15T02:16:43.430Z"}
{"level":"info","msg":"download storaged partition finished, progress: 2/20","time":"2023-03-15T02:16:43.431Z"}
{"level":"info","msg":"download storaged partition finished, progress: 3/20","time":"2023-03-15T02:16:43.763Z"}
```
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ extra:
branch: release-3.3
tag: v3.3.0
br_ent:
release: 3.4.0
tag: v3.4.0
release: 3.4.1
tag: v3.4.1
agent:
release: 3.4.0
tag: v3.4.0
Expand Down