aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_volume_server_evacuate.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-10-13 20:26:03 -0700
committerChris Lu <chris.lu@gmail.com>2020-10-13 20:26:03 -0700
commit1069b325dd92b6a1b16a20290acc8129d5e19ef8 (patch)
treea46d4642bc78ee080d2f80e02748dbc4ec720e84 /weed/shell/command_volume_server_evacuate.go
parent0542911e297fa41c8495ea4a6f855435892db400 (diff)
downloadseaweedfs-1069b325dd92b6a1b16a20290acc8129d5e19ef8.tar.xz
seaweedfs-1069b325dd92b6a1b16a20290acc8129d5e19ef8.zip
shell: volumeServer.evacuate adds printout for ec volumes
Diffstat (limited to 'weed/shell/command_volume_server_evacuate.go')
-rw-r--r--weed/shell/command_volume_server_evacuate.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/weed/shell/command_volume_server_evacuate.go b/weed/shell/command_volume_server_evacuate.go
index 214783ee1..a82454cd3 100644
--- a/weed/shell/command_volume_server_evacuate.go
+++ b/weed/shell/command_volume_server_evacuate.go
@@ -9,6 +9,7 @@ import (
"github.com/chrislusf/seaweedfs/weed/storage/needle"
"github.com/chrislusf/seaweedfs/weed/storage/super_block"
"io"
+ "os"
"sort"
)
@@ -151,6 +152,11 @@ func moveAwayOneEcVolume(commandEnv *CommandEnv, ecShardInfo *master_pb.VolumeEc
for i := 0; i < len(otherNodes); i++ {
emptyNode := otherNodes[i]
+ collectionPrefix := ""
+ if ecShardInfo.Collection != "" {
+ collectionPrefix = ecShardInfo.Collection + "_"
+ }
+ fmt.Fprintf(os.Stdout, "moving ec volume %s%d.%d %s => %s\n", collectionPrefix, ecShardInfo.Id, shardId, thisNode.info.Id, emptyNode.info.Id)
err = moveMountedShardToEcNode(commandEnv, thisNode, ecShardInfo.Collection, needle.VolumeId(ecShardInfo.Id), shardId, emptyNode, applyChange)
if err != nil {
return