1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-09-18 23:10:35 +02:00

push the ec shard info to master

This commit is contained in:
Chris Lu 2019-05-23 23:47:49 -07:00
parent 8838176d82
commit 24b8ad9a14

View file

@ -105,6 +105,16 @@ func (ms *MasterServer) SendHeartbeat(stream master_pb.Seaweed_SendHeartbeatServ
if len(heartbeat.EcShards) > 0 {
glog.V(0).Infof("master recieved ec shards from %s: %+v", dn.Url(), heartbeat.EcShards)
newShards, deletedShards := t.SyncDataNodeEcShards(heartbeat.EcShards, dn)
//TODO broadcast the ec vid
if len(newShards)>0{
}
if len(deletedShards)>0{
}
}
if len(message.NewVids) > 0 || len(message.DeletedVids) > 0 {