2012-09-10 07:18:07 +00:00
|
|
|
package topology
|
|
|
|
|
|
|
|
import (
|
2013-08-12 23:39:49 +00:00
|
|
|
"code.google.com/p/weed-fs/go/glog"
|
2013-02-27 06:54:22 +00:00
|
|
|
"code.google.com/p/weed-fs/go/storage"
|
2012-09-11 00:08:52 +00:00
|
|
|
"errors"
|
2012-09-10 07:18:07 +00:00
|
|
|
"math/rand"
|
2013-07-16 04:34:43 +00:00
|
|
|
"sync"
|
2012-09-10 07:18:07 +00:00
|
|
|
)
|
|
|
|
|
2014-03-10 18:43:54 +00:00
|
|
|
// mapping from volume to its locations, inverted from server to volume
|
2012-09-10 07:18:07 +00:00
|
|
|
type VolumeLayout struct {
|
2014-03-03 06:16:54 +00:00
|
|
|
rp *storage.ReplicaPlacement
|
2012-09-19 23:48:04 +00:00
|
|
|
vid2location map[storage.VolumeId]*VolumeLocationList
|
2013-01-17 08:15:13 +00:00
|
|
|
writables []storage.VolumeId // transient array of writable volume id
|
2012-09-10 07:18:07 +00:00
|
|
|
volumeSizeLimit uint64
|
2013-07-16 04:34:43 +00:00
|
|
|
accessLock sync.Mutex
|
2012-09-10 07:18:07 +00:00
|
|
|
}
|
|
|
|
|
2014-03-03 06:16:54 +00:00
|
|
|
func NewVolumeLayout(rp *storage.ReplicaPlacement, volumeSizeLimit uint64) *VolumeLayout {
|
2012-09-10 07:18:07 +00:00
|
|
|
return &VolumeLayout{
|
2014-03-03 06:16:54 +00:00
|
|
|
rp: rp,
|
2012-09-19 23:48:04 +00:00
|
|
|
vid2location: make(map[storage.VolumeId]*VolumeLocationList),
|
2013-01-17 08:15:13 +00:00
|
|
|
writables: *new([]storage.VolumeId),
|
2012-09-10 07:18:07 +00:00
|
|
|
volumeSizeLimit: volumeSizeLimit,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (vl *VolumeLayout) RegisterVolume(v *storage.VolumeInfo, dn *DataNode) {
|
2013-07-16 04:34:43 +00:00
|
|
|
vl.accessLock.Lock()
|
|
|
|
defer vl.accessLock.Unlock()
|
|
|
|
|
2012-09-10 07:18:07 +00:00
|
|
|
if _, ok := vl.vid2location[v.Id]; !ok {
|
2012-09-19 23:48:04 +00:00
|
|
|
vl.vid2location[v.Id] = NewVolumeLocationList()
|
2012-09-10 07:18:07 +00:00
|
|
|
}
|
2014-03-19 11:48:13 +00:00
|
|
|
vl.vid2location[v.Id].Set(dn)
|
2014-03-30 18:28:04 +00:00
|
|
|
glog.V(4).Infoln("volume", v.Id, "added to dn", dn, "len", vl.vid2location[v.Id].Length(), "copy", v.ReplicaPlacement.GetCopyCount())
|
2014-03-19 11:48:13 +00:00
|
|
|
if vl.vid2location[v.Id].Length() == vl.rp.GetCopyCount() && vl.isWritable(v) {
|
|
|
|
vl.AddToWritable(v.Id)
|
|
|
|
} else {
|
|
|
|
vl.removeFromWritable(v.Id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (vl *VolumeLayout) AddToWritable(vid storage.VolumeId) {
|
|
|
|
for _, id := range vl.writables {
|
|
|
|
if vid == id {
|
|
|
|
return
|
2012-09-11 00:08:52 +00:00
|
|
|
}
|
2012-09-10 07:18:07 +00:00
|
|
|
}
|
2014-03-19 11:48:13 +00:00
|
|
|
vl.writables = append(vl.writables, vid)
|
2012-09-10 07:18:07 +00:00
|
|
|
}
|
|
|
|
|
2013-01-20 11:40:04 +00:00
|
|
|
func (vl *VolumeLayout) isWritable(v *storage.VolumeInfo) bool {
|
2013-04-15 02:30:26 +00:00
|
|
|
return uint64(v.Size) < vl.volumeSizeLimit &&
|
|
|
|
v.Version == storage.CurrentVersion &&
|
|
|
|
!v.ReadOnly
|
2012-12-18 00:48:54 +00:00
|
|
|
}
|
|
|
|
|
2013-01-04 09:02:52 +00:00
|
|
|
func (vl *VolumeLayout) Lookup(vid storage.VolumeId) []*DataNode {
|
2013-04-15 02:30:26 +00:00
|
|
|
if location := vl.vid2location[vid]; location != nil {
|
|
|
|
return location.list
|
|
|
|
}
|
2013-03-20 08:23:15 +00:00
|
|
|
return nil
|
2012-09-23 22:45:26 +00:00
|
|
|
}
|
|
|
|
|
2014-03-10 18:43:54 +00:00
|
|
|
func (vl *VolumeLayout) ListVolumeServers() (nodes []*DataNode) {
|
|
|
|
for _, location := range vl.vid2location {
|
|
|
|
nodes = append(nodes, location.list...)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-06-20 01:10:38 +00:00
|
|
|
func (vl *VolumeLayout) PickForWrite(count int, dataCenter string) (*storage.VolumeId, int, *VolumeLocationList, error) {
|
2012-09-11 00:08:52 +00:00
|
|
|
len_writers := len(vl.writables)
|
|
|
|
if len_writers <= 0 {
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.V(0).Infoln("No more writable volumes!")
|
2012-09-17 00:31:15 +00:00
|
|
|
return nil, 0, nil, errors.New("No more writable volumes!")
|
2012-09-11 00:08:52 +00:00
|
|
|
}
|
2013-06-20 01:10:38 +00:00
|
|
|
if dataCenter == "" {
|
|
|
|
vid := vl.writables[rand.Intn(len_writers)]
|
|
|
|
locationList := vl.vid2location[vid]
|
|
|
|
if locationList != nil {
|
|
|
|
return &vid, count, locationList, nil
|
|
|
|
}
|
|
|
|
return nil, 0, nil, errors.New("Strangely vid " + vid.String() + " is on no machine!")
|
|
|
|
} else {
|
|
|
|
var vid storage.VolumeId
|
|
|
|
var locationList *VolumeLocationList
|
|
|
|
counter := 0
|
|
|
|
for _, v := range vl.writables {
|
|
|
|
volumeLocationList := vl.vid2location[v]
|
|
|
|
for _, dn := range volumeLocationList.list {
|
|
|
|
if dn.GetDataCenter().Id() == NodeId(dataCenter) {
|
|
|
|
counter++
|
|
|
|
if rand.Intn(counter) < 1 {
|
|
|
|
vid, locationList = v, volumeLocationList
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-17 00:31:15 +00:00
|
|
|
return &vid, count, locationList, nil
|
2012-09-11 00:08:52 +00:00
|
|
|
}
|
2013-06-20 01:10:38 +00:00
|
|
|
return nil, 0, nil, errors.New("Strangely This Should Never Have Happened!")
|
2012-09-17 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
2013-06-20 01:10:38 +00:00
|
|
|
func (vl *VolumeLayout) GetActiveVolumeCount(dataCenter string) int {
|
|
|
|
if dataCenter == "" {
|
|
|
|
return len(vl.writables)
|
|
|
|
}
|
|
|
|
counter := 0
|
|
|
|
for _, v := range vl.writables {
|
|
|
|
for _, dn := range vl.vid2location[v].list {
|
|
|
|
if dn.GetDataCenter().Id() == NodeId(dataCenter) {
|
|
|
|
counter++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return counter
|
2012-09-17 00:31:15 +00:00
|
|
|
}
|
|
|
|
|
2012-09-19 23:48:04 +00:00
|
|
|
func (vl *VolumeLayout) removeFromWritable(vid storage.VolumeId) bool {
|
2013-08-12 23:39:49 +00:00
|
|
|
toDeleteIndex := -1
|
|
|
|
for k, id := range vl.writables {
|
|
|
|
if id == vid {
|
|
|
|
toDeleteIndex = k
|
|
|
|
break
|
2012-09-19 23:48:04 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-12 23:39:49 +00:00
|
|
|
if toDeleteIndex >= 0 {
|
|
|
|
glog.V(0).Infoln("Volume", vid, "becomes unwritable")
|
|
|
|
vl.writables = append(vl.writables[0:toDeleteIndex], vl.writables[toDeleteIndex+1:]...)
|
|
|
|
return true
|
|
|
|
}
|
2012-09-19 23:48:04 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
func (vl *VolumeLayout) setVolumeWritable(vid storage.VolumeId) bool {
|
|
|
|
for _, v := range vl.writables {
|
|
|
|
if v == vid {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.V(0).Infoln("Volume", vid, "becomes writable")
|
2012-09-19 23:48:04 +00:00
|
|
|
vl.writables = append(vl.writables, vid)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (vl *VolumeLayout) SetVolumeUnavailable(dn *DataNode, vid storage.VolumeId) bool {
|
2013-07-16 04:34:43 +00:00
|
|
|
vl.accessLock.Lock()
|
|
|
|
defer vl.accessLock.Unlock()
|
|
|
|
|
2014-03-10 18:43:54 +00:00
|
|
|
if location, ok := vl.vid2location[vid]; ok {
|
|
|
|
if location.Remove(dn) {
|
|
|
|
if location.Length() < vl.rp.GetCopyCount() {
|
|
|
|
glog.V(0).Infoln("Volume", vid, "has", location.Length(), "replica, less than required", vl.rp.GetCopyCount())
|
|
|
|
return vl.removeFromWritable(vid)
|
|
|
|
}
|
2012-09-20 09:11:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
2012-09-19 08:45:30 +00:00
|
|
|
}
|
2012-09-19 23:48:04 +00:00
|
|
|
func (vl *VolumeLayout) SetVolumeAvailable(dn *DataNode, vid storage.VolumeId) bool {
|
2013-07-16 04:34:43 +00:00
|
|
|
vl.accessLock.Lock()
|
|
|
|
defer vl.accessLock.Unlock()
|
|
|
|
|
2014-03-19 11:48:13 +00:00
|
|
|
vl.vid2location[vid].Set(dn)
|
|
|
|
if vl.vid2location[vid].Length() >= vl.rp.GetCopyCount() {
|
|
|
|
return vl.setVolumeWritable(vid)
|
2012-09-19 23:48:04 +00:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2012-09-19 08:45:30 +00:00
|
|
|
|
2012-09-19 23:48:04 +00:00
|
|
|
func (vl *VolumeLayout) SetVolumeCapacityFull(vid storage.VolumeId) bool {
|
2013-07-16 04:34:43 +00:00
|
|
|
vl.accessLock.Lock()
|
|
|
|
defer vl.accessLock.Unlock()
|
|
|
|
|
2013-08-09 06:57:22 +00:00
|
|
|
// glog.V(0).Infoln("Volume", vid, "reaches full capacity.")
|
2012-09-19 23:48:04 +00:00
|
|
|
return vl.removeFromWritable(vid)
|
2012-09-19 08:45:30 +00:00
|
|
|
}
|
|
|
|
|
2013-11-12 10:19:06 +00:00
|
|
|
func (vl *VolumeLayout) ToMap() map[string]interface{} {
|
2012-09-17 00:31:15 +00:00
|
|
|
m := make(map[string]interface{})
|
2014-03-03 06:16:54 +00:00
|
|
|
m["replication"] = vl.rp.String()
|
2012-09-17 00:31:15 +00:00
|
|
|
m["writables"] = vl.writables
|
|
|
|
//m["locations"] = vl.vid2location
|
|
|
|
return m
|
2012-09-10 07:18:07 +00:00
|
|
|
}
|