-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[doc]Dump tool #1554
Merged
Merged
[doc]Dump tool #1554
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
amber-moe
requested review from
whitewum,
CPWstatic,
laura-ding and
wilsonyou
December 30, 2019 09:09
wilsonyou
reviewed
Jan 6, 2020
...dministrations/server-administration/storage-service-administration/data-export/dump-tool.md
Outdated
Show resolved
Hide resolved
wilsonyou
reviewed
Jan 6, 2020
...dministrations/server-administration/storage-service-administration/data-export/dump-tool.md
Show resolved
Hide resolved
whitewum
reviewed
Jan 6, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
有些提示性的改动
...dministrations/server-administration/storage-service-administration/data-export/dump-tool.md
Outdated
Show resolved
Hide resolved
...dministrations/server-administration/storage-service-administration/data-export/dump-tool.md
Outdated
Show resolved
Hide resolved
...dministrations/server-administration/storage-service-administration/data-export/dump-tool.md
Outdated
Show resolved
Hide resolved
...dministrations/server-administration/storage-service-administration/data-export/dump-tool.md
Show resolved
Hide resolved
Unit testing passed. |
Unit testing passed. |
CPWstatic
reviewed
Jan 14, 2020
|
||
Dump Tool 源码位于 `nebula/src/tools/db_dump` 下,用户可以执行 `make db_dump` 命令来编译生成该工具。在使用本工具前,你可以使用 **Nebula Graph** CLI 的 [SHOW HOSTS](../../../../../2.query-language/4.statement-syntax/3.utility-statements/show-syntax.md) 命令查看分区的分布。使用 `vertex_id % partition_num` 来计算点对应的 [key](../../../../../1.overview/3.design-and-architecture/2.storage-design.md) 位于哪个分区。 | ||
|
||
**注意:** 该工具通过直接打开 RocksDB 转储数据,因此需要离线使用——拷贝本工具到对应 storaged 所在机器,关闭该 storaged 进程,并同时保持 meta_server 已启动。具体用法请参考下方说明。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
db_dump
would be packaged into the rpm
, it usually already on the machine.
wilsonyou
previously approved these changes
Jan 14, 2020
CPWstatic
approved these changes
Jan 14, 2020
wilsonyou
approved these changes
Jan 14, 2020
tong-hao
pushed a commit
to tong-hao/nebula
that referenced
this pull request
Jun 1, 2021
* dump tool doc * add dump tool in toc * wilson * wum * cpw Co-authored-by: dutor <440396+dutor@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As title. Code pr #1479