Browse Source

Fix "no more writable volumes" error when volume grows and master leader changed at the same time (#5771)

pull/5775/head
小羽 5 months ago
committed by GitHub
parent
commit
cb5dae0c9c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 7
      weed/server/master_grpc_server_volume.go

7
weed/server/master_grpc_server_volume.go

@ -27,9 +27,13 @@ func (ms *MasterServer) ProcessGrowRequest() {
break
}
option := req.Option
vl := ms.Topo.GetVolumeLayout(option.Collection, option.ReplicaPlacement, option.Ttl, option.DiskType)
if !ms.Topo.IsLeader() {
//discard buffered requests
time.Sleep(time.Second * 1)
vl.DoneGrowRequest()
continue
}
@ -42,9 +46,6 @@ func (ms *MasterServer) ProcessGrowRequest() {
return !found
})
option := req.Option
vl := ms.Topo.GetVolumeLayout(option.Collection, option.ReplicaPlacement, option.Ttl, option.DiskType)
// not atomic but it's okay
if !found && vl.ShouldGrowVolumes(option) {
filter.Store(req, nil)

Loading…
Cancel
Save