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

add comments for replicas #169

Merged
merged 1 commit into from
Jan 10, 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
2 changes: 1 addition & 1 deletion configs/bs/cluster/scale-out.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
chunkserver_services:
deploy:
- host: ${machine1}
replica: 20
replica: 20 # 请注意这里的replica不代表存储池的副本数,而是节点上同类进程的数量,比如这里指的是chunkserver进程的数量,也就是配置的磁盘数,相关问题可以参考:https://github.com/opencurve/curveadm/issues/146
config:
- host: ${machine2}
replica: 20
Expand Down
2 changes: 1 addition & 1 deletion configs/bs/cluster/topology.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ chunkserver_services:
copysets: 100
deploy:
- host: ${machine1}
replicas: 3
replicas: 3 # 请注意这里的replica不代表存储池的副本数,而是节点上同类进程的数量,比如这里指的是chunkserver进程的数量,也就是配置的磁盘数,相关问题可以参考:https://github.com/opencurve/curveadm/issues/146
- host: ${machine2}
replicas: 3
- host: ${machine3}
Expand Down