2012-08-24 05:33:37 +00:00
|
|
|
package topology
|
|
|
|
|
|
|
|
import (
|
2013-09-02 06:58:21 +00:00
|
|
|
"code.google.com/p/weed-fs/go/glog"
|
2013-02-10 11:49:51 +00:00
|
|
|
"code.google.com/p/weed-fs/go/sequence"
|
|
|
|
"code.google.com/p/weed-fs/go/storage"
|
2013-02-27 06:54:22 +00:00
|
|
|
"errors"
|
|
|
|
"io/ioutil"
|
|
|
|
"math/rand"
|
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
|
|
|
|
2013-11-12 10:21:22 +00:00
|
|
|
collectionMap map[string]*Collection
|
2012-09-10 07:18:07 +00:00
|
|
|
|
|
|
|
pulse int64
|
|
|
|
|
|
|
|
volumeSizeLimit uint64
|
|
|
|
|
|
|
|
sequence sequence.Sequencer
|
2012-09-18 21:05:12 +00:00
|
|
|
|
|
|
|
chanDeadDataNodes chan *DataNode
|
|
|
|
chanRecoveredDataNodes chan *DataNode
|
2012-12-04 04:28:12 +00:00
|
|
|
chanFullVolumes chan storage.VolumeInfo
|
2012-09-24 09:01:53 +00:00
|
|
|
|
2012-09-23 03:46:31 +00:00
|
|
|
configuration *Configuration
|
2012-08-31 08:35:11 +00:00
|
|
|
}
|
2012-08-28 08:04:39 +00:00
|
|
|
|
2013-11-10 09:31:50 +00:00
|
|
|
func NewTopology(id string, confFile string, seq sequence.Sequencer, volumeSizeLimit uint64, pulse int) (*Topology, error) {
|
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)
|
2013-11-12 10:21:22 +00:00
|
|
|
t.collectionMap = make(map[string]*Collection)
|
2012-09-10 07:18:07 +00:00
|
|
|
t.pulse = int64(pulse)
|
|
|
|
t.volumeSizeLimit = volumeSizeLimit
|
2012-09-19 08:45:30 +00:00
|
|
|
|
2013-11-10 09:31:50 +00:00
|
|
|
t.sequence = seq
|
2012-09-19 08:45:30 +00:00
|
|
|
|
2012-09-18 21:05:12 +00:00
|
|
|
t.chanDeadDataNodes = make(chan *DataNode)
|
|
|
|
t.chanRecoveredDataNodes = make(chan *DataNode)
|
2012-12-04 04:28:12 +00:00
|
|
|
t.chanFullVolumes = make(chan storage.VolumeInfo)
|
2012-09-19 08:45:30 +00:00
|
|
|
|
2013-02-27 06:54:22 +00:00
|
|
|
err := t.loadConfiguration(confFile)
|
2012-09-24 09:01:53 +00:00
|
|
|
|
2013-02-27 06:54:22 +00:00
|
|
|
return t, err
|
2012-09-02 21:33:48 +00:00
|
|
|
}
|
2012-09-17 00:31:15 +00:00
|
|
|
|
2012-09-24 09:01:53 +00:00
|
|
|
func (t *Topology) loadConfiguration(configurationFile string) error {
|
|
|
|
b, e := ioutil.ReadFile(configurationFile)
|
|
|
|
if e == nil {
|
|
|
|
t.configuration, e = NewConfiguration(b)
|
2013-03-19 17:33:33 +00:00
|
|
|
return e
|
2013-03-19 17:36:29 +00:00
|
|
|
} else {
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.V(0).Infoln("Using default configurations.")
|
2012-09-24 09:01:53 +00:00
|
|
|
}
|
2013-03-19 17:33:33 +00:00
|
|
|
return nil
|
2012-09-23 03:46:31 +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 == "" {
|
|
|
|
for _, c := range t.collectionMap {
|
|
|
|
if list := c.Lookup(vid); list != nil {
|
2012-09-24 09:01:53 +00:00
|
|
|
return list
|
|
|
|
}
|
|
|
|
}
|
2013-11-12 10:21:22 +00:00
|
|
|
} else {
|
|
|
|
if c, ok := t.collectionMap[collection]; ok {
|
|
|
|
return c.Lookup(vid)
|
|
|
|
}
|
2012-09-24 09:01:53 +00:00
|
|
|
}
|
|
|
|
return nil
|
2012-09-23 22:45:26 +00:00
|
|
|
}
|
|
|
|
|
2013-06-20 01:10:38 +00:00
|
|
|
func (t *Topology) RandomlyReserveOneVolume(dataCenter string) (bool, *DataNode, *storage.VolumeId) {
|
2012-09-17 02:18:37 +00:00
|
|
|
if t.FreeSpace() <= 0 {
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.V(0).Infoln("Topology does not have free space left!")
|
2012-09-17 02:18:37 +00:00
|
|
|
return false, nil, nil
|
|
|
|
}
|
2012-09-03 08:50:04 +00:00
|
|
|
vid := t.NextVolumeId()
|
2013-06-20 01:10:38 +00:00
|
|
|
ret, node := t.ReserveOneVolume(rand.Intn(t.FreeSpace()), vid, dataCenter)
|
2012-09-17 02:18:37 +00:00
|
|
|
return ret, node, &vid
|
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()
|
2012-08-29 08:37:40 +00:00
|
|
|
return vid.Next()
|
2012-08-28 08:04:39 +00:00
|
|
|
}
|
2012-09-10 07:18:07 +00:00
|
|
|
|
2013-11-12 10:21:22 +00:00
|
|
|
func (t *Topology) PickForWrite(collectionName string, repType storage.ReplicationType, count int, dataCenter string) (string, int, *DataNode, error) {
|
|
|
|
vid, count, datanodes, err := t.GetVolumeLayout(collectionName, repType).PickForWrite(count, dataCenter)
|
2013-03-20 12:12:55 +00:00
|
|
|
if err != nil || datanodes.Length() == 0 {
|
2012-09-17 00:31:15 +00:00
|
|
|
return "", 0, nil, errors.New("No writable volumes avalable!")
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-11-12 10:21:22 +00:00
|
|
|
func (t *Topology) GetVolumeLayout(collectionName string, repType storage.ReplicationType) *VolumeLayout {
|
|
|
|
_, ok := t.collectionMap[collectionName]
|
|
|
|
if !ok {
|
|
|
|
t.collectionMap[collectionName] = NewCollection(collectionName, t.volumeSizeLimit)
|
2012-09-17 00:31:15 +00:00
|
|
|
}
|
2013-11-12 10:21:22 +00:00
|
|
|
return t.collectionMap[collectionName].GetOrCreateVolumeLayout(repType)
|
2012-09-14 08:17:13 +00:00
|
|
|
}
|
|
|
|
|
2012-09-17 00:31:15 +00:00
|
|
|
func (t *Topology) RegisterVolumeLayout(v *storage.VolumeInfo, dn *DataNode) {
|
2013-11-12 10:21:22 +00:00
|
|
|
t.GetVolumeLayout(v.Collection, v.RepType).RegisterVolume(v, dn)
|
2012-09-17 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
2013-06-20 01:10:38 +00:00
|
|
|
func (t *Topology) RegisterVolumes(init bool, volumeInfos []storage.VolumeInfo, ip string, port int, publicUrl string, maxVolumeCount int, dcName string, rackName string) {
|
|
|
|
dcName, rackName = t.configuration.Locate(ip, dcName, rackName)
|
2012-09-23 03:46:31 +00:00
|
|
|
dc := t.GetOrCreateDataCenter(dcName)
|
|
|
|
rack := dc.GetOrCreateRack(rackName)
|
2012-12-23 00:26:02 +00:00
|
|
|
dn := rack.FindDataNode(ip, port)
|
|
|
|
if init && dn != nil {
|
|
|
|
t.UnRegisterDataNode(dn)
|
|
|
|
}
|
|
|
|
dn = rack.GetOrCreateDataNode(ip, port, publicUrl, maxVolumeCount)
|
2012-09-17 00:31:15 +00:00
|
|
|
for _, v := range volumeInfos {
|
2012-09-19 08:45:30 +00:00
|
|
|
dn.AddOrUpdateVolume(v)
|
2012-09-17 00:31:15 +00:00
|
|
|
t.RegisterVolumeLayout(&v, dn)
|
|
|
|
}
|
2012-09-14 08:17:13 +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
|
|
|
|
}
|