2020-11-29 07:18:02 +00:00
|
|
|
package shell
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"flag"
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/chrislusf/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]
|
|
|
|
|
|
|
|
`
|
|
|
|
}
|
|
|
|
|
|
|
|
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")
|
2022-04-18 13:40:58 +00:00
|
|
|
collection := volumeVacuumCommand.String("collection", "", "vacuum this collection")
|
|
|
|
volumeId := volumeVacuumCommand.Int("volumeId", 0, "the volume id")
|
2020-11-29 07:18:02 +00:00
|
|
|
if err = volumeVacuumCommand.Parse(args); err != nil {
|
2022-02-24 01:04:38 +00:00
|
|
|
return
|
2020-11-29 07:18:02 +00:00
|
|
|
}
|
|
|
|
|
2021-12-10 21:24:38 +00:00
|
|
|
if err = commandEnv.confirmIsLocked(args); err != nil {
|
2021-09-14 05:13:34 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-26 08:15:03 +00:00
|
|
|
err = commandEnv.MasterClient.WithClient(false, func(client master_pb.SeaweedClient) error {
|
2020-11-29 07:18:02 +00:00
|
|
|
_, err = client.VacuumVolume(context.Background(), &master_pb.VacuumVolumeRequest{
|
|
|
|
GarbageThreshold: float32(*garbageThreshold),
|
2022-04-18 13:40:58 +00:00
|
|
|
VolumeId: uint32(*volumeId),
|
|
|
|
Collection: *collection,
|
2020-11-29 07:18:02 +00:00
|
|
|
})
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|