seaweedfs/weed/command/fix.go

92 lines
2.6 KiB
Go
Raw Normal View History

package command
import (
2012-12-21 06:32:21 +00:00
"os"
"path"
"strconv"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/storage"
2019-04-19 04:43:36 +00:00
"github.com/chrislusf/seaweedfs/weed/storage/needle"
2019-12-23 20:48:20 +00:00
"github.com/chrislusf/seaweedfs/weed/storage/super_block"
"github.com/chrislusf/seaweedfs/weed/storage/types"
)
func init() {
2012-12-21 06:32:21 +00:00
cmdFix.Run = runFix // break init cycle
}
var cmdFix = &Command{
2013-01-20 03:49:57 +00:00
UsageLine: "fix -dir=/tmp -volumeId=234",
2012-12-21 06:32:21 +00:00
Short: "run weed tool fix on index file if corrupted",
Long: `Fix runs the SeaweedFS fix command to re-create the index .idx file.
`,
}
var (
2015-05-26 06:53:45 +00:00
fixVolumePath = cmdFix.Flag.String("dir", ".", "data directory to store files")
2013-11-12 10:21:22 +00:00
fixVolumeCollection = cmdFix.Flag.String("collection", "", "the volume collection name")
fixVolumeId = cmdFix.Flag.Int("volumeId", -1, "a volume id. The volume should already exist in the dir. The volume index file should not exist.")
)
type VolumeFileScanner4Fix struct {
2019-04-19 04:43:36 +00:00
version needle.Version
nm *storage.NeedleMap
}
2019-12-23 20:48:20 +00:00
func (scanner *VolumeFileScanner4Fix) VisitSuperBlock(superBlock super_block.SuperBlock) error {
scanner.version = superBlock.Version
return nil
}
func (scanner *VolumeFileScanner4Fix) ReadNeedleBody() bool {
return false
}
2019-10-22 07:50:30 +00:00
func (scanner *VolumeFileScanner4Fix) VisitNeedle(n *needle.Needle, offset int64, needleHeader, needleBody []byte) error {
glog.V(2).Infof("key %d offset %d size %d disk_size %d gzip %v", n.Id, offset, n.Size, n.DiskSize(scanner.version), n.IsGzipped())
if n.Size > 0 && n.Size != types.TombstoneFileSize {
2019-04-09 02:40:56 +00:00
pe := scanner.nm.Put(n.Id, types.ToOffset(offset), n.Size)
glog.V(2).Infof("saved %d with error %v", n.Size, pe)
} else {
glog.V(2).Infof("skipping deleted file ...")
2019-04-09 02:40:56 +00:00
return scanner.nm.Delete(n.Id, types.ToOffset(offset))
}
return nil
}
func runFix(cmd *Command, args []string) bool {
2013-01-20 03:49:57 +00:00
if *fixVolumeId == -1 {
2012-12-21 06:32:21 +00:00
return false
}
2018-07-29 09:25:24 +00:00
baseFileName := strconv.Itoa(*fixVolumeId)
2013-11-12 10:21:22 +00:00
if *fixVolumeCollection != "" {
2018-07-29 09:25:24 +00:00
baseFileName = *fixVolumeCollection + "_" + baseFileName
2013-11-12 10:21:22 +00:00
}
2018-07-29 09:25:24 +00:00
indexFileName := path.Join(*fixVolumePath, baseFileName+".idx")
indexFile, err := os.OpenFile(indexFileName, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644)
if err != nil {
glog.Fatalf("Create Volume Index [ERROR] %s\n", err)
2012-12-21 06:32:21 +00:00
}
defer indexFile.Close()
2017-05-27 05:51:25 +00:00
nm := storage.NewBtreeNeedleMap(indexFile)
defer nm.Close()
2019-04-19 04:43:36 +00:00
vid := needle.VolumeId(*fixVolumeId)
scanner := &VolumeFileScanner4Fix{
nm: nm,
}
err = storage.ScanVolumeFile(*fixVolumePath, *fixVolumeCollection, vid, storage.NeedleMapInMemory, scanner)
if err != nil {
glog.Fatalf("Export Volume File [ERROR] %s\n", err)
2018-07-29 09:25:24 +00:00
os.Remove(indexFileName)
2012-12-21 06:32:21 +00:00
}
return true
}