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