aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_volume_balance.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-12-18 10:34:16 -0800
committerChris Lu <chris.lu@gmail.com>2020-12-18 10:34:16 -0800
commitb7fef8f6933d80e71867d8642fba7b393061e385 (patch)
treeebe740eabe64446fcfbd4d1189de40d1b90eb907 /weed/shell/command_volume_balance.go
parent9abf016af14ef632e9ecdfa09a16323ca2c6417f (diff)
downloadseaweedfs-b7fef8f6933d80e71867d8642fba7b393061e385.tar.xz
seaweedfs-b7fef8f6933d80e71867d8642fba7b393061e385.zip
fix when a volume server has only hdd volumes
Diffstat (limited to 'weed/shell/command_volume_balance.go')
-rw-r--r--weed/shell/command_volume_balance.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/weed/shell/command_volume_balance.go b/weed/shell/command_volume_balance.go
index cebe494e7..9faa71cae 100644
--- a/weed/shell/command_volume_balance.go
+++ b/weed/shell/command_volume_balance.go
@@ -270,6 +270,9 @@ func balanceSelectedVolume(commandEnv *CommandEnv, volumeReplicas map[uint32][]*
for i := 0; i < len(nodes)-1; i++ {
emptyNode := nodes[i]
+ if capacityFunc(emptyNode.info) == 0 {
+ continue
+ }
if !(fullNode.localVolumeRatio(capacityFunc) > idealVolumeRatio && emptyNode.localVolumeNextRatio(capacityFunc) <= idealVolumeRatio) {
// no more volume servers with empty slots
break