-
Notifications
You must be signed in to change notification settings - Fork 88
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
Add ctl tool for Raft Engine #144
Comments
5 tasks
/assign |
This was referenced Nov 11, 2021
Closing this, the implementation of commands can be tracked in #99 |
@tabokie , Should we do not need to implement the subcommand Lines 82 to 89 in e32e3e7
|
@yuqi1129 Yes, no need |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We need a ctl tool to do data administration work mentioned in #99.
Some subcommands I have in mind:
ctl dump --file /path/to/file [--raft id1,id2,id3]
ctl dump --path /path path [--raft id1,id2,id3]
ctl check --path /path
ctl truncate --path /path --mode front/back/all --queue append/rewrite/all [--raft id1,id2,id3]
ctl autofill --path /path --queue append/rewrite/all [--raft id1,id2,id3]
\We can use structopt to build a skeleton for this tool, fill in implementation later.
The text was updated successfully, but these errors were encountered: