2014-05-20 02:24:35 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2014-05-20 03:54:39 +00:00
|
|
|
"fmt"
|
2014-05-20 02:24:35 +00:00
|
|
|
"os"
|
2014-09-20 19:38:59 +00:00
|
|
|
"time"
|
2014-10-26 18:34:55 +00:00
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2014-05-20 02:24:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (v *Volume) garbageLevel() float64 {
|
|
|
|
return float64(v.nm.DeletedSize()) / float64(v.ContentSize())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Volume) Compact() error {
|
2014-05-27 00:34:54 +00:00
|
|
|
glog.V(3).Infof("Compacting ...")
|
2014-09-20 19:38:59 +00:00
|
|
|
//no need to lock for copy on write
|
|
|
|
//v.accessLock.Lock()
|
|
|
|
//defer v.accessLock.Unlock()
|
|
|
|
//glog.V(3).Infof("Got Compaction lock...")
|
2014-05-20 02:24:35 +00:00
|
|
|
|
|
|
|
filePath := v.FileName()
|
|
|
|
glog.V(3).Infof("creating copies for volume %d ...", v.Id)
|
|
|
|
return v.copyDataAndGenerateIndexFile(filePath+".cpd", filePath+".cpx")
|
|
|
|
}
|
|
|
|
func (v *Volume) commitCompact() error {
|
2014-05-27 00:34:54 +00:00
|
|
|
glog.V(3).Infof("Committing vacuuming...")
|
2015-05-23 17:16:01 +00:00
|
|
|
v.dataFileAccessLock.Lock()
|
|
|
|
defer v.dataFileAccessLock.Unlock()
|
2014-05-27 00:34:54 +00:00
|
|
|
glog.V(3).Infof("Got Committing lock...")
|
2016-05-09 17:04:21 +00:00
|
|
|
v.nm.Close()
|
2014-05-20 02:24:35 +00:00
|
|
|
_ = v.dataFile.Close()
|
|
|
|
var e error
|
|
|
|
if e = os.Rename(v.FileName()+".cpd", v.FileName()+".dat"); e != nil {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
if e = os.Rename(v.FileName()+".cpx", v.FileName()+".idx"); e != nil {
|
|
|
|
return e
|
|
|
|
}
|
2014-05-27 00:34:54 +00:00
|
|
|
//glog.V(3).Infof("Pretending to be vacuuming...")
|
|
|
|
//time.Sleep(20 * time.Second)
|
2015-07-11 19:20:09 +00:00
|
|
|
glog.V(3).Infof("Loading Commit file...")
|
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 e = v.load(true, false, v.needleMapKind); e != nil {
|
2014-05-20 02:24:35 +00:00
|
|
|
return e
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2014-05-20 03:54:39 +00:00
|
|
|
|
|
|
|
func (v *Volume) copyDataAndGenerateIndexFile(dstName, idxName string) (err error) {
|
|
|
|
var (
|
|
|
|
dst, idx *os.File
|
|
|
|
)
|
|
|
|
if dst, err = os.OpenFile(dstName, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer dst.Close()
|
|
|
|
|
|
|
|
if idx, err = os.OpenFile(idxName, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer idx.Close()
|
|
|
|
|
|
|
|
nm := NewNeedleMap(idx)
|
|
|
|
new_offset := int64(SuperBlockSize)
|
|
|
|
|
2014-09-20 19:38:59 +00:00
|
|
|
now := uint64(time.Now().Unix())
|
|
|
|
|
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 = ScanVolumeFile(v.dir, v.Collection, v.Id, v.needleMapKind,
|
|
|
|
func(superBlock SuperBlock) error {
|
2015-05-09 06:43:59 +00:00
|
|
|
superBlock.CompactRevision++
|
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 = dst.Write(superBlock.Bytes())
|
|
|
|
return err
|
|
|
|
}, true, func(n *Needle, offset int64) error {
|
|
|
|
if n.HasTtl() && now >= n.LastModified+uint64(v.Ttl.Minutes()*60) {
|
|
|
|
return nil
|
2014-05-20 03:54:39 +00:00
|
|
|
}
|
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
|
|
|
nv, ok := v.nm.Get(n.Id)
|
|
|
|
glog.V(4).Infoln("needle expected offset ", offset, "ok", ok, "nv", nv)
|
|
|
|
if ok && int64(nv.Offset)*NeedlePaddingSize == offset && nv.Size > 0 {
|
|
|
|
if err = nm.Put(n.Id, uint32(new_offset/NeedlePaddingSize), n.Size); err != nil {
|
|
|
|
return fmt.Errorf("cannot put needle: %s", err)
|
|
|
|
}
|
|
|
|
if _, err = n.Append(dst, v.Version()); err != nil {
|
|
|
|
return fmt.Errorf("cannot append needle: %s", err)
|
|
|
|
}
|
|
|
|
new_offset += n.DiskSize()
|
|
|
|
glog.V(3).Infoln("saving key", n.Id, "volume offset", offset, "=>", new_offset, "data_size", n.Size)
|
2014-05-20 03:54:39 +00:00
|
|
|
}
|
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
|
|
|
|
})
|
2014-05-20 03:54:39 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|