From 40cd5365ce81e54f810e1e3103eb4145696fdaf7 Mon Sep 17 00:00:00 2001 From: Mingyu Chen Date: Mon, 11 May 2020 23:43:53 +0800 Subject: [PATCH 1/2] [Doc] Update table-restore-tool.md Fix some format. --- .../operation/tablet-restore-tool.md | 32 ++++++++++++------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/docs/zh-CN/administrator-guide/operation/tablet-restore-tool.md b/docs/zh-CN/administrator-guide/operation/tablet-restore-tool.md index 5f1e176911..21404ffb5d 100644 --- a/docs/zh-CN/administrator-guide/operation/tablet-restore-tool.md +++ b/docs/zh-CN/administrator-guide/operation/tablet-restore-tool.md @@ -30,15 +30,20 @@ under the License. 用户在使用Doris的过程中,可能会发生因为一些误操作或者线上bug,导致一些有效的tablet被删除(包括元数据和数据)。为了防止在这些异常情况出现数据丢失,Doris提供了回收站机制,来保护用户数据。用户删除的tablet数据不会被直接删除,会被放在回收站中存储一段时间,在一段时间之后会有定时清理机制将过期的数据删除。回收站中的数据包括:tablet的data文件(.dat),tablet的索引文件(.idx)和tablet的元数据文件(.hdr)。数据将会存放在如下格式的路径: +``` /root_path/trash/time_label/tablet_id/schema_hash/ +``` -其中, root path是用户配置的一块盘上be存储的根目录; -trash:是回收站的目录 -time_label: 时间标签,为了回收站中数据目录的唯一性,同时记录数据时间,使用时间标签作为子目录 +* root path:对应BE节点的某个数据根目录。 +* trash:回收站的目录。 +* time_label:时间标签,为了回收站中数据目录的唯一性,同时记录数据时间,使用时间标签作为子目录。 -当用户发现线上的数据被误删除,需要从回收站中恢复被删除的tablet,需要用到这个tablet数据恢复功能。BE提供http接口和restore_tablet_tool.sh脚本实现这个功能,支持单tablet操作(single mode)和批量操作模式(batch mode)。 -在single mode下,支持单个tablet的数据恢复。 -在batch mode下,支持批量tablet的数据恢复。 +当用户发现线上的数据被误删除,需要从回收站中恢复被删除的tablet,需要用到这个tablet数据恢复功能。 + +BE提供http接口和restore_tablet_tool.sh脚本实现这个功能,支持单tablet操作(single mode)和批量操作模式(batch mode)。 + +* 在single mode下,支持单个tablet的数据恢复。 +* 在batch mode下,支持批量tablet的数据恢复。 ## 操作 @@ -49,23 +54,24 @@ time_label: 时间标签,为了回收站中数据目录的唯一性,同时 BE中提供单个tablet数据恢复的http接口,接口如下: ``` -curl -X POST "http://localhost:8040/api/restore_tablet?tablet_id=11111\&schema_hash=12345" +curl -X POST "http://be_host:be_webserver_port/api/restore_tablet?tablet_id=11111\&schema_hash=12345" ``` - 成功的结果如下: + ``` {"status": "Success", "msg": "OK"} ``` 失败的话,会返回相应的失败原因,一种可能的结果如下: + ``` {"status": "Failed", "msg": "create link path failed"} ``` #### 脚本方式 -restore_tablet_tool.sh可用来实现单tablet数据恢复的功能。 +`restore_tablet_tool.sh`可用来实现单tablet数据恢复的功能。 ``` sh tools/restore_tablet_tool.sh -b "http://127.0.0.1:8040" -t 12345 -s 11111 @@ -74,15 +80,19 @@ sh tools/restore_tablet_tool.sh --backend "http://127.0.0.1:8040" --tablet_id 12 ### batch mode -批量恢复模式用于实现恢复多个tablet数据的功能。使用的时候需要预先将恢复的tablet id和schema hash按照逗号分隔的格式放在一个文件中,一个tablet一行。 +批量恢复模式用于实现恢复多个tablet数据的功能。 + +使用的时候需要预先将恢复的tablet id和schema hash按照逗号分隔的格式放在一个文件中,一个tablet一行。 + 格式如下: + ``` 12345,11111 12346,11111 12347,11111 ``` -然后如下的命令进行恢复(假设文件名为:tablets.txt): +然后如下的命令进行恢复(假设文件名为:`tablets.txt`): ``` sh restore_tablet_tool.sh -b "http://127.0.0.1:8040" -f tablets.txt From d4ff6dcdd6eb5da63ac4e4f63e0b23e820717e23 Mon Sep 17 00:00:00 2001 From: chenmingyu Date: Mon, 18 May 2020 10:56:12 +0800 Subject: [PATCH 2/2] fix by review --- .../operation/tablet-restore-tool.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/zh-CN/administrator-guide/operation/tablet-restore-tool.md b/docs/zh-CN/administrator-guide/operation/tablet-restore-tool.md index 21404ffb5d..784366361d 100644 --- a/docs/zh-CN/administrator-guide/operation/tablet-restore-tool.md +++ b/docs/zh-CN/administrator-guide/operation/tablet-restore-tool.md @@ -34,13 +34,13 @@ under the License. /root_path/trash/time_label/tablet_id/schema_hash/ ``` -* root path:对应BE节点的某个数据根目录。 -* trash:回收站的目录。 -* time_label:时间标签,为了回收站中数据目录的唯一性,同时记录数据时间,使用时间标签作为子目录。 +* `root_path`:对应BE节点的某个数据根目录。 +* `trash`:回收站的目录。 +* `time_label`:时间标签,为了回收站中数据目录的唯一性,同时记录数据时间,使用时间标签作为子目录。 当用户发现线上的数据被误删除,需要从回收站中恢复被删除的tablet,需要用到这个tablet数据恢复功能。 -BE提供http接口和restore_tablet_tool.sh脚本实现这个功能,支持单tablet操作(single mode)和批量操作模式(batch mode)。 +BE提供http接口和 `restore_tablet_tool.sh` 脚本实现这个功能,支持单tablet操作(single mode)和批量操作模式(batch mode)。 * 在single mode下,支持单个tablet的数据恢复。 * 在batch mode下,支持批量tablet的数据恢复。 @@ -71,7 +71,7 @@ curl -X POST "http://be_host:be_webserver_port/api/restore_tablet?tablet_id=1111 #### 脚本方式 -`restore_tablet_tool.sh`可用来实现单tablet数据恢复的功能。 +`restore_tablet_tool.sh` 可用来实现单tablet数据恢复的功能。 ``` sh tools/restore_tablet_tool.sh -b "http://127.0.0.1:8040" -t 12345 -s 11111