seaweedfs/weed/topology/data_node_ec.go

136 lines
3.5 KiB
Go
Raw Normal View History

package topology
import (
"github.com/chrislusf/seaweedfs/weed/storage/erasure_coding"
2019-05-24 05:51:18 +00:00
"github.com/chrislusf/seaweedfs/weed/storage/needle"
)
func (dn *DataNode) GetEcShards() (ret []*erasure_coding.EcVolumeInfo) {
dn.RLock()
for _, ecVolumeInfo := range dn.ecShards {
ret = append(ret, ecVolumeInfo)
}
dn.RUnlock()
return ret
}
func (dn *DataNode) UpdateEcShards(actualShards []*erasure_coding.EcVolumeInfo) (newShards, deletedShards []*erasure_coding.EcVolumeInfo) {
2019-05-24 05:51:18 +00:00
// prepare the new ec shard map
actualEcShardMap := make(map[needle.VolumeId]*erasure_coding.EcVolumeInfo)
for _, ecShards := range actualShards {
2019-05-24 06:34:29 +00:00
actualEcShardMap[ecShards.VolumeId] = ecShards
2019-05-24 05:51:18 +00:00
}
// found out the newShards and deletedShards
2019-06-05 08:58:37 +00:00
var newShardCount, deletedShardCount int
2019-05-24 05:51:18 +00:00
dn.ecShardsLock.RLock()
2019-05-24 06:34:29 +00:00
for vid, ecShards := range dn.ecShards {
2019-05-24 05:51:18 +00:00
if actualEcShards, ok := actualEcShardMap[vid]; !ok {
// dn registered ec shards not found in the new set of ec shards
deletedShards = append(deletedShards, ecShards)
2019-06-05 08:58:37 +00:00
deletedShardCount += ecShards.ShardIdCount()
2019-05-24 05:51:18 +00:00
} else {
// found, but maybe the actual shard could be missing
a := actualEcShards.Minus(ecShards)
2019-05-25 09:02:44 +00:00
if a.ShardIdCount() > 0 {
2019-05-24 05:51:18 +00:00
newShards = append(newShards, a)
2019-06-05 08:58:37 +00:00
newShardCount += a.ShardIdCount()
2019-05-24 05:51:18 +00:00
}
d := ecShards.Minus(actualEcShards)
2019-05-25 09:02:44 +00:00
if d.ShardIdCount() > 0 {
2019-05-24 05:51:18 +00:00
deletedShards = append(deletedShards, d)
2019-06-05 08:58:37 +00:00
deletedShardCount += d.ShardIdCount()
2019-05-24 05:51:18 +00:00
}
}
}
for _, ecShards := range actualShards {
if _, found := dn.ecShards[ecShards.VolumeId]; !found {
newShards = append(newShards, ecShards)
2019-06-05 08:58:37 +00:00
newShardCount += ecShards.ShardIdCount()
2019-05-24 05:51:18 +00:00
}
}
dn.ecShardsLock.RUnlock()
2019-05-24 06:34:29 +00:00
if len(newShards) > 0 || len(deletedShards) > 0 {
2019-05-24 05:51:18 +00:00
// if changed, set to the new ec shard map
dn.ecShardsLock.Lock()
dn.ecShards = actualEcShardMap
2019-06-05 08:58:37 +00:00
dn.UpAdjustEcShardCountDelta(int64(newShardCount - deletedShardCount))
2019-05-24 05:51:18 +00:00
dn.ecShardsLock.Unlock()
}
return
}
func (dn *DataNode) DeltaUpdateEcShards(newShards, deletedShards []*erasure_coding.EcVolumeInfo) {
for _, newShard := range newShards {
dn.AddOrUpdateEcShard(newShard)
}
for _, deletedShard := range deletedShards {
dn.DeleteEcShard(deletedShard)
}
}
func (dn *DataNode) AddOrUpdateEcShard(s *erasure_coding.EcVolumeInfo) {
dn.ecShardsLock.Lock()
defer dn.ecShardsLock.Unlock()
delta := 0
if existing, ok := dn.ecShards[s.VolumeId]; !ok {
dn.ecShards[s.VolumeId] = s
delta = s.ShardBits.ShardIdCount()
} else {
oldCount := existing.ShardBits.ShardIdCount()
existing.ShardBits = existing.ShardBits.Plus(s.ShardBits)
delta = existing.ShardBits.ShardIdCount() - oldCount
}
dn.UpAdjustEcShardCountDelta(int64(delta))
}
func (dn *DataNode) DeleteEcShard(s *erasure_coding.EcVolumeInfo) {
dn.ecShardsLock.Lock()
defer dn.ecShardsLock.Unlock()
if existing, ok := dn.ecShards[s.VolumeId]; ok {
oldCount := existing.ShardBits.ShardIdCount()
existing.ShardBits = existing.ShardBits.Minus(s.ShardBits)
delta := existing.ShardBits.ShardIdCount() - oldCount
dn.UpAdjustEcShardCountDelta(int64(delta))
if existing.ShardBits.ShardIdCount() == 0 {
delete(dn.ecShards, s.VolumeId)
}
}
}
func (dn *DataNode) HasVolumesById(id needle.VolumeId) (hasVolumeId bool) {
// check whether normal volumes has this volume id
dn.RLock()
_, ok := dn.volumes[id]
if ok {
hasVolumeId = true
}
dn.RUnlock()
if hasVolumeId {
return
}
// check whether ec shards has this volume id
dn.ecShardsLock.RLock()
_, ok = dn.ecShards[id]
if ok {
hasVolumeId = true
}
dn.ecShardsLock.RUnlock()
return
}