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 #2653

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)企业版是一款命令行界面(CLI)工具。
- 支持基于以下存储环境备份和恢复数据:
- 本地磁盘(SSD 或 HDD),建议搭配共享存储服务(NFS)。
- 兼容亚马逊对象存储(Amazon S3)云存储服务接口,例如:阿里云对象存储(Alibaba Cloud OSS)、MinIO、Ceph RGW 等。
- 支持查看备份或恢复的进度。

## 限制

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

|NebulaGraph 企业版|BR 企业版|Agent |
|:---|:---|:---|
|3.4.1|3.4.0|3.4.0|
|3.4.1|3.4.1、3.4.0|3.4.0|

## 安装 BR(企业版)

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 @@ -185,6 +185,15 @@
| `--s3.secret_key`| string | 否 | 无 | 用户用于加密签名字符串和用来验证签名字符串的密钥,必须保密。 |
| `--base` | string | 是 | 无 | 之前任一备份的目录名。基于此备份,进行增量备份。 |

## 查看备份进度

在安装目录内可以查看 BR 的日志文件`br.log`。日志文件会记录备份进度,内容类似:

```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"}
```

## 下一步

Expand Down
10 changes: 10 additions & 0 deletions 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 @@ -112,3 +112,13 @@
| `--s3.endpoint` | string | 否 | 无 | S3 对外服务的访问域名的 URL,指定 http 或 https。 |
| `--s3.region` | string | 否 | 无 | 数据中心所在物理位置。 |
| `--s3.secret_key` | string | 否 | 无 | 用户用于加密签名字符串和用来验证签名字符串的密钥,必须保密。 |

## 查看恢复进度

在安装目录内可以查看 BR 的日志文件`br.log`。日志文件会记录恢复进度,内容类似:

```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 @@ -216,8 +216,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