2021-08-01 22:33:45 +00:00
|
|
|
package shell
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
2021-09-13 05:47:52 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2021-08-01 22:33:45 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
2021-08-02 02:37:20 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
2021-08-01 22:33:45 +00:00
|
|
|
"io"
|
|
|
|
"log"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Commands = append(Commands, &commandVolumeDeleteEmpty{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type commandVolumeDeleteEmpty struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandVolumeDeleteEmpty) Name() string {
|
|
|
|
return "volume.deleteEmpty"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandVolumeDeleteEmpty) Help() string {
|
|
|
|
return `delete empty volumes from all volume servers
|
|
|
|
|
2021-08-02 02:37:20 +00:00
|
|
|
volume.deleteEmpty -quietFor=24h -force
|
2021-08-01 22:33:45 +00:00
|
|
|
|
|
|
|
This command deletes all empty volumes from one volume server.
|
|
|
|
|
|
|
|
`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandVolumeDeleteEmpty) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
|
|
|
|
|
|
|
|
volDeleteCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
|
|
|
|
quietPeriod := volDeleteCommand.Duration("quietFor", 24*time.Hour, "select empty volumes with no recent writes, avoid newly created ones")
|
2021-08-02 02:37:20 +00:00
|
|
|
applyBalancing := volDeleteCommand.Bool("force", false, "apply to delete empty volumes")
|
2021-08-01 22:33:45 +00:00
|
|
|
if err = volDeleteCommand.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-09-14 05:13:34 +00:00
|
|
|
if err = commandEnv.confirmIsLocked(); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-08-01 22:33:45 +00:00
|
|
|
// collect topology information
|
|
|
|
topologyInfo, _, err := collectTopologyInfo(commandEnv)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
quietSeconds := int64(*quietPeriod / time.Second)
|
|
|
|
nowUnixSeconds := time.Now().Unix()
|
|
|
|
|
|
|
|
eachDataNode(topologyInfo, func(dc string, rack RackId, dn *master_pb.DataNodeInfo) {
|
|
|
|
for _, diskInfo := range dn.DiskInfos {
|
|
|
|
for _, v := range diskInfo.VolumeInfos {
|
2021-08-02 02:37:20 +00:00
|
|
|
if v.Size <= 8 && v.ModifiedAtSecond+quietSeconds < nowUnixSeconds {
|
|
|
|
if *applyBalancing {
|
|
|
|
log.Printf("deleting empty volume %d from %s", v.Id, dn.Id)
|
2021-09-13 05:47:52 +00:00
|
|
|
if deleteErr := deleteVolume(commandEnv.option.GrpcDialOption, needle.VolumeId(v.Id), pb.NewServerAddressFromDataNode(dn)); deleteErr != nil {
|
2021-08-02 02:37:20 +00:00
|
|
|
err = deleteErr
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
} else {
|
|
|
|
log.Printf("empty volume %d from %s", v.Id, dn.Id)
|
2021-08-01 22:33:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|