aboutsummaryrefslogtreecommitdiff
path: root/weed/command/fix.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2022-01-11 12:24:56 -0800
committerchrislu <chris.lu@gmail.com>2022-01-11 12:24:56 -0800
commit1a7d5b5b5e76fa42b0e2cd8e20d0911861f1d4a0 (patch)
tree850ff6c158424034a02ce4e9f4d2ae0229ae29e1 /weed/command/fix.go
parent01ccd6778e5546ab995b2621c641c8ba4c9c85b6 (diff)
parentabe5da7d2c7dd55b11ec6c40a31d8a3d48670dfd (diff)
downloadseaweedfs-1a7d5b5b5e76fa42b0e2cd8e20d0911861f1d4a0.tar.xz
seaweedfs-1a7d5b5b5e76fa42b0e2cd8e20d0911861f1d4a0.zip
Merge branch 'master' of https://github.com/chrislusf/seaweedfs
Diffstat (limited to 'weed/command/fix.go')
-rw-r--r--weed/command/fix.go99
1 files changed, 51 insertions, 48 deletions
diff --git a/weed/command/fix.go b/weed/command/fix.go
index 7b99c1d77..d19496a79 100644
--- a/weed/command/fix.go
+++ b/weed/command/fix.go
@@ -2,7 +2,7 @@ package command
import (
"fmt"
- "io/ioutil"
+ "io/fs"
"os"
"path"
"strconv"
@@ -22,17 +22,15 @@ func init() {
}
var cmdFix = &Command{
- UsageLine: "fix -dir=/tmp -volumeId=234",
- Short: "run weed tool fix on index file if corrupted",
- Long: `Fix runs the SeaweedFS fix command to re-create the index .idx file.
-
+ UsageLine: "fix [-volumeId=234] [-collection=bigData] /tmp",
+ Short: "run weed tool fix on files or whole folders to recreate index file(s) if corrupted",
+ Long: `Fix runs the SeaweedFS fix command on dat files or whole folders to re-create the index .idx file.
`,
}
var (
- fixVolumePath = cmdFix.Flag.String("dir", ".", "data directory to store files")
- fixVolumeCollection = cmdFix.Flag.String("collection", "", "the volume collection name")
- fixVolumeId = cmdFix.Flag.Int("volumeId", 0, "an optional volume id.")
+ fixVolumeCollection = cmdFix.Flag.String("collection", "", "an optional volume collection name, if specified only it will be processed")
+ fixVolumeId = cmdFix.Flag.Int64("volumeId", 0, "an optional volume id, if not 0 (default) only it will be processed")
)
type VolumeFileScanner4Fix struct {
@@ -62,63 +60,68 @@ func (scanner *VolumeFileScanner4Fix) VisitNeedle(n *needle.Needle, offset int64
}
func runFix(cmd *Command, args []string) bool {
-
- 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)
- return false
- }
-
- for _, file := range files {
- if !strings.HasSuffix(file.Name(), ".dat") {
- continue
+ for _, arg := range args {
+ basePath, f := path.Split(util.ResolvePath(arg))
+
+ files := []fs.DirEntry{}
+ if f == "" {
+ fileInfo, err := os.ReadDir(basePath)
+ if err != nil {
+ fmt.Println(err)
+ return false
+ }
+ files = fileInfo
+ } else {
+ fileInfo, err := os.Stat(basePath + f)
+ if err != nil {
+ fmt.Println(err)
+ return false
+ }
+ files = []fs.DirEntry{fs.FileInfoToDirEntry(fileInfo)}
}
- if *fixVolumeCollection != "" {
- if !strings.HasPrefix(file.Name(), *fixVolumeCollection+"_") {
+
+ 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
+ }
+ if *fixVolumeId != 0 && *fixVolumeId != volumeId {
+ continue
+ }
+ doFixOneVolume(basePath, baseFileName, collection, volumeId)
}
- 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))
}
-
return true
}
-func doFixOneVolume(dir, collection string, volumeId needle.VolumeId) {
-
- baseFileName := strconv.Itoa(int(volumeId))
- if collection != "" {
- baseFileName = collection + "_" + baseFileName
- }
+func doFixOneVolume(basepath string, baseFileName string, collection string, volumeId int64) {
- indexFileName := path.Join(dir, baseFileName+".idx")
+ indexFileName := path.Join(basepath, baseFileName+".idx")
nm := needle_map.NewMemDb()
defer nm.Close()
- vid := needle.VolumeId(*fixVolumeId)
+ vid := needle.VolumeId(volumeId)
scanner := &VolumeFileScanner4Fix{
nm: nm,
}
- if err := storage.ScanVolumeFile(dir, collection, vid, storage.NeedleMapInMemory, scanner); err != nil {
+ if err := storage.ScanVolumeFile(basepath, collection, vid, storage.NeedleMapInMemory, scanner); err != nil {
glog.Fatalf("scan .dat File: %v", err)
os.Remove(indexFileName)
}