2011-12-16 14:51:26 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2013-02-10 22:00:06 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2015-05-26 07:58:41 +00:00
|
|
|
"sync"
|
2016-04-10 07:24:22 +00:00
|
|
|
|
2019-04-19 04:43:36 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle_map"
|
2018-07-08 09:28:04 +00:00
|
|
|
. "github.com/chrislusf/seaweedfs/weed/storage/types"
|
2011-12-16 14:51:26 +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
|
|
|
type NeedleMapType int
|
|
|
|
|
|
|
|
const (
|
2019-04-09 16:42:06 +00:00
|
|
|
NeedleMapInMemory NeedleMapType = iota
|
2019-04-18 07:19:18 +00:00
|
|
|
NeedleMapLevelDb // small memory footprint, 4MB total, 1 write buffer, 3 block buffer
|
|
|
|
NeedleMapLevelDbMedium // medium memory footprint, 8MB total, 3 write buffer, 5 block buffer
|
|
|
|
NeedleMapLevelDbLarge // large memory footprint, 12MB total, 4write buffer, 8 block buffer
|
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
|
|
|
)
|
|
|
|
|
2013-04-18 07:23:14 +00:00
|
|
|
type NeedleMapper interface {
|
2018-07-08 09:28:04 +00:00
|
|
|
Put(key NeedleId, offset Offset, size uint32) error
|
2019-04-19 04:43:36 +00:00
|
|
|
Get(key NeedleId) (element *needle_map.NeedleValue, ok bool)
|
2018-07-08 09:28:04 +00:00
|
|
|
Delete(key NeedleId, offset Offset) error
|
2013-04-18 07:23:14 +00:00
|
|
|
Close()
|
2014-03-10 18:43:54 +00:00
|
|
|
Destroy() error
|
2013-04-18 07:23:14 +00:00
|
|
|
ContentSize() uint64
|
|
|
|
DeletedSize() uint64
|
|
|
|
FileCount() int
|
|
|
|
DeletedCount() int
|
2018-07-08 09:28:04 +00:00
|
|
|
MaxFileKey() NeedleId
|
2015-05-26 07:58:41 +00:00
|
|
|
IndexFileSize() uint64
|
2020-03-21 06:38:46 +00:00
|
|
|
Sync() error
|
2013-04-18 07:23:14 +00:00
|
|
|
}
|
|
|
|
|
2015-05-26 07:58:41 +00:00
|
|
|
type baseNeedleMapper struct {
|
2019-05-04 15:47:11 +00:00
|
|
|
mapMetric
|
|
|
|
|
2015-05-26 07:58:41 +00:00
|
|
|
indexFile *os.File
|
|
|
|
indexFileAccessLock sync.Mutex
|
2013-04-18 07:23:14 +00:00
|
|
|
}
|
|
|
|
|
2016-04-10 05:47:03 +00:00
|
|
|
func (nm *baseNeedleMapper) IndexFileSize() uint64 {
|
2015-05-26 07:58:41 +00:00
|
|
|
stat, err := nm.indexFile.Stat()
|
|
|
|
if err == nil {
|
|
|
|
return uint64(stat.Size())
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-07-08 09:28:04 +00:00
|
|
|
func (nm *baseNeedleMapper) appendToIndexFile(key NeedleId, offset Offset, size uint32) error {
|
2019-05-19 05:46:24 +00:00
|
|
|
bytes := needle_map.ToBytes(key, offset, size)
|
2015-05-26 07:58:41 +00:00
|
|
|
|
|
|
|
nm.indexFileAccessLock.Lock()
|
|
|
|
defer nm.indexFileAccessLock.Unlock()
|
|
|
|
if _, err := nm.indexFile.Seek(0, 2); err != nil {
|
2015-03-27 23:34:58 +00:00
|
|
|
return fmt.Errorf("cannot seek end of indexfile %s: %v",
|
2015-05-26 07:58:41 +00:00
|
|
|
nm.indexFile.Name(), err)
|
2014-05-30 02:19:03 +00:00
|
|
|
}
|
2015-05-26 07:58:41 +00:00
|
|
|
_, err := nm.indexFile.Write(bytes)
|
2015-03-27 23:34:58 +00:00
|
|
|
return err
|
2011-12-19 05:59:37 +00:00
|
|
|
}
|
2020-03-21 06:38:46 +00:00
|
|
|
|
|
|
|
func (nm *baseNeedleMapper) Sync() error {
|
|
|
|
return nm.indexFile.Sync()
|
|
|
|
}
|