Browse Source
Merge pull request #2967 from kmlebedev/vl_chk_disk_vlid
volume.check.disk add param volumeId
pull/2982/head
Chris Lu
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
0 deletions
-
weed/shell/command_volume_check_disk.go
|
|
@ -45,6 +45,7 @@ func (c *commandVolumeCheckDisk) Do(args []string, commandEnv *CommandEnv, write |
|
|
|
fsckCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError) |
|
|
|
slowMode := fsckCommand.Bool("slow", false, "slow mode checks all replicas even file counts are the same") |
|
|
|
verbose := fsckCommand.Bool("v", false, "verbose mode") |
|
|
|
volumeId := fsckCommand.Uint("volumeId", 0, "the volume id") |
|
|
|
applyChanges := fsckCommand.Bool("force", false, "apply the fix") |
|
|
|
nonRepairThreshold := fsckCommand.Float64("nonRepairThreshold", 0.3, "repair when missing keys is not more than this limit") |
|
|
|
if err = fsckCommand.Parse(args); err != nil { |
|
|
@ -70,6 +71,9 @@ func (c *commandVolumeCheckDisk) Do(args []string, commandEnv *CommandEnv, write |
|
|
|
} |
|
|
|
|
|
|
|
for _, replicas := range volumeReplicas { |
|
|
|
if *volumeId > 0 && replicas[0].info.Id != uint32(*volumeId) { |
|
|
|
continue |
|
|
|
} |
|
|
|
slices.SortFunc(replicas, func(a, b *VolumeReplica) bool { |
|
|
|
return fileCount(a) > fileCount(b) |
|
|
|
}) |
|
|
|