2016-06-03 01:09:14 +00:00
|
|
|
package command
|
2012-08-07 01:20:26 +00:00
|
|
|
|
|
|
|
import (
|
2012-12-21 06:32:21 +00:00
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"strconv"
|
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"
|
2018-07-08 09:28:04 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/types"
|
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")
|
|
|
|
fixVolumeId = cmdFix.Flag.Int("volumeId", -1, "a volume id. The volume should already exist in the dir. The volume index file should not exist.")
|
2012-08-07 01:20:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2012-08-07 01:20:26 +00:00
|
|
|
|
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)
|
2013-01-21 03:44:23 +00:00
|
|
|
if err != nil {
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.Fatalf("Create Volume Index [ERROR] %s\n", err)
|
2012-12-21 06:32:21 +00:00
|
|
|
}
|
|
|
|
defer indexFile.Close()
|
2012-08-07 01:20:26 +00:00
|
|
|
|
2017-05-27 05:51:25 +00:00
|
|
|
nm := storage.NewBtreeNeedleMap(indexFile)
|
2013-01-21 03:44:23 +00:00
|
|
|
defer nm.Close()
|
|
|
|
|
2018-07-24 08:36:04 +00:00
|
|
|
var version storage.Version
|
2013-01-21 03:44:23 +00:00
|
|
|
vid := storage.VolumeId(*fixVolumeId)
|
Add boltdb for volume needle map
boltdb is fairly slow to write, about 6 minutes for recreating index
for 1553934 files. Boltdb loads 1,553,934 x 16 = 24,862,944bytes from
disk, and generate the boltdb as large as 134,217,728 bytes in 6
minutes.
To compare, for leveldb, it recreates index in leveldb as large as
27,188,148 bytes in 8 seconds.
For in memory version, it loads the index in
To test the memory consumption, the leveldb or boltdb index are
created. And the server is restarted. Using the benchmark tool to read
lots of files. There are 7 volumes in benchmark collection, each with
about 1553K files.
For leveldb, the memory starts at 142,884KB, and stays at 179,340KB.
For boltdb, the memory starts at 73,756KB, and stays at 144,564KB.
For in-memory, the memory starts at 368,152KB, and stays at 448,032KB.
2015-03-29 18:04:32 +00:00
|
|
|
err = storage.ScanVolumeFile(*fixVolumePath, *fixVolumeCollection, vid,
|
|
|
|
storage.NeedleMapInMemory,
|
|
|
|
func(superBlock storage.SuperBlock) error {
|
2018-07-24 08:36:04 +00:00
|
|
|
version = superBlock.Version()
|
Add boltdb for volume needle map
boltdb is fairly slow to write, about 6 minutes for recreating index
for 1553934 files. Boltdb loads 1,553,934 x 16 = 24,862,944bytes from
disk, and generate the boltdb as large as 134,217,728 bytes in 6
minutes.
To compare, for leveldb, it recreates index in leveldb as large as
27,188,148 bytes in 8 seconds.
For in memory version, it loads the index in
To test the memory consumption, the leveldb or boltdb index are
created. And the server is restarted. Using the benchmark tool to read
lots of files. There are 7 volumes in benchmark collection, each with
about 1553K files.
For leveldb, the memory starts at 142,884KB, and stays at 179,340KB.
For boltdb, the memory starts at 73,756KB, and stays at 144,564KB.
For in-memory, the memory starts at 368,152KB, and stays at 448,032KB.
2015-03-29 18:04:32 +00:00
|
|
|
return nil
|
|
|
|
}, false, func(n *storage.Needle, offset int64) error {
|
2018-07-24 08:36:04 +00:00
|
|
|
glog.V(2).Infof("key %d offset %d size %d disk_size %d gzip %v", n.Id, offset, n.Size, n.DiskSize(version), n.IsGzipped())
|
Add boltdb for volume needle map
boltdb is fairly slow to write, about 6 minutes for recreating index
for 1553934 files. Boltdb loads 1,553,934 x 16 = 24,862,944bytes from
disk, and generate the boltdb as large as 134,217,728 bytes in 6
minutes.
To compare, for leveldb, it recreates index in leveldb as large as
27,188,148 bytes in 8 seconds.
For in memory version, it loads the index in
To test the memory consumption, the leveldb or boltdb index are
created. And the server is restarted. Using the benchmark tool to read
lots of files. There are 7 volumes in benchmark collection, each with
about 1553K files.
For leveldb, the memory starts at 142,884KB, and stays at 179,340KB.
For boltdb, the memory starts at 73,756KB, and stays at 144,564KB.
For in-memory, the memory starts at 368,152KB, and stays at 448,032KB.
2015-03-29 18:04:32 +00:00
|
|
|
if n.Size > 0 {
|
2018-07-08 09:28:04 +00:00
|
|
|
pe := nm.Put(n.Id, types.Offset(offset/types.NeedlePaddingSize), n.Size)
|
Add boltdb for volume needle map
boltdb is fairly slow to write, about 6 minutes for recreating index
for 1553934 files. Boltdb loads 1,553,934 x 16 = 24,862,944bytes from
disk, and generate the boltdb as large as 134,217,728 bytes in 6
minutes.
To compare, for leveldb, it recreates index in leveldb as large as
27,188,148 bytes in 8 seconds.
For in memory version, it loads the index in
To test the memory consumption, the leveldb or boltdb index are
created. And the server is restarted. Using the benchmark tool to read
lots of files. There are 7 volumes in benchmark collection, each with
about 1553K files.
For leveldb, the memory starts at 142,884KB, and stays at 179,340KB.
For boltdb, the memory starts at 73,756KB, and stays at 144,564KB.
For in-memory, the memory starts at 368,152KB, and stays at 448,032KB.
2015-03-29 18:04:32 +00:00
|
|
|
glog.V(2).Infof("saved %d with error %v", n.Size, pe)
|
|
|
|
} else {
|
|
|
|
glog.V(2).Infof("skipping deleted file ...")
|
2018-07-08 09:28:04 +00:00
|
|
|
return nm.Delete(n.Id, types.Offset(offset/types.NeedlePaddingSize))
|
Add boltdb for volume needle map
boltdb is fairly slow to write, about 6 minutes for recreating index
for 1553934 files. Boltdb loads 1,553,934 x 16 = 24,862,944bytes from
disk, and generate the boltdb as large as 134,217,728 bytes in 6
minutes.
To compare, for leveldb, it recreates index in leveldb as large as
27,188,148 bytes in 8 seconds.
For in memory version, it loads the index in
To test the memory consumption, the leveldb or boltdb index are
created. And the server is restarted. Using the benchmark tool to read
lots of files. There are 7 volumes in benchmark collection, each with
about 1553K files.
For leveldb, the memory starts at 142,884KB, and stays at 179,340KB.
For boltdb, the memory starts at 73,756KB, and stays at 144,564KB.
For in-memory, the memory starts at 368,152KB, and stays at 448,032KB.
2015-03-29 18:04:32 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
2013-01-21 03:44:23 +00:00
|
|
|
if err != nil {
|
2013-08-09 06:57:22 +00:00
|
|
|
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
|
|
|
}
|
2013-01-21 03:44:23 +00:00
|
|
|
|
2013-01-17 08:14:52 +00:00
|
|
|
return true
|
2012-08-07 01:20:26 +00:00
|
|
|
}
|