2012-08-29 07:58:03 +00:00
|
|
|
package topology
|
|
|
|
|
|
|
|
import (
|
2015-01-08 07:54:50 +00:00
|
|
|
"fmt"
|
2014-10-26 18:34:55 +00:00
|
|
|
"strconv"
|
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage"
|
2012-08-29 07:58:03 +00:00
|
|
|
)
|
|
|
|
|
2012-09-08 23:25:44 +00:00
|
|
|
type DataNode struct {
|
2012-09-02 21:33:48 +00:00
|
|
|
NodeImpl
|
2012-09-19 08:45:30 +00:00
|
|
|
volumes map[storage.VolumeId]storage.VolumeInfo
|
2012-09-12 08:07:23 +00:00
|
|
|
Ip string
|
|
|
|
Port int
|
|
|
|
PublicUrl string
|
2012-09-17 08:48:09 +00:00
|
|
|
LastSeen int64 // unix time in seconds
|
2012-08-29 07:58:03 +00:00
|
|
|
}
|
2012-09-02 21:33:48 +00:00
|
|
|
|
2012-09-08 23:25:44 +00:00
|
|
|
func NewDataNode(id string) *DataNode {
|
|
|
|
s := &DataNode{}
|
2012-09-02 21:33:48 +00:00
|
|
|
s.id = NodeId(id)
|
2012-09-08 23:25:44 +00:00
|
|
|
s.nodeType = "DataNode"
|
2012-09-19 08:45:30 +00:00
|
|
|
s.volumes = make(map[storage.VolumeId]storage.VolumeInfo)
|
2012-12-04 05:27:57 +00:00
|
|
|
s.NodeImpl.value = s
|
2012-09-02 21:33:48 +00:00
|
|
|
return s
|
2012-08-31 08:35:11 +00:00
|
|
|
}
|
2014-04-13 08:29:52 +00:00
|
|
|
|
2015-01-08 07:54:50 +00:00
|
|
|
func (dn *DataNode) String() string {
|
2016-05-20 06:32:56 +00:00
|
|
|
dn.RLock()
|
|
|
|
defer dn.RUnlock()
|
2017-01-10 09:01:12 +00:00
|
|
|
return fmt.Sprintf("Node:%s, volumes:%v, Ip:%s, Port:%d, PublicUrl:%s", dn.NodeImpl.String(), dn.volumes, dn.Ip, dn.Port, dn.PublicUrl)
|
2015-01-08 07:54:50 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 06:09:55 +00:00
|
|
|
func (dn *DataNode) AddOrUpdateVolume(v storage.VolumeInfo) (isNew bool) {
|
2016-05-20 06:32:56 +00:00
|
|
|
dn.Lock()
|
|
|
|
defer dn.Unlock()
|
2012-09-19 08:45:30 +00:00
|
|
|
if _, ok := dn.volumes[v.Id]; !ok {
|
2012-09-17 00:31:15 +00:00
|
|
|
dn.volumes[v.Id] = v
|
2012-12-04 05:27:57 +00:00
|
|
|
dn.UpAdjustVolumeCountDelta(1)
|
2014-03-10 18:43:54 +00:00
|
|
|
if !v.ReadOnly {
|
|
|
|
dn.UpAdjustActiveVolumeCountDelta(1)
|
|
|
|
}
|
2012-09-17 00:31:15 +00:00
|
|
|
dn.UpAdjustMaxVolumeId(v.Id)
|
2018-07-28 06:09:55 +00:00
|
|
|
isNew = true
|
2012-09-18 21:05:12 +00:00
|
|
|
} else {
|
|
|
|
dn.volumes[v.Id] = v
|
2012-09-17 00:31:15 +00:00
|
|
|
}
|
2018-07-28 06:09:55 +00:00
|
|
|
return
|
2012-09-10 07:18:07 +00:00
|
|
|
}
|
2014-04-13 08:29:52 +00:00
|
|
|
|
2018-07-28 06:09:55 +00:00
|
|
|
func (dn *DataNode) UpdateVolumes(actualVolumes []storage.VolumeInfo) (newVolumes, deletedVolumes []storage.VolumeInfo) {
|
2014-03-10 18:43:54 +00:00
|
|
|
actualVolumeMap := make(map[storage.VolumeId]storage.VolumeInfo)
|
|
|
|
for _, v := range actualVolumes {
|
|
|
|
actualVolumeMap[v.Id] = v
|
|
|
|
}
|
2016-09-08 01:13:49 +00:00
|
|
|
dn.Lock()
|
2014-09-20 19:38:59 +00:00
|
|
|
for vid, v := range dn.volumes {
|
2014-03-10 18:43:54 +00:00
|
|
|
if _, ok := actualVolumeMap[vid]; !ok {
|
|
|
|
glog.V(0).Infoln("Deleting volume id:", vid)
|
|
|
|
delete(dn.volumes, vid)
|
2014-09-20 19:38:59 +00:00
|
|
|
deletedVolumes = append(deletedVolumes, v)
|
2014-03-10 18:43:54 +00:00
|
|
|
dn.UpAdjustVolumeCountDelta(-1)
|
|
|
|
dn.UpAdjustActiveVolumeCountDelta(-1)
|
|
|
|
}
|
2016-09-08 01:13:49 +00:00
|
|
|
}
|
|
|
|
dn.Unlock()
|
2014-03-10 18:43:54 +00:00
|
|
|
for _, v := range actualVolumes {
|
2018-07-28 06:09:55 +00:00
|
|
|
isNew := dn.AddOrUpdateVolume(v)
|
|
|
|
if isNew {
|
|
|
|
newVolumes = append(newVolumes, v)
|
|
|
|
}
|
2014-03-10 18:43:54 +00:00
|
|
|
}
|
2014-09-20 19:38:59 +00:00
|
|
|
return
|
2014-03-10 18:43:54 +00:00
|
|
|
}
|
2014-04-13 08:29:52 +00:00
|
|
|
|
2016-05-20 06:32:56 +00:00
|
|
|
func (dn *DataNode) GetVolumes() (ret []storage.VolumeInfo) {
|
|
|
|
dn.RLock()
|
|
|
|
for _, v := range dn.volumes {
|
|
|
|
ret = append(ret, v)
|
|
|
|
}
|
|
|
|
dn.RUnlock()
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2016-08-09 12:12:39 +00:00
|
|
|
func (dn *DataNode) GetVolumesById(id storage.VolumeId) (storage.VolumeInfo, error) {
|
|
|
|
dn.RLock()
|
|
|
|
defer dn.RUnlock()
|
2019-01-17 01:17:19 +00:00
|
|
|
vInfo, ok := dn.volumes[id]
|
2016-08-09 12:12:39 +00:00
|
|
|
if ok {
|
2019-01-17 01:17:19 +00:00
|
|
|
return vInfo, nil
|
2016-08-09 12:12:39 +00:00
|
|
|
} else {
|
|
|
|
return storage.VolumeInfo{}, fmt.Errorf("volumeInfo not found")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-20 01:10:38 +00:00
|
|
|
func (dn *DataNode) GetDataCenter() *DataCenter {
|
|
|
|
return dn.Parent().Parent().(*NodeImpl).value.(*DataCenter)
|
|
|
|
}
|
2014-04-13 08:29:52 +00:00
|
|
|
|
|
|
|
func (dn *DataNode) GetRack() *Rack {
|
|
|
|
return dn.Parent().(*NodeImpl).value.(*Rack)
|
|
|
|
}
|
|
|
|
|
2012-09-10 07:18:07 +00:00
|
|
|
func (dn *DataNode) GetTopology() *Topology {
|
2013-06-20 01:10:38 +00:00
|
|
|
p := dn.Parent()
|
2012-09-17 00:31:15 +00:00
|
|
|
for p.Parent() != nil {
|
|
|
|
p = p.Parent()
|
|
|
|
}
|
|
|
|
t := p.(*Topology)
|
|
|
|
return t
|
2012-08-29 07:58:03 +00:00
|
|
|
}
|
2014-04-13 08:29:52 +00:00
|
|
|
|
2012-09-14 08:17:13 +00:00
|
|
|
func (dn *DataNode) MatchLocation(ip string, port int) bool {
|
2012-09-17 00:31:15 +00:00
|
|
|
return dn.Ip == ip && dn.Port == port
|
|
|
|
}
|
2014-04-13 08:29:52 +00:00
|
|
|
|
2012-09-26 08:55:56 +00:00
|
|
|
func (dn *DataNode) Url() string {
|
2012-12-04 05:27:57 +00:00
|
|
|
return dn.Ip + ":" + strconv.Itoa(dn.Port)
|
2012-09-26 08:55:56 +00:00
|
|
|
}
|
2012-09-17 00:31:15 +00:00
|
|
|
|
|
|
|
func (dn *DataNode) ToMap() interface{} {
|
|
|
|
ret := make(map[string]interface{})
|
2012-09-26 08:55:56 +00:00
|
|
|
ret["Url"] = dn.Url()
|
2012-12-04 05:27:57 +00:00
|
|
|
ret["Volumes"] = dn.GetVolumeCount()
|
2012-09-20 09:11:08 +00:00
|
|
|
ret["Max"] = dn.GetMaxVolumeCount()
|
|
|
|
ret["Free"] = dn.FreeSpace()
|
2012-09-17 00:31:15 +00:00
|
|
|
ret["PublicUrl"] = dn.PublicUrl
|
|
|
|
return ret
|
2012-09-14 08:17:13 +00:00
|
|
|
}
|