decom: during multiple pool decom preserve current pool status (#17491)

removal of completed pools must retain pool status of other
pools in draining, to resume any remaining draining operations.
This commit is contained in:
Harshavardhana 2023-06-23 07:44:18 -07:00 committed by GitHub
parent bd9bf3693f
commit d315d012a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -461,22 +461,34 @@ func (z *erasureServerPools) Init(ctx context.Context) error {
if !update { if !update {
z.poolMeta = meta z.poolMeta = meta
} else { } else {
meta = poolMeta{} // to update write poolMeta fresh. newMeta := poolMeta{} // to update write poolMeta fresh.
// looks like new pool was added we need to update, // looks like new pool was added we need to update,
// or this is a fresh installation (or an existing // or this is a fresh installation (or an existing
// installation with pool removed) // installation with pool removed)
meta.Version = poolMetaVersion newMeta.Version = poolMetaVersion
for idx, pool := range z.serverPools { for idx, pool := range z.serverPools {
meta.Pools = append(meta.Pools, PoolStatus{ var skip bool
for _, currentPool := range meta.Pools {
// Preserve any current pool status.
if currentPool.CmdLine == pool.endpoints.CmdLine {
newMeta.Pools = append(newMeta.Pools, currentPool)
skip = true
break
}
}
if skip {
continue
}
newMeta.Pools = append(newMeta.Pools, PoolStatus{
CmdLine: pool.endpoints.CmdLine, CmdLine: pool.endpoints.CmdLine,
ID: idx, ID: idx,
LastUpdate: UTCNow(), LastUpdate: UTCNow(),
}) })
} }
if err = meta.save(ctx, z.serverPools); err != nil { if err = newMeta.save(ctx, z.serverPools); err != nil {
return err return err
} }
z.poolMeta = meta z.poolMeta = newMeta
} }
pools := meta.returnResumablePools() pools := meta.returnResumablePools()
@ -1103,7 +1115,9 @@ func (z *erasureServerPools) Decommission(ctx context.Context, indices ...int) e
} }
for _, idx := range indices { for _, idx := range indices {
go z.doDecommissionInRoutine(ctx, idx) // decommission all pools serially one after
// the other.
z.doDecommissionInRoutine(ctx, idx)
} }
// Successfully started decommissioning. // Successfully started decommissioning.