seaweedfs/go/topology/topology_event_handling.go

68 lines
1.9 KiB
Go
Raw Normal View History

2012-09-19 23:48:04 +00:00
package topology
import (
"code.google.com/p/weed-fs/go/glog"
"code.google.com/p/weed-fs/go/storage"
2012-09-19 23:48:04 +00:00
"math/rand"
"time"
)
func (t *Topology) StartRefreshWritableVolumes(garbageThreshold string) {
2012-09-19 23:48:04 +00:00
go func() {
for {
2012-11-12 06:37:12 +00:00
freshThreshHold := time.Now().Unix() - 3*t.pulse //3 times of sleep interval
2012-09-19 23:48:04 +00:00
t.CollectDeadNodeAndFullVolumes(freshThreshHold, t.volumeSizeLimit)
time.Sleep(time.Duration(float32(t.pulse*1e3)*(1+rand.Float32())) * time.Millisecond)
}
}()
go func(garbageThreshold string) {
2012-11-24 01:03:27 +00:00
c := time.Tick(15 * time.Minute)
for _ = range c {
t.Vacuum(garbageThreshold)
2012-11-24 01:03:27 +00:00
}
}(garbageThreshold)
2012-09-19 23:48:04 +00:00
go func() {
for {
select {
case v := <-t.chanFullVolumes:
t.SetVolumeCapacityFull(v)
case dn := <-t.chanRecoveredDataNodes:
t.RegisterRecoveredDataNode(dn)
glog.V(0).Infoln("DataNode", dn, "is back alive!")
2012-09-19 23:48:04 +00:00
case dn := <-t.chanDeadDataNodes:
t.UnRegisterDataNode(dn)
glog.V(0).Infoln("DataNode", dn, "is dead!")
2012-09-19 23:48:04 +00:00
}
}
}()
}
func (t *Topology) SetVolumeCapacityFull(volumeInfo storage.VolumeInfo) bool {
2013-11-12 10:21:22 +00:00
vl := t.GetVolumeLayout(volumeInfo.Collection, volumeInfo.RepType)
if !vl.SetVolumeCapacityFull(volumeInfo.Id) {
return false
}
for _, dn := range vl.vid2location[volumeInfo.Id].list {
dn.UpAdjustActiveVolumeCountDelta(-1)
}
return true
2012-09-19 23:48:04 +00:00
}
func (t *Topology) UnRegisterDataNode(dn *DataNode) {
for _, v := range dn.volumes {
glog.V(0).Infoln("Removing Volume", v.Id, "from the dead volume server", dn)
2013-11-12 10:21:22 +00:00
vl := t.GetVolumeLayout(v.Collection, v.RepType)
2012-09-19 23:48:04 +00:00
vl.SetVolumeUnavailable(dn, v.Id)
}
2013-01-17 08:56:56 +00:00
dn.UpAdjustVolumeCountDelta(-dn.GetVolumeCount())
dn.UpAdjustActiveVolumeCountDelta(-dn.GetActiveVolumeCount())
dn.UpAdjustMaxVolumeCountDelta(-dn.GetMaxVolumeCount())
dn.Parent().UnlinkChildNode(dn.Id())
2012-09-19 23:48:04 +00:00
}
func (t *Topology) RegisterRecoveredDataNode(dn *DataNode) {
for _, v := range dn.volumes {
2013-11-12 10:21:22 +00:00
vl := t.GetVolumeLayout(v.Collection, v.RepType)
if vl.isWritable(&v) {
2012-09-19 23:48:04 +00:00
vl.SetVolumeAvailable(dn, v.Id)
}
}
}