seaweedfs/weed/topology/rack.go

79 lines
1.8 KiB
Go
Raw Normal View History

2012-08-24 03:56:09 +00:00
package topology
import (
2019-03-18 03:27:08 +00:00
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
2021-02-16 10:47:02 +00:00
"github.com/chrislusf/seaweedfs/weed/storage/types"
2021-09-08 02:29:42 +00:00
"github.com/chrislusf/seaweedfs/weed/util"
"time"
)
2012-08-24 03:56:09 +00:00
type Rack struct {
NodeImpl
2012-08-24 03:56:09 +00:00
}
2012-08-31 08:35:11 +00:00
func NewRack(id string) *Rack {
2012-08-31 08:35:11 +00:00
r := &Rack{}
r.id = NodeId(id)
r.nodeType = "Rack"
2021-02-16 10:47:02 +00:00
r.diskUsages = newDiskUsages()
r.children = make(map[NodeId]Node)
r.NodeImpl.value = r
2012-08-31 08:35:11 +00:00
return r
}
2012-09-14 08:17:13 +00:00
func (r *Rack) FindDataNode(ip string, port int) *DataNode {
2013-01-17 08:56:56 +00:00
for _, c := range r.Children() {
dn := c.(*DataNode)
if dn.MatchLocation(ip, port) {
return dn
}
}
return nil
}
func (r *Rack) GetOrCreateDataNode(ip string, port int, grpcPort int, publicUrl string, maxVolumeCounts map[string]uint32) *DataNode {
for _, c := range r.Children() {
dn := c.(*DataNode)
if dn.MatchLocation(ip, port) {
dn.LastSeen = time.Now().Unix()
return dn
}
}
2021-09-08 02:29:42 +00:00
dn := NewDataNode(util.JoinHostPort(ip, port))
dn.Ip = ip
dn.Port = port
dn.GrpcPort = grpcPort
dn.PublicUrl = publicUrl
dn.LastSeen = time.Now().Unix()
r.LinkChildNode(dn)
2021-02-16 10:47:02 +00:00
for diskType, maxVolumeCount := range maxVolumeCounts {
disk := NewDisk(diskType)
2021-02-16 11:03:00 +00:00
disk.diskUsages.getOrCreateDisk(types.ToDiskType(diskType)).maxVolumeCount = int64(maxVolumeCount)
2021-02-16 10:47:02 +00:00
dn.LinkChildNode(disk)
}
return dn
2012-09-14 08:17:13 +00:00
}
2015-03-10 07:20:31 +00:00
func (r *Rack) ToMap() interface{} {
m := make(map[string]interface{})
2015-03-10 07:20:31 +00:00
m["Id"] = r.Id()
var dns []interface{}
2015-03-10 07:20:31 +00:00
for _, c := range r.Children() {
dn := c.(*DataNode)
dns = append(dns, dn.ToMap())
}
m["DataNodes"] = dns
return m
}
2019-03-18 03:27:08 +00:00
func (r *Rack) ToRackInfo() *master_pb.RackInfo {
m := &master_pb.RackInfo{
Id: string(r.Id()),
DiskInfos: r.diskUsages.ToDiskInfo(),
2019-03-18 03:27:08 +00:00
}
for _, c := range r.Children() {
dn := c.(*DataNode)
m.DataNodeInfos = append(m.DataNodeInfos, dn.ToDataNodeInfo())
}
return m
}