2016-06-03 01:09:14 +00:00
|
|
|
package command
|
2012-08-07 01:20:26 +00:00
|
|
|
|
|
|
|
import (
|
2022-01-07 22:52:16 +00:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2012-12-21 06:32:21 +00:00
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"strconv"
|
2022-01-07 22:52:16 +00:00
|
|
|
"strings"
|
2014-10-26 18:34:55 +00:00
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"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-24 18:18:56 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle_map"
|
2019-12-23 20:48:20 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/super_block"
|
2018-07-08 09:28:04 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/types"
|
2020-07-17 05:50:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2012-08-07 01:20:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2012-12-21 06:32:21 +00:00
|
|
|
cmdFix.Run = runFix // break init cycle
|
2012-08-07 01:20:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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",
|
2015-04-16 21:11:25 +00:00
|
|
|
Long: `Fix runs the SeaweedFS fix command to re-create the index .idx file.
|
2012-08-07 01:20:26 +00:00
|
|
|
|
|
|
|
`,
|
|
|
|
}
|
|
|
|
|
|
|
|
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")
|
2022-01-07 22:52:16 +00:00
|
|
|
fixVolumeId = cmdFix.Flag.Int("volumeId", 0, "an optional volume id.")
|
2012-08-07 01:20:26 +00:00
|
|
|
)
|
|
|
|
|
2019-01-16 09:48:59 +00:00
|
|
|
type VolumeFileScanner4Fix struct {
|
2019-04-19 04:43:36 +00:00
|
|
|
version needle.Version
|
2019-12-24 18:18:56 +00:00
|
|
|
nm *needle_map.MemDb
|
2019-01-16 09:48:59 +00:00
|
|
|
}
|
|
|
|
|
2019-12-23 20:48:20 +00:00
|
|
|
func (scanner *VolumeFileScanner4Fix) VisitSuperBlock(superBlock super_block.SuperBlock) error {
|
|
|
|
scanner.version = superBlock.Version
|
2019-01-16 09:48:59 +00:00
|
|
|
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 {
|
2020-06-20 05:45:27 +00:00
|
|
|
glog.V(2).Infof("key %d offset %d size %d disk_size %d compressed %v", n.Id, offset, n.Size, n.DiskSize(scanner.version), n.IsCompressed())
|
2020-08-19 02:22:16 +00:00
|
|
|
if n.Size.IsValid() {
|
2019-12-24 18:18:56 +00:00
|
|
|
pe := scanner.nm.Set(n.Id, types.ToOffset(offset), n.Size)
|
2020-09-12 19:42:36 +00:00
|
|
|
glog.V(2).Infof("saved %d with error %v", n.Size, pe)
|
2019-01-16 09:48:59 +00:00
|
|
|
} else {
|
2020-09-12 19:42:36 +00:00
|
|
|
glog.V(2).Infof("skipping deleted file ...")
|
2019-12-24 18:18:56 +00:00
|
|
|
return scanner.nm.Delete(n.Id)
|
2019-01-16 09:48:59 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2012-08-07 01:20:26 +00:00
|
|
|
func runFix(cmd *Command, args []string) bool {
|
|
|
|
|
2022-01-07 22:52:16 +00:00
|
|
|
dir := util.ResolvePath(*fixVolumePath)
|
|
|
|
if *fixVolumeId != 0 {
|
|
|
|
doFixOneVolume(dir, *fixVolumeCollection, needle.VolumeId(*fixVolumeId))
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
files, err := ioutil.ReadDir(dir)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
2012-12-21 06:32:21 +00:00
|
|
|
return false
|
|
|
|
}
|
2012-08-07 01:20:26 +00:00
|
|
|
|
2022-01-07 22:52:16 +00:00
|
|
|
for _, file := range files {
|
|
|
|
if !strings.HasSuffix(file.Name(), ".dat") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if *fixVolumeCollection != "" {
|
|
|
|
if !strings.HasPrefix(file.Name(), *fixVolumeCollection+"_") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
baseFileName := file.Name()[:len(file.Name())-4]
|
|
|
|
collection, volumeIdStr := "", baseFileName
|
|
|
|
if sepIndex := strings.LastIndex(baseFileName, "_"); sepIndex > 0 {
|
|
|
|
collection = baseFileName[:sepIndex]
|
|
|
|
volumeIdStr = baseFileName[sepIndex+1:]
|
|
|
|
}
|
|
|
|
volumeId, parseErr := strconv.ParseInt(volumeIdStr, 10, 64)
|
|
|
|
if parseErr != nil {
|
|
|
|
fmt.Printf("Failed to parse volume id from %s: %v\n", baseFileName, parseErr)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
doFixOneVolume(dir, collection, needle.VolumeId(volumeId))
|
2013-11-12 10:21:22 +00:00
|
|
|
}
|
2022-01-07 22:52:16 +00:00
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func doFixOneVolume(dir, collection string, volumeId needle.VolumeId) {
|
|
|
|
|
|
|
|
baseFileName := strconv.Itoa(int(volumeId))
|
|
|
|
if collection != "" {
|
|
|
|
baseFileName = collection + "_" + baseFileName
|
|
|
|
}
|
|
|
|
|
|
|
|
indexFileName := path.Join(dir, baseFileName+".idx")
|
2012-08-07 01:20:26 +00:00
|
|
|
|
2019-12-24 18:18:56 +00:00
|
|
|
nm := needle_map.NewMemDb()
|
2020-03-10 05:29:02 +00:00
|
|
|
defer nm.Close()
|
2013-01-21 03:44:23 +00:00
|
|
|
|
2019-04-19 04:43:36 +00:00
|
|
|
vid := needle.VolumeId(*fixVolumeId)
|
2019-01-16 09:48:59 +00:00
|
|
|
scanner := &VolumeFileScanner4Fix{
|
|
|
|
nm: nm,
|
|
|
|
}
|
|
|
|
|
2022-01-07 22:52:16 +00:00
|
|
|
if err := storage.ScanVolumeFile(dir, collection, vid, storage.NeedleMapInMemory, scanner); err != nil {
|
2020-01-07 00:29:59 +00:00
|
|
|
glog.Fatalf("scan .dat File: %v", err)
|
|
|
|
os.Remove(indexFileName)
|
|
|
|
}
|
|
|
|
|
2020-09-12 19:42:36 +00:00
|
|
|
if err := nm.SaveToIdx(indexFileName); err != nil {
|
2020-01-07 00:29:59 +00:00
|
|
|
glog.Fatalf("save to .idx File: %v", err)
|
2018-07-29 09:25:24 +00:00
|
|
|
os.Remove(indexFileName)
|
2012-12-21 06:32:21 +00:00
|
|
|
}
|
2012-08-07 01:20:26 +00:00
|
|
|
}
|