2011-12-16 14:51:26 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2013-07-04 05:14:16 +00:00
|
|
|
"fmt"
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2018-05-10 06:11:54 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
2018-07-22 00:39:10 +00:00
|
|
|
. "github.com/chrislusf/seaweedfs/weed/storage/types"
|
2011-12-16 14:51:26 +00:00
|
|
|
)
|
|
|
|
|
2014-09-20 19:38:59 +00:00
|
|
|
const (
|
|
|
|
MAX_TTL_VOLUME_REMOVAL_DELAY = 10 // 10 minutes
|
|
|
|
)
|
|
|
|
|
2014-12-26 07:36:33 +00:00
|
|
|
/*
|
|
|
|
* A VolumeServer contains one Store
|
|
|
|
*/
|
2013-07-13 18:38:01 +00:00
|
|
|
type Store struct {
|
2018-08-24 08:26:56 +00:00
|
|
|
Ip string
|
|
|
|
Port int
|
|
|
|
PublicUrl string
|
|
|
|
Locations []*DiskLocation
|
|
|
|
dataCenter string //optional informaton, overwriting master setting if exists
|
|
|
|
rack string //optional information, overwriting master setting if exists
|
|
|
|
connected bool
|
|
|
|
VolumeSizeLimit uint64 //read from the master
|
|
|
|
Client master_pb.Seaweed_SendHeartbeatClient
|
|
|
|
NeedleMapType NeedleMapType
|
|
|
|
NewVolumeIdChan chan VolumeId
|
|
|
|
DeletedVolumeIdChan chan VolumeId
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
|
2014-12-26 07:36:33 +00:00
|
|
|
func (s *Store) String() (str string) {
|
2017-01-10 09:01:12 +00:00
|
|
|
str = fmt.Sprintf("Ip:%s, Port:%d, PublicUrl:%s, dataCenter:%s, rack:%s, connected:%v, volumeSizeLimit:%d", s.Ip, s.Port, s.PublicUrl, s.dataCenter, s.rack, s.connected, s.VolumeSizeLimit)
|
2014-12-26 07:36:33 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
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
|
|
|
func NewStore(port int, ip, publicUrl string, dirnames []string, maxVolumeCounts []int, needleMapKind NeedleMapType) (s *Store) {
|
2017-01-20 11:49:20 +00:00
|
|
|
s = &Store{Port: port, Ip: ip, PublicUrl: publicUrl, NeedleMapType: needleMapKind}
|
2014-03-26 20:22:27 +00:00
|
|
|
s.Locations = make([]*DiskLocation, 0)
|
2013-07-13 18:38:01 +00:00
|
|
|
for i := 0; i < len(dirnames); i++ {
|
2016-04-27 03:45:35 +00:00
|
|
|
location := NewDiskLocation(dirnames[i], maxVolumeCounts[i])
|
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
|
|
|
location.loadExistingVolumes(needleMapKind)
|
2014-03-26 20:22:27 +00:00
|
|
|
s.Locations = append(s.Locations, location)
|
2013-07-13 18:38:01 +00:00
|
|
|
}
|
2018-08-24 08:26:56 +00:00
|
|
|
s.NewVolumeIdChan = make(chan VolumeId, 3)
|
|
|
|
s.DeletedVolumeIdChan = make(chan VolumeId, 3)
|
2011-12-29 01:46:38 +00:00
|
|
|
return
|
|
|
|
}
|
2018-10-15 07:40:46 +00:00
|
|
|
func (s *Store) AddVolume(volumeId VolumeId, collection string, needleMapKind NeedleMapType, replicaPlacement string, ttlString string, preallocate int64) error {
|
2014-03-03 06:16:54 +00:00
|
|
|
rt, e := NewReplicaPlacementFromString(replicaPlacement)
|
2012-09-26 08:55:56 +00:00
|
|
|
if e != nil {
|
|
|
|
return e
|
|
|
|
}
|
2014-09-20 19:38:59 +00:00
|
|
|
ttl, e := ReadTTL(ttlString)
|
|
|
|
if e != nil {
|
|
|
|
return e
|
|
|
|
}
|
2018-10-15 07:40:46 +00:00
|
|
|
e = s.addVolume(volumeId, collection, needleMapKind, rt, ttl, preallocate)
|
2012-09-13 07:04:56 +00:00
|
|
|
return e
|
2011-12-29 01:46:38 +00:00
|
|
|
}
|
2014-03-10 18:43:54 +00:00
|
|
|
func (s *Store) DeleteCollection(collection string) (e error) {
|
2014-03-26 20:22:27 +00:00
|
|
|
for _, location := range s.Locations {
|
2016-04-27 03:45:35 +00:00
|
|
|
e = location.DeleteCollectionFromDiskLocation(collection)
|
|
|
|
if e != nil {
|
|
|
|
return
|
2014-03-10 18:43:54 +00:00
|
|
|
}
|
2018-08-24 08:26:56 +00:00
|
|
|
// let the heartbeat send the list of volumes, instead of sending the deleted volume ids to DeletedVolumeIdChan
|
2014-03-10 18:43:54 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2016-04-27 03:45:35 +00:00
|
|
|
|
2013-07-13 18:38:01 +00:00
|
|
|
func (s *Store) findVolume(vid VolumeId) *Volume {
|
2014-03-26 20:22:27 +00:00
|
|
|
for _, location := range s.Locations {
|
2016-11-07 04:55:22 +00:00
|
|
|
if v, found := location.FindVolume(vid); found {
|
2013-07-13 18:38:01 +00:00
|
|
|
return v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
func (s *Store) findFreeLocation() (ret *DiskLocation) {
|
|
|
|
max := 0
|
2014-03-26 20:22:27 +00:00
|
|
|
for _, location := range s.Locations {
|
2016-11-07 04:55:22 +00:00
|
|
|
currentFreeCount := location.MaxVolumeCount - location.VolumesLen()
|
2013-07-13 18:38:01 +00:00
|
|
|
if currentFreeCount > max {
|
|
|
|
max = currentFreeCount
|
|
|
|
ret = location
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
2017-01-08 19:01:46 +00:00
|
|
|
func (s *Store) addVolume(vid VolumeId, collection string, needleMapKind NeedleMapType, replicaPlacement *ReplicaPlacement, ttl *TTL, preallocate int64) error {
|
2013-07-13 18:38:01 +00:00
|
|
|
if s.findVolume(vid) != nil {
|
2014-04-17 07:16:44 +00:00
|
|
|
return fmt.Errorf("Volume Id %d already exists!", vid)
|
2012-06-29 07:53:47 +00:00
|
|
|
}
|
2013-07-13 18:38:01 +00:00
|
|
|
if location := s.findFreeLocation(); location != nil {
|
2014-09-20 19:38:59 +00:00
|
|
|
glog.V(0).Infof("In dir %s adds volume:%v collection:%s replicaPlacement:%v ttl:%v",
|
|
|
|
location.Directory, vid, collection, replicaPlacement, ttl)
|
2017-01-08 19:01:46 +00:00
|
|
|
if volume, err := NewVolume(location.Directory, collection, vid, needleMapKind, replicaPlacement, ttl, preallocate); err == nil {
|
2016-11-07 04:55:22 +00:00
|
|
|
location.SetVolume(vid, volume)
|
2018-08-24 08:26:56 +00:00
|
|
|
s.NewVolumeIdChan <- vid
|
2013-09-02 06:58:21 +00:00
|
|
|
return nil
|
2013-07-20 03:38:00 +00:00
|
|
|
} else {
|
2013-09-02 06:58:21 +00:00
|
|
|
return err
|
2013-07-20 03:38:00 +00:00
|
|
|
}
|
2013-07-13 18:38:01 +00:00
|
|
|
}
|
|
|
|
return fmt.Errorf("No more free space left")
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2012-11-07 09:51:43 +00:00
|
|
|
|
2012-09-17 00:31:15 +00:00
|
|
|
func (s *Store) Status() []*VolumeInfo {
|
|
|
|
var stats []*VolumeInfo
|
2014-03-26 20:22:27 +00:00
|
|
|
for _, location := range s.Locations {
|
2016-11-07 04:55:22 +00:00
|
|
|
location.RLock()
|
2013-07-13 18:38:01 +00:00
|
|
|
for k, v := range location.volumes {
|
2015-04-20 17:16:23 +00:00
|
|
|
s := &VolumeInfo{
|
|
|
|
Id: VolumeId(k),
|
|
|
|
Size: v.ContentSize(),
|
2013-11-12 10:21:22 +00:00
|
|
|
Collection: v.Collection,
|
2014-03-03 06:16:54 +00:00
|
|
|
ReplicaPlacement: v.ReplicaPlacement,
|
2013-11-12 10:21:22 +00:00
|
|
|
Version: v.Version(),
|
2013-07-13 18:38:01 +00:00
|
|
|
FileCount: v.nm.FileCount(),
|
|
|
|
DeleteCount: v.nm.DeletedCount(),
|
|
|
|
DeletedByteCount: v.nm.DeletedSize(),
|
2015-03-22 19:50:04 +00:00
|
|
|
ReadOnly: v.readOnly,
|
|
|
|
Ttl: v.Ttl}
|
2013-07-13 18:38:01 +00:00
|
|
|
stats = append(stats, s)
|
|
|
|
}
|
2016-11-07 04:55:22 +00:00
|
|
|
location.RUnlock()
|
2011-12-26 09:43:17 +00:00
|
|
|
}
|
2015-04-20 17:16:23 +00:00
|
|
|
sortVolumeInfos(stats)
|
2011-12-26 09:43:17 +00:00
|
|
|
return stats
|
2011-12-22 04:04:47 +00:00
|
|
|
}
|
2012-12-04 06:54:08 +00:00
|
|
|
|
2013-06-20 01:10:38 +00:00
|
|
|
func (s *Store) SetDataCenter(dataCenter string) {
|
|
|
|
s.dataCenter = dataCenter
|
|
|
|
}
|
|
|
|
func (s *Store) SetRack(rack string) {
|
|
|
|
s.rack = rack
|
|
|
|
}
|
2014-02-15 01:10:49 +00:00
|
|
|
|
2018-05-10 06:11:54 +00:00
|
|
|
func (s *Store) CollectHeartbeat() *master_pb.Heartbeat {
|
|
|
|
var volumeMessages []*master_pb.VolumeInformationMessage
|
2013-07-13 18:38:01 +00:00
|
|
|
maxVolumeCount := 0
|
2018-07-08 09:28:04 +00:00
|
|
|
var maxFileKey NeedleId
|
2014-03-26 20:22:27 +00:00
|
|
|
for _, location := range s.Locations {
|
|
|
|
maxVolumeCount = maxVolumeCount + location.MaxVolumeCount
|
2016-11-07 04:55:22 +00:00
|
|
|
location.Lock()
|
2013-07-13 18:38:01 +00:00
|
|
|
for k, v := range location.volumes {
|
2014-04-17 06:43:27 +00:00
|
|
|
if maxFileKey < v.nm.MaxFileKey() {
|
|
|
|
maxFileKey = v.nm.MaxFileKey()
|
|
|
|
}
|
2017-01-10 09:01:12 +00:00
|
|
|
if !v.expired(s.VolumeSizeLimit) {
|
2018-05-10 06:11:54 +00:00
|
|
|
volumeMessage := &master_pb.VolumeInformationMessage{
|
2017-01-10 09:01:12 +00:00
|
|
|
Id: uint32(k),
|
|
|
|
Size: uint64(v.Size()),
|
|
|
|
Collection: v.Collection,
|
|
|
|
FileCount: uint64(v.nm.FileCount()),
|
|
|
|
DeleteCount: uint64(v.nm.DeletedCount()),
|
|
|
|
DeletedByteCount: v.nm.DeletedSize(),
|
|
|
|
ReadOnly: v.readOnly,
|
|
|
|
ReplicaPlacement: uint32(v.ReplicaPlacement.Byte()),
|
|
|
|
Version: uint32(v.Version()),
|
|
|
|
Ttl: v.Ttl.ToUint32(),
|
2014-09-20 19:38:59 +00:00
|
|
|
}
|
|
|
|
volumeMessages = append(volumeMessages, volumeMessage)
|
|
|
|
} else {
|
2019-01-17 01:17:19 +00:00
|
|
|
if v.expiredLongEnough(MAX_TTL_VOLUME_REMOVAL_DELAY) {
|
2016-04-27 03:45:35 +00:00
|
|
|
location.deleteVolumeById(v.Id)
|
2014-09-20 19:38:59 +00:00
|
|
|
glog.V(0).Infoln("volume", v.Id, "is deleted.")
|
|
|
|
} else {
|
|
|
|
glog.V(0).Infoln("volume", v.Id, "is expired.")
|
|
|
|
}
|
|
|
|
}
|
2013-07-13 18:38:01 +00:00
|
|
|
}
|
2016-11-07 04:55:22 +00:00
|
|
|
location.Unlock()
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2014-04-21 09:11:10 +00:00
|
|
|
|
2018-05-10 06:11:54 +00:00
|
|
|
return &master_pb.Heartbeat{
|
2017-01-10 09:01:12 +00:00
|
|
|
Ip: s.Ip,
|
|
|
|
Port: uint32(s.Port),
|
|
|
|
PublicUrl: s.PublicUrl,
|
|
|
|
MaxVolumeCount: uint32(maxVolumeCount),
|
2018-07-08 09:28:04 +00:00
|
|
|
MaxFileKey: NeedleIdToUint64(maxFileKey),
|
2017-01-10 09:01:12 +00:00
|
|
|
DataCenter: s.dataCenter,
|
|
|
|
Rack: s.rack,
|
2014-04-21 09:11:10 +00:00
|
|
|
Volumes: volumeMessages,
|
2012-12-23 00:26:02 +00:00
|
|
|
}
|
2014-04-21 09:11:10 +00:00
|
|
|
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
func (s *Store) Close() {
|
2014-03-26 20:22:27 +00:00
|
|
|
for _, location := range s.Locations {
|
2016-11-07 04:55:22 +00:00
|
|
|
location.Close()
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
}
|
2017-01-20 11:49:20 +00:00
|
|
|
|
2013-01-20 11:40:04 +00:00
|
|
|
func (s *Store) Write(i VolumeId, n *Needle) (size uint32, err error) {
|
2013-07-13 18:38:01 +00:00
|
|
|
if v := s.findVolume(i); v != nil {
|
2013-04-15 02:34:37 +00:00
|
|
|
if v.readOnly {
|
2015-03-10 07:20:31 +00:00
|
|
|
err = fmt.Errorf("Volume %d is read only", i)
|
2013-04-18 07:23:14 +00:00
|
|
|
return
|
2015-03-10 07:20:31 +00:00
|
|
|
}
|
2017-01-08 01:16:29 +00:00
|
|
|
// TODO: count needle size ahead
|
2015-03-10 07:20:31 +00:00
|
|
|
if MaxPossibleVolumeSize >= v.ContentSize()+uint64(size) {
|
2018-12-31 23:08:32 +00:00
|
|
|
_, size, err = v.writeNeedle(n)
|
2013-04-15 02:34:37 +00:00
|
|
|
} else {
|
2017-01-10 09:01:12 +00:00
|
|
|
err = fmt.Errorf("Volume Size Limit %d Exceeded! Current size is %d", s.VolumeSizeLimit, v.ContentSize())
|
2015-03-10 07:20:31 +00:00
|
|
|
}
|
2013-01-20 11:40:04 +00:00
|
|
|
return
|
2012-09-11 00:08:52 +00:00
|
|
|
}
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.V(0).Infoln("volume", i, "not found!")
|
2014-04-17 07:16:44 +00:00
|
|
|
err = fmt.Errorf("Volume %d not found!", i)
|
2013-01-20 11:40:04 +00:00
|
|
|
return
|
2012-01-19 00:49:41 +00:00
|
|
|
}
|
2017-01-20 11:49:20 +00:00
|
|
|
|
2013-01-20 11:40:04 +00:00
|
|
|
func (s *Store) Delete(i VolumeId, n *Needle) (uint32, error) {
|
2013-07-13 18:38:01 +00:00
|
|
|
if v := s.findVolume(i); v != nil && !v.readOnly {
|
2016-07-03 07:10:27 +00:00
|
|
|
return v.deleteNeedle(n)
|
2012-09-11 00:08:52 +00:00
|
|
|
}
|
2013-01-20 11:40:04 +00:00
|
|
|
return 0, nil
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2017-01-20 11:49:20 +00:00
|
|
|
|
2015-05-26 07:58:41 +00:00
|
|
|
func (s *Store) ReadVolumeNeedle(i VolumeId, n *Needle) (int, error) {
|
2013-07-13 18:38:01 +00:00
|
|
|
if v := s.findVolume(i); v != nil {
|
2015-05-26 07:58:41 +00:00
|
|
|
return v.readNeedle(n)
|
2012-09-11 00:08:52 +00:00
|
|
|
}
|
2017-01-20 11:49:20 +00:00
|
|
|
return 0, fmt.Errorf("Volume %d not found!", i)
|
2012-09-11 00:08:52 +00:00
|
|
|
}
|
2012-09-21 00:58:29 +00:00
|
|
|
func (s *Store) GetVolume(i VolumeId) *Volume {
|
2013-07-13 18:38:01 +00:00
|
|
|
return s.findVolume(i)
|
2012-09-21 00:58:29 +00:00
|
|
|
}
|
2012-09-11 00:08:52 +00:00
|
|
|
|
2012-09-20 09:47:32 +00:00
|
|
|
func (s *Store) HasVolume(i VolumeId) bool {
|
2013-07-13 18:38:01 +00:00
|
|
|
v := s.findVolume(i)
|
|
|
|
return v != nil
|
2012-09-20 09:47:32 +00:00
|
|
|
}
|
2017-01-20 11:49:20 +00:00
|
|
|
|
|
|
|
func (s *Store) MountVolume(i VolumeId) error {
|
|
|
|
for _, location := range s.Locations {
|
|
|
|
if found := location.LoadVolume(i, s.NeedleMapType); found == true {
|
2018-08-24 08:26:56 +00:00
|
|
|
s.NewVolumeIdChan <- VolumeId(i)
|
2017-01-20 11:49:20 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("Volume %d not found on disk", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Store) UnmountVolume(i VolumeId) error {
|
|
|
|
for _, location := range s.Locations {
|
|
|
|
if err := location.UnloadVolume(i); err == nil {
|
2018-08-24 08:26:56 +00:00
|
|
|
s.DeletedVolumeIdChan <- VolumeId(i)
|
2017-01-20 11:49:20 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("Volume %d not found on disk", i)
|
|
|
|
}
|
2018-12-29 08:03:30 +00:00
|
|
|
|
|
|
|
func (s *Store) DeleteVolume(i VolumeId) error {
|
|
|
|
for _, location := range s.Locations {
|
|
|
|
if error := location.deleteVolumeById(i); error == nil {
|
|
|
|
s.DeletedVolumeIdChan <- VolumeId(i)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("Volume %d not found on disk", i)
|
|
|
|
}
|