Skip to content

Commit

Permalink
Address review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Artoul committed Sep 11, 2018
1 parent 139b87a commit 4ac6997
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions kube/bundle.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions kube/m3dbnode-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ data:
bootstrappers:
- filesystem
- commitlog
- peers
- uninitialized
fs:
numProcessorsPerCPU: 0.125
Expand Down
2 changes: 2 additions & 0 deletions src/cmd/services/m3dbnode/config/bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@ func ValidateBootstrappersOrder(names []string) error {
peers.PeersBootstrapperName: []string{
// Peers must always appear after filesystem
bfs.FileSystemBootstrapperName,
// Peers may appear before OR after commitlog
commitlog.CommitLogBootstrapperName,
},
commitlog.CommitLogBootstrapperName: []string{
// Commit log bootstrapper may appear after filesystem or peers
Expand Down
1 change: 1 addition & 0 deletions src/cmd/services/m3dbnode/main/main_index_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,7 @@ db:
bootstrappers:
- filesystem
- commitlog
- peers
- uninitialized
fs:
numProcessorsPerCPU: 0.125
Expand Down
1 change: 1 addition & 0 deletions src/cmd/services/m3dbnode/main/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,7 @@ db:
bootstrappers:
- filesystem
- commitlog
- peers
- uninitialized
fs:
numProcessorsPerCPU: 0.125
Expand Down
1 change: 1 addition & 0 deletions src/dbnode/config/m3dbnode-local-etcd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ db:
bootstrappers:
- filesystem
- commitlog
- peers
- uninitialized
fs:
numProcessorsPerCPU: 0.125
Expand Down
1 change: 1 addition & 0 deletions src/dbnode/config/m3dbnode-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ db:
bootstrappers:
- filesystem
- commitlog
- peers
- uninitialized
fs:
numProcessorsPerCPU: 0.125
Expand Down
1 change: 1 addition & 0 deletions src/dbnode/example/m3db-node-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ bootstrap:
bootstrappers:
- filesystem
- commitlog
- peers
- uninitialized
fs:
numProcessorsPerCPU: 0.125
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ bootstrap:
bootstrappers:
- filesystem
- commitlog
- peers
- uninitialized
fs:
numProcessorsPerCPU: 0.125
Expand Down
1 change: 1 addition & 0 deletions src/query/benchmark/configs/m3db_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ bootstrap:
bootstrappers:
- filesystem
- commitlog
- peers
- uninitialized
fs:
numProcessorsPerCPU: 0.125
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ bootstrap:
bootstrappers:
- filesystem
- commitlog
- peers
- uninitialized
fs:
numProcessorsPerCPU: 0.125
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ bootstrap:
bootstrappers:
- filesystem
- commitlog
- peers
- uninitialized
fs:
numProcessorsPerCPU: 0.125
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ bootstrap:
bootstrappers:
- filesystem
- commitlog
- peers
- uninitialized
fs:
numProcessorsPerCPU: 0.125
Expand Down

0 comments on commit 4ac6997

Please sign in to comment.