package shell import ( "context" "flag" "fmt" "io" "strconv" "strings" "github.com/seaweedfs/seaweedfs/weed/pb/master_pb" ) func init() { Commands = append(Commands, &commandVacuum{}) } type commandVacuum struct { } func (c *commandVacuum) Name() string { return "volume.vacuum" } func (c *commandVacuum) Help() string { return `compact volumes if deleted entries are more than the limit volume.vacuum [-garbageThreshold=0.3] [-collection=] [-volumeId=] ` } func (c *commandVacuum) HasTag(CommandTag) bool { return false } func (c *commandVacuum) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) { volumeVacuumCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError) garbageThreshold := volumeVacuumCommand.Float64("garbageThreshold", 0.3, "vacuum when garbage is more than this limit") collection := volumeVacuumCommand.String("collection", "", "vacuum this collection") volumeIds := volumeVacuumCommand.String("volumeId", "", "comma-separated list of volume IDs") if err = volumeVacuumCommand.Parse(args); err != nil { return nil } if err = commandEnv.confirmIsLocked(args); err != nil { return } var volumeIdInts []uint32 if *volumeIds != "" { for _, volumeIdStr := range strings.Split(*volumeIds, ",") { volumeIdStr = strings.TrimSpace(volumeIdStr) if volumeIdInt, err := strconv.ParseUint(volumeIdStr, 10, 32); err == nil { volumeIdInts = append(volumeIdInts, uint32(volumeIdInt)) } else { return fmt.Errorf("parse volumeId string %s to int: %v", volumeIdStr, err) } } } else { volumeIdInts = append(volumeIdInts, 0) } for _, volumeId := range volumeIdInts { err = commandEnv.MasterClient.WithClient(false, func(client master_pb.SeaweedClient) error { _, err = client.VacuumVolume(context.Background(), &master_pb.VacuumVolumeRequest{ GarbageThreshold: float32(*garbageThreshold), VolumeId: volumeId, Collection: *collection, }) return err }) if err != nil { return err } } return nil }