123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- package topology
- import (
- "github.com/chrislusf/seaweedfs/weed/glog"
- "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
- "github.com/chrislusf/seaweedfs/weed/storage/erasure_coding"
- "github.com/chrislusf/seaweedfs/weed/storage/needle"
- )
- type EcShardLocations struct {
- Collection string
- Locations [erasure_coding.TotalShardsCount][]*DataNode
- }
- func (t *Topology) SyncDataNodeEcShards(shardInfos []*master_pb.VolumeEcShardInformationMessage, dn *DataNode) (newShards, deletedShards []*erasure_coding.EcVolumeInfo) {
- // convert into in memory struct storage.VolumeInfo
- var shards []*erasure_coding.EcVolumeInfo
- for _, shardInfo := range shardInfos {
- shards = append(shards,
- erasure_coding.NewEcVolumeInfo(
- shardInfo.Collection,
- needle.VolumeId(shardInfo.Id),
- erasure_coding.ShardBits(shardInfo.EcIndexBits)))
- }
- // find out the delta volumes
- newShards, deletedShards = dn.UpdateEcShards(shards)
- for _, v := range newShards {
- t.RegisterEcShards(v, dn)
- }
- for _, v := range deletedShards {
- t.UnRegisterEcShards(v, dn)
- }
- return
- }
- func (t *Topology) IncrementalSyncDataNodeEcShards(newEcShards, deletedEcShards []*master_pb.VolumeEcShardInformationMessage, dn *DataNode) {
- // convert into in memory struct storage.VolumeInfo
- var newShards, deletedShards []*erasure_coding.EcVolumeInfo
- for _, shardInfo := range newEcShards {
- newShards = append(newShards,
- erasure_coding.NewEcVolumeInfo(
- shardInfo.Collection,
- needle.VolumeId(shardInfo.Id),
- erasure_coding.ShardBits(shardInfo.EcIndexBits)))
- }
- for _, shardInfo := range deletedEcShards {
- deletedShards = append(deletedShards,
- erasure_coding.NewEcVolumeInfo(
- shardInfo.Collection,
- needle.VolumeId(shardInfo.Id),
- erasure_coding.ShardBits(shardInfo.EcIndexBits)))
- }
- dn.DeltaUpdateEcShards(newShards, deletedShards)
- for _, v := range newShards {
- t.RegisterEcShards(v, dn)
- }
- for _, v := range deletedShards {
- t.UnRegisterEcShards(v, dn)
- }
- return
- }
- func NewEcShardLocations(collection string) *EcShardLocations {
- return &EcShardLocations{
- Collection: collection,
- }
- }
- func (loc *EcShardLocations) AddShard(shardId erasure_coding.ShardId, dn *DataNode) (added bool) {
- dataNodes := loc.Locations[shardId]
- for _, n := range dataNodes {
- if n.Id() == dn.Id() {
- return false
- }
- }
- loc.Locations[shardId] = append(dataNodes, dn)
- return true
- }
- func (loc *EcShardLocations) DeleteShard(shardId erasure_coding.ShardId, dn *DataNode) (deleted bool) {
- dataNodes := loc.Locations[shardId]
- foundIndex := -1
- for index, n := range dataNodes {
- if n.Id() == dn.Id() {
- foundIndex = index
- }
- }
- if foundIndex < 0 {
- return false
- }
- loc.Locations[shardId] = append(dataNodes[:foundIndex], dataNodes[foundIndex+1:]...)
- return true
- }
- func (t *Topology) RegisterEcShards(ecShardInfos *erasure_coding.EcVolumeInfo, dn *DataNode) {
- t.ecShardMapLock.Lock()
- defer t.ecShardMapLock.Unlock()
- locations, found := t.ecShardMap[ecShardInfos.VolumeId]
- if !found {
- locations = NewEcShardLocations(ecShardInfos.Collection)
- t.ecShardMap[ecShardInfos.VolumeId] = locations
- }
- for _, shardId := range ecShardInfos.ShardIds() {
- locations.AddShard(shardId, dn)
- }
- }
- func (t *Topology) UnRegisterEcShards(ecShardInfos *erasure_coding.EcVolumeInfo, dn *DataNode) {
- glog.Infof("removing ec shard info:%+v", ecShardInfos)
- t.ecShardMapLock.Lock()
- defer t.ecShardMapLock.Unlock()
- locations, found := t.ecShardMap[ecShardInfos.VolumeId]
- if !found {
- return
- }
- for _, shardId := range ecShardInfos.ShardIds() {
- locations.DeleteShard(shardId, dn)
- }
- }
- func (t *Topology) LookupEcShards(vid needle.VolumeId) (locations *EcShardLocations, found bool) {
- t.ecShardMapLock.RLock()
- defer t.ecShardMapLock.RUnlock()
- locations, found = t.ecShardMap[vid]
- return
- }
- func (t *Topology) ListEcServersByCollection(collection string) (dataNodes []string) {
- t.ecShardMapLock.RLock()
- defer t.ecShardMapLock.RUnlock()
- dateNodeMap := make(map[string]bool)
- for _, ecVolumeLocation := range t.ecShardMap {
- if ecVolumeLocation.Collection == collection {
- for _, locations := range ecVolumeLocation.Locations {
- for _, loc := range locations {
- dateNodeMap[string(loc.Id())] = true
- }
- }
- }
- }
- for k, _ := range dateNodeMap {
- dataNodes = append(dataNodes, k)
- }
- return
- }
- func (t *Topology) DeleteEcCollection(collection string) {
- t.ecShardMapLock.Lock()
- defer t.ecShardMapLock.Unlock()
- var vids []needle.VolumeId
- for vid, ecVolumeLocation := range t.ecShardMap {
- if ecVolumeLocation.Collection == collection {
- vids = append(vids, vid)
- }
- }
- for _, vid := range vids {
- delete(t.ecShardMap, vid)
- }
- return
- }
|