2012-08-24 05:33:37 +00:00
|
|
|
package topology
|
|
|
|
|
|
|
|
import (
|
2014-10-26 18:34:55 +00:00
|
|
|
"errors"
|
|
|
|
"math/rand"
|
|
|
|
|
2015-05-03 19:37:49 +00:00
|
|
|
"github.com/chrislusf/raft"
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2018-07-11 09:01:33 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/sequence"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2012-08-24 05:33:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Topology struct {
|
2012-09-02 21:33:48 +00:00
|
|
|
NodeImpl
|
2012-09-10 07:18:07 +00:00
|
|
|
|
2014-12-09 04:29:25 +00:00
|
|
|
collectionMap *util.ConcurrentReadMap
|
2012-09-10 07:18:07 +00:00
|
|
|
|
|
|
|
pulse int64
|
|
|
|
|
|
|
|
volumeSizeLimit uint64
|
|
|
|
|
2014-04-17 06:43:27 +00:00
|
|
|
Sequence sequence.Sequencer
|
2012-09-18 21:05:12 +00:00
|
|
|
|
2017-01-10 09:01:12 +00:00
|
|
|
chanFullVolumes chan storage.VolumeInfo
|
2012-09-24 09:01:53 +00:00
|
|
|
|
2017-01-10 09:01:12 +00:00
|
|
|
Configuration *Configuration
|
2014-03-16 06:03:49 +00:00
|
|
|
|
|
|
|
RaftServer raft.Server
|
2012-08-31 08:35:11 +00:00
|
|
|
}
|
2012-08-28 08:04:39 +00:00
|
|
|
|
2017-02-13 05:58:44 +00:00
|
|
|
func NewTopology(id string, seq sequence.Sequencer, volumeSizeLimit uint64, pulse int) *Topology {
|
2012-09-02 21:33:48 +00:00
|
|
|
t := &Topology{}
|
|
|
|
t.id = NodeId(id)
|
|
|
|
t.nodeType = "Topology"
|
2012-09-19 08:45:30 +00:00
|
|
|
t.NodeImpl.value = t
|
2012-09-02 21:33:48 +00:00
|
|
|
t.children = make(map[NodeId]Node)
|
2014-12-09 04:29:25 +00:00
|
|
|
t.collectionMap = util.NewConcurrentReadMap()
|
2012-09-10 07:18:07 +00:00
|
|
|
t.pulse = int64(pulse)
|
|
|
|
t.volumeSizeLimit = volumeSizeLimit
|
2012-09-19 08:45:30 +00:00
|
|
|
|
2014-04-17 06:43:27 +00:00
|
|
|
t.Sequence = seq
|
2012-09-19 08:45:30 +00:00
|
|
|
|
2012-12-04 04:28:12 +00:00
|
|
|
t.chanFullVolumes = make(chan storage.VolumeInfo)
|
2012-09-19 08:45:30 +00:00
|
|
|
|
2017-02-13 05:58:44 +00:00
|
|
|
t.Configuration = &Configuration{}
|
2012-09-24 09:01:53 +00:00
|
|
|
|
2017-02-13 05:58:44 +00:00
|
|
|
return t
|
2012-09-02 21:33:48 +00:00
|
|
|
}
|
2012-09-17 00:31:15 +00:00
|
|
|
|
2014-03-16 06:03:49 +00:00
|
|
|
func (t *Topology) IsLeader() bool {
|
2019-01-28 18:36:16 +00:00
|
|
|
if t.RaftServer!=nil {
|
|
|
|
return t.RaftServer.State() == raft.Leader
|
|
|
|
}
|
2014-04-11 23:23:58 +00:00
|
|
|
if leader, e := t.Leader(); e == nil {
|
|
|
|
return leader == t.RaftServer.Name()
|
|
|
|
}
|
|
|
|
return false
|
2014-03-16 06:03:49 +00:00
|
|
|
}
|
|
|
|
|
2014-04-11 23:23:58 +00:00
|
|
|
func (t *Topology) Leader() (string, error) {
|
2014-03-16 06:03:49 +00:00
|
|
|
l := ""
|
|
|
|
if t.RaftServer != nil {
|
|
|
|
l = t.RaftServer.Leader()
|
2014-04-11 23:23:58 +00:00
|
|
|
} else {
|
|
|
|
return "", errors.New("Raft Server not ready yet!")
|
2014-03-16 06:03:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if l == "" {
|
|
|
|
// We are a single node cluster, we are the leader
|
2014-04-11 23:23:58 +00:00
|
|
|
return t.RaftServer.Name(), errors.New("Raft Server not initialized!")
|
2014-03-16 06:03:49 +00:00
|
|
|
}
|
|
|
|
|
2014-04-11 23:23:58 +00:00
|
|
|
return l, nil
|
2014-03-16 06:03:49 +00:00
|
|
|
}
|
|
|
|
|
2013-11-12 10:21:22 +00:00
|
|
|
func (t *Topology) Lookup(collection string, vid storage.VolumeId) []*DataNode {
|
|
|
|
//maybe an issue if lots of collections?
|
|
|
|
if collection == "" {
|
2016-05-30 19:30:26 +00:00
|
|
|
for _, c := range t.collectionMap.Items() {
|
2014-12-09 04:29:25 +00:00
|
|
|
if list := c.(*Collection).Lookup(vid); list != nil {
|
2012-09-24 09:01:53 +00:00
|
|
|
return list
|
|
|
|
}
|
|
|
|
}
|
2013-11-12 10:21:22 +00:00
|
|
|
} else {
|
2016-05-30 19:30:26 +00:00
|
|
|
if c, ok := t.collectionMap.Find(collection); ok {
|
2014-12-09 04:29:25 +00:00
|
|
|
return c.(*Collection).Lookup(vid)
|
2013-11-12 10:21:22 +00:00
|
|
|
}
|
2012-09-24 09:01:53 +00:00
|
|
|
}
|
|
|
|
return nil
|
2012-09-23 22:45:26 +00:00
|
|
|
}
|
|
|
|
|
2012-09-03 08:50:04 +00:00
|
|
|
func (t *Topology) NextVolumeId() storage.VolumeId {
|
2012-09-02 21:33:48 +00:00
|
|
|
vid := t.GetMaxVolumeId()
|
2014-03-16 06:03:49 +00:00
|
|
|
next := vid.Next()
|
|
|
|
go t.RaftServer.Do(NewMaxVolumeIdCommand(next))
|
|
|
|
return next
|
2012-08-28 08:04:39 +00:00
|
|
|
}
|
2012-09-10 07:18:07 +00:00
|
|
|
|
2014-10-26 06:45:31 +00:00
|
|
|
func (t *Topology) HasWritableVolume(option *VolumeGrowOption) bool {
|
2014-09-20 19:38:59 +00:00
|
|
|
vl := t.GetVolumeLayout(option.Collection, option.ReplicaPlacement, option.Ttl)
|
2014-04-13 08:29:52 +00:00
|
|
|
return vl.GetActiveVolumeCount(option) > 0
|
|
|
|
}
|
|
|
|
|
2015-04-06 21:17:36 +00:00
|
|
|
func (t *Topology) PickForWrite(count uint64, option *VolumeGrowOption) (string, uint64, *DataNode, error) {
|
2014-09-20 19:38:59 +00:00
|
|
|
vid, count, datanodes, err := t.GetVolumeLayout(option.Collection, option.ReplicaPlacement, option.Ttl).PickForWrite(count, option)
|
2013-03-20 12:12:55 +00:00
|
|
|
if err != nil || datanodes.Length() == 0 {
|
2015-01-13 10:46:56 +00:00
|
|
|
return "", 0, nil, errors.New("No writable volumes available!")
|
2012-09-17 00:31:15 +00:00
|
|
|
}
|
2014-04-17 06:43:27 +00:00
|
|
|
fileId, count := t.Sequence.NextFileId(count)
|
2013-04-16 07:10:21 +00:00
|
|
|
return storage.NewFileId(*vid, fileId, rand.Uint32()).String(), count, datanodes.Head(), nil
|
2012-09-17 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
2014-09-20 19:38:59 +00:00
|
|
|
func (t *Topology) GetVolumeLayout(collectionName string, rp *storage.ReplicaPlacement, ttl *storage.TTL) *VolumeLayout {
|
2014-12-09 04:29:25 +00:00
|
|
|
return t.collectionMap.Get(collectionName, func() interface{} {
|
|
|
|
return NewCollection(collectionName, t.volumeSizeLimit)
|
|
|
|
}).(*Collection).GetOrCreateVolumeLayout(rp, ttl)
|
2012-09-14 08:17:13 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 19:30:26 +00:00
|
|
|
func (t *Topology) FindCollection(collectionName string) (*Collection, bool) {
|
|
|
|
c, hasCollection := t.collectionMap.Find(collectionName)
|
2017-07-14 12:04:33 +00:00
|
|
|
if !hasCollection {
|
|
|
|
return nil, false
|
|
|
|
}
|
2014-12-09 04:29:25 +00:00
|
|
|
return c.(*Collection), hasCollection
|
2014-03-10 18:43:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Topology) DeleteCollection(collectionName string) {
|
2016-05-30 19:30:26 +00:00
|
|
|
t.collectionMap.Delete(collectionName)
|
2014-03-10 18:43:54 +00:00
|
|
|
}
|
|
|
|
|
2014-03-19 11:48:13 +00:00
|
|
|
func (t *Topology) RegisterVolumeLayout(v storage.VolumeInfo, dn *DataNode) {
|
2014-09-20 19:38:59 +00:00
|
|
|
t.GetVolumeLayout(v.Collection, v.ReplicaPlacement, v.Ttl).RegisterVolume(&v, dn)
|
|
|
|
}
|
|
|
|
func (t *Topology) UnRegisterVolumeLayout(v storage.VolumeInfo, dn *DataNode) {
|
|
|
|
glog.Infof("removing volume info:%+v", v)
|
2018-07-11 09:01:33 +00:00
|
|
|
volumeLayout := t.GetVolumeLayout(v.Collection, v.ReplicaPlacement, v.Ttl)
|
|
|
|
volumeLayout.UnRegisterVolume(&v, dn)
|
|
|
|
if volumeLayout.isEmpty() {
|
|
|
|
t.DeleteCollection(v.Collection)
|
|
|
|
}
|
2012-09-17 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
2012-09-23 03:46:31 +00:00
|
|
|
func (t *Topology) GetOrCreateDataCenter(dcName string) *DataCenter {
|
2012-09-17 00:31:15 +00:00
|
|
|
for _, c := range t.Children() {
|
|
|
|
dc := c.(*DataCenter)
|
2012-09-23 03:46:31 +00:00
|
|
|
if string(dc.Id()) == dcName {
|
2012-09-17 00:31:15 +00:00
|
|
|
return dc
|
|
|
|
}
|
|
|
|
}
|
2012-09-23 03:46:31 +00:00
|
|
|
dc := NewDataCenter(dcName)
|
2012-09-17 00:31:15 +00:00
|
|
|
t.LinkChildNode(dc)
|
|
|
|
return dc
|
|
|
|
}
|
2018-06-25 07:01:53 +00:00
|
|
|
|
2018-07-28 06:09:55 +00:00
|
|
|
func (t *Topology) SyncDataNodeRegistration(volumes []*master_pb.VolumeInformationMessage, dn *DataNode) (newVolumes, deletedVolumes []storage.VolumeInfo) {
|
2018-06-25 07:01:53 +00:00
|
|
|
var volumeInfos []storage.VolumeInfo
|
|
|
|
for _, v := range volumes {
|
|
|
|
if vi, err := storage.NewVolumeInfo(v); err == nil {
|
|
|
|
volumeInfos = append(volumeInfos, vi)
|
|
|
|
} else {
|
|
|
|
glog.V(0).Infof("Fail to convert joined volume information: %v", err)
|
|
|
|
}
|
|
|
|
}
|
2018-07-28 06:09:55 +00:00
|
|
|
newVolumes, deletedVolumes = dn.UpdateVolumes(volumeInfos)
|
2018-06-25 07:01:53 +00:00
|
|
|
for _, v := range volumeInfos {
|
|
|
|
t.RegisterVolumeLayout(v, dn)
|
|
|
|
}
|
|
|
|
for _, v := range deletedVolumes {
|
|
|
|
t.UnRegisterVolumeLayout(v, dn)
|
|
|
|
}
|
2018-07-28 06:09:55 +00:00
|
|
|
return
|
2018-06-25 07:01:53 +00:00
|
|
|
}
|