-
Notifications
You must be signed in to change notification settings - Fork 6
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
feat(config): support starting pd nodes & store nodes #16
Conversation
src/common/deploy_graph.py
Outdated
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.
could use 100 or 120 as the line wrapping standard, no need wrap too early
@@ -23,7 +23,12 @@ Note: modify the configs in basic_config.py before run the test script | |||
2. modify server/toolchain_git_branch_commit | |||
3. modify auth/https/serice ports if need.. | |||
''' | |||
python deploy_start.py all # or 'server' or 'toolchain' | |||
python deploy_start.py all # or 'server' or 'toolchain' or 'hugegraph' |
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.
hugegraph
represents "server + pd + store"?
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.
yes, use hugegraph to start a cluster including 1 pd, 1 store and 1 server
src/deploy_start.py
Outdated
graph_deploy(sys.argv[1], basic_config) | ||
else: | ||
print('failed: 执行脚本参数为[all,server,toolchain]') | ||
print('failed: 执行脚本参数为[all,server,toolchain, pd, store, hugegraph]') |
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.
sort the order from big -> small (scope)
subtask of apache/incubator-hugegraph#2575