2016-06-03 01:09:14 +00:00
|
|
|
package command
|
2013-09-29 05:18:52 +00:00
|
|
|
|
|
|
|
import (
|
2019-09-12 13:18:21 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
2020-07-17 05:50:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2013-09-29 05:18:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cmdCompact.Run = runCompact // break init cycle
|
|
|
|
}
|
|
|
|
|
|
|
|
var cmdCompact = &Command{
|
|
|
|
UsageLine: "compact -dir=/tmp -volumeId=234",
|
2014-10-21 08:27:40 +00:00
|
|
|
Short: "run weed tool compact on volume file",
|
2013-09-29 05:18:52 +00:00
|
|
|
Long: `Force an compaction to remove deleted files from volume files.
|
|
|
|
The compacted .dat file is stored as .cpd file.
|
|
|
|
The compacted .idx file is stored as .cpx file.
|
|
|
|
|
2019-12-24 22:55:50 +00:00
|
|
|
For method=0, it compacts based on the .dat file, works if .idx file is corrupted.
|
|
|
|
For method=1, it compacts based on the .idx file, works if deletion happened but not written to .dat files.
|
|
|
|
|
2013-09-29 05:18:52 +00:00
|
|
|
`,
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2017-01-08 19:01:46 +00:00
|
|
|
compactVolumePath = cmdCompact.Flag.String("dir", ".", "data directory to store files")
|
|
|
|
compactVolumeCollection = cmdCompact.Flag.String("collection", "", "volume collection name")
|
|
|
|
compactVolumeId = cmdCompact.Flag.Int("volumeId", -1, "a volume id. The volume should already exist in the dir.")
|
|
|
|
compactMethod = cmdCompact.Flag.Int("method", 0, "option to choose which compact method. use 0 or 1.")
|
2017-01-08 22:57:32 +00:00
|
|
|
compactVolumePreallocate = cmdCompact.Flag.Int64("preallocateMB", 0, "preallocate volume disk space")
|
2013-09-29 05:18:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func runCompact(cmd *Command, args []string) bool {
|
|
|
|
|
|
|
|
if *compactVolumeId == -1 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-08-30 06:59:53 +00:00
|
|
|
preallocate := *compactVolumePreallocate * (1 << 20)
|
|
|
|
|
2019-04-19 04:43:36 +00:00
|
|
|
vid := needle.VolumeId(*compactVolumeId)
|
2020-11-27 11:17:10 +00:00
|
|
|
v, err := storage.NewVolume(util.ResolvePath(*compactVolumePath), util.ResolvePath(*compactVolumePath), *compactVolumeCollection, vid, storage.NeedleMapInMemory, nil, nil, preallocate, 0)
|
2013-09-29 05:18:52 +00:00
|
|
|
if err != nil {
|
|
|
|
glog.Fatalf("Load Volume [ERROR] %s\n", err)
|
|
|
|
}
|
2016-09-23 03:31:17 +00:00
|
|
|
if *compactMethod == 0 {
|
2019-09-03 16:00:59 +00:00
|
|
|
if err = v.Compact(preallocate, 0); err != nil {
|
2016-09-23 03:31:17 +00:00
|
|
|
glog.Fatalf("Compact Volume [ERROR] %s\n", err)
|
|
|
|
}
|
|
|
|
} else {
|
2020-03-11 17:32:17 +00:00
|
|
|
if err = v.Compact2(preallocate, 0); err != nil {
|
2016-09-23 03:31:17 +00:00
|
|
|
glog.Fatalf("Compact Volume [ERROR] %s\n", err)
|
|
|
|
}
|
2013-09-29 05:18:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|