joeslay
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 77 additions and 74 deletions
-
13unmaintained/load_test/load_test_leveldb/load_test_leveldb.go
-
109unmaintained/remove_duplicate_fids/remove_duplicate_fids.go
-
4unmaintained/see_dat/see_dat.go
-
5weed/s3api/filer_multipart.go
-
8weed/s3api/s3api_objects_list_handlers.go
-
2weed/s3api/s3api_xsd_generated.go
-
2weed/server/filer_server_handlers_write.go
-
4weed/server/master_server_handlers.go
-
4weed/shell/command_volume_list.go
@ -1,92 +1,91 @@ |
|||||
package main |
package main |
||||
|
|
||||
import ( |
import ( |
||||
"flag" |
|
||||
|
|
||||
"github.com/chrislusf/seaweedfs/weed/glog" |
|
||||
"github.com/chrislusf/seaweedfs/weed/storage" |
|
||||
"github.com/chrislusf/seaweedfs/weed/storage/needle" |
|
||||
"os" |
|
||||
"path/filepath" |
|
||||
|
|
||||
"fmt" |
|
||||
|
"flag" |
||||
|
"fmt" |
||||
|
"os" |
||||
|
"path/filepath" |
||||
|
|
||||
|
"github.com/chrislusf/seaweedfs/weed/glog" |
||||
|
"github.com/chrislusf/seaweedfs/weed/storage" |
||||
|
"github.com/chrislusf/seaweedfs/weed/storage/needle" |
||||
) |
) |
||||
|
|
||||
var ( |
var ( |
||||
volumePath = flag.String("dir", "/tmp", "data directory to store files") |
|
||||
volumeCollection = flag.String("collection", "", "the volume collection name") |
|
||||
volumeId = flag.Int("volumeId", -1, "a volume id. The volume should already exist in the dir. The volume index file should not exist.") |
|
||||
|
volumePath = flag.String("dir", "/tmp", "data directory to store files") |
||||
|
volumeCollection = flag.String("collection", "", "the volume collection name") |
||||
|
volumeId = flag.Int("volumeId", -1, "a volume id. The volume should already exist in the dir. The volume index file should not exist.") |
||||
) |
) |
||||
|
|
||||
func Checksum(n* needle.Needle) string { |
|
||||
return fmt.Sprintf("%s%x", n.Id, n.Cookie) |
|
||||
|
func Checksum(n *needle.Needle) string { |
||||
|
return fmt.Sprintf("%s%x", n.Id, n.Cookie) |
||||
} |
} |
||||
|
|
||||
type VolumeFileScanner4SeeDat struct { |
type VolumeFileScanner4SeeDat struct { |
||||
version needle.Version |
|
||||
block storage.SuperBlock |
|
||||
|
version needle.Version |
||||
|
block storage.SuperBlock |
||||
|
|
||||
dir string |
|
||||
hashes map[string]bool |
|
||||
dat * os.File |
|
||||
|
dir string |
||||
|
hashes map[string]bool |
||||
|
dat *os.File |
||||
} |
} |
||||
|
|
||||
func (scanner *VolumeFileScanner4SeeDat) VisitSuperBlock(superBlock storage.SuperBlock) error { |
func (scanner *VolumeFileScanner4SeeDat) VisitSuperBlock(superBlock storage.SuperBlock) error { |
||||
scanner.version = superBlock.Version() |
|
||||
scanner.block = superBlock |
|
||||
return nil |
|
||||
|
scanner.version = superBlock.Version() |
||||
|
scanner.block = superBlock |
||||
|
return nil |
||||
|
|
||||
} |
} |
||||
func (scanner *VolumeFileScanner4SeeDat) ReadNeedleBody() bool { |
func (scanner *VolumeFileScanner4SeeDat) ReadNeedleBody() bool { |
||||
return true |
|
||||
|
return true |
||||
} |
} |
||||
|
|
||||
func (scanner *VolumeFileScanner4SeeDat) VisitNeedle(n *needle.Needle, offset int64) error { |
func (scanner *VolumeFileScanner4SeeDat) VisitNeedle(n *needle.Needle, offset int64) error { |
||||
|
|
||||
if scanner.dat == nil { |
|
||||
newDatFile, err := os.Create(filepath.Join(*volumePath, "dat_fixed")) |
|
||||
if err != nil { |
|
||||
glog.Fatalf("Write New Volume Data %v", err) |
|
||||
|
if scanner.dat == nil { |
||||
|
newDatFile, err := os.Create(filepath.Join(*volumePath, "dat_fixed")) |
||||
|
if err != nil { |
||||
|
glog.Fatalf("Write New Volume Data %v", err) |
||||
|
} |
||||
|
scanner.dat = newDatFile |
||||
|
scanner.dat.Write(scanner.block.Bytes()) |
||||
} |
} |
||||
scanner.dat = newDatFile |
|
||||
scanner.dat.Write(scanner.block.Bytes()) |
|
||||
} |
|
||||
|
|
||||
checksum := Checksum(n) |
|
||||
|
checksum := Checksum(n) |
||||
|
|
||||
if scanner.hashes[checksum] { |
|
||||
glog.V(0).Infof("duplicate checksum:%s fid:%d,%s%x @ offset:%d", checksum, *volumeId, n.Id, n.Cookie, offset) |
|
||||
return nil |
|
||||
} |
|
||||
scanner.hashes[checksum] = true |
|
||||
|
if scanner.hashes[checksum] { |
||||
|
glog.V(0).Infof("duplicate checksum:%s fid:%d,%s%x @ offset:%d", checksum, *volumeId, n.Id, n.Cookie, offset) |
||||
|
return nil |
||||
|
} |
||||
|
scanner.hashes[checksum] = true |
||||
|
|
||||
_, s, _, e := n.Append(scanner.dat, scanner.version) |
|
||||
fmt.Printf("size %d error %v\n", s, e) |
|
||||
|
_, s, _, e := n.Append(scanner.dat, scanner.version) |
||||
|
fmt.Printf("size %d error %v\n", s, e) |
||||
|
|
||||
return nil |
|
||||
|
return nil |
||||
} |
} |
||||
|
|
||||
func main() { |
func main() { |
||||
flag.Parse() |
|
||||
|
flag.Parse() |
||||
|
|
||||
vid := needle.VolumeId(*volumeId) |
|
||||
|
vid := needle.VolumeId(*volumeId) |
||||
|
|
||||
outpath, _ := filepath.Abs(filepath.Dir(os.Args[0])) |
|
||||
|
outpath, _ := filepath.Abs(filepath.Dir(os.Args[0])) |
||||
|
|
||||
scanner := &VolumeFileScanner4SeeDat{ |
|
||||
dir: filepath.Join(outpath, "out"), |
|
||||
hashes: map[string]bool{}, |
|
||||
} |
|
||||
|
scanner := &VolumeFileScanner4SeeDat{ |
||||
|
dir: filepath.Join(outpath, "out"), |
||||
|
hashes: map[string]bool{}, |
||||
|
} |
||||
|
|
||||
if _, err := os.Stat(scanner.dir); err != nil { |
|
||||
if err := os.MkdirAll(scanner.dir, os.ModePerm); err != nil { |
|
||||
glog.Fatalf("could not create output dir : %s", err) |
|
||||
} |
|
||||
} |
|
||||
|
if _, err := os.Stat(scanner.dir); err != nil { |
||||
|
if err := os.MkdirAll(scanner.dir, os.ModePerm); err != nil { |
||||
|
glog.Fatalf("could not create output dir : %s", err) |
||||
|
} |
||||
|
} |
||||
|
|
||||
err := storage.ScanVolumeFile(*volumePath, *volumeCollection, vid, storage.NeedleMapInMemory, scanner) |
|
||||
if err != nil { |
|
||||
glog.Fatalf("Reading Volume File [ERROR] %s\n", err) |
|
||||
} |
|
||||
|
err := storage.ScanVolumeFile(*volumePath, *volumeCollection, vid, storage.NeedleMapInMemory, scanner) |
||||
|
if err != nil { |
||||
|
glog.Fatalf("Reading Volume File [ERROR] %s\n", err) |
||||
|
} |
||||
|
|
||||
} |
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue