2021-03-12 02:05:24 +00:00
|
|
|
package shell
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
|
|
"io"
|
|
|
|
"math"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Commands = append(Commands, &commandS3CleanUploads{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type commandS3CleanUploads struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandS3CleanUploads) Name() string {
|
|
|
|
return "s3.clean.uploads"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandS3CleanUploads) Help() string {
|
|
|
|
return `clean up stale multipart uploads
|
|
|
|
|
|
|
|
Example:
|
2021-04-23 05:26:38 +00:00
|
|
|
s3.clean.uploads -timeAgo 1.5h
|
2021-03-12 02:05:24 +00:00
|
|
|
|
|
|
|
`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandS3CleanUploads) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
|
|
|
|
|
|
|
|
bucketCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
|
|
|
|
uploadedTimeAgo := bucketCommand.Duration("timeAgo", 24*time.Hour, "created time before now. \"1.5h\" or \"2h45m\". Valid time units are \"m\", \"h\"")
|
|
|
|
if err = bucketCommand.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var filerBucketsPath string
|
|
|
|
filerBucketsPath, err = readFilerBucketsPath(commandEnv)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("read buckets: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var buckets []string
|
|
|
|
err = filer_pb.List(commandEnv, filerBucketsPath, "", func(entry *filer_pb.Entry, isLast bool) error {
|
|
|
|
buckets = append(buckets, entry.Name)
|
|
|
|
return nil
|
|
|
|
}, "", false, math.MaxUint32)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("list buckets under %v: %v", filerBucketsPath, err)
|
|
|
|
}
|
|
|
|
|
2021-03-14 20:21:02 +00:00
|
|
|
for _, bucket := range buckets {
|
2021-03-12 02:05:24 +00:00
|
|
|
c.cleanupUploads(commandEnv, writer, filerBucketsPath, bucket, *uploadedTimeAgo)
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandS3CleanUploads) cleanupUploads(commandEnv *CommandEnv, writer io.Writer, filerBucketsPath string, bucket string, timeAgo time.Duration) error {
|
2021-03-14 20:21:02 +00:00
|
|
|
uploadsDir := filerBucketsPath + "/" + bucket + "/.uploads"
|
2021-03-12 02:05:24 +00:00
|
|
|
var staleUploads []string
|
|
|
|
now := time.Now()
|
|
|
|
err := filer_pb.List(commandEnv, uploadsDir, "", func(entry *filer_pb.Entry, isLast bool) error {
|
|
|
|
ctime := time.Unix(entry.Attributes.Crtime, 0)
|
|
|
|
if ctime.Add(timeAgo).Before(now) {
|
|
|
|
staleUploads = append(staleUploads, entry.Name)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}, "", false, math.MaxUint32)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("list uploads under %v: %v", uploadsDir, err)
|
|
|
|
}
|
|
|
|
|
2021-03-14 20:21:02 +00:00
|
|
|
for _, staleUpload := range staleUploads {
|
|
|
|
deleteUrl := fmt.Sprintf("http://%s:%d%s/%s?recursive=true&ignoreRecursiveError=true", commandEnv.option.FilerHost, commandEnv.option.FilerPort, uploadsDir, staleUpload)
|
2021-03-12 02:39:45 +00:00
|
|
|
fmt.Fprintf(writer, "purge %s\n", deleteUrl)
|
2021-03-12 02:05:24 +00:00
|
|
|
|
2021-03-12 02:39:45 +00:00
|
|
|
err = util.Delete(deleteUrl, "")
|
2021-03-12 02:05:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("purge %s/%s: %v", uploadsDir, staleUpload, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
2021-03-14 20:21:02 +00:00
|
|
|
}
|