mirror of
https://github.com/minio/minio.git
synced 2025-04-03 11:20:30 -04:00
fix: make decommission restart non-blocking (#14591)
currently an on-going decommission, during a server restart might block the startup sequence for relatively longer periods, instead start the decommission in background lazily.
This commit is contained in:
parent
b0a4beb66a
commit
bd6f7b6d83
@ -472,13 +472,16 @@ func (z *erasureServerPools) Init(ctx context.Context) error {
|
|||||||
// '-1' as argument to decommission multiple pools at a time
|
// '-1' as argument to decommission multiple pools at a time
|
||||||
// but this is not a priority at the moment.
|
// but this is not a priority at the moment.
|
||||||
for _, pool := range meta.returnResumablePools(1) {
|
for _, pool := range meta.returnResumablePools(1) {
|
||||||
err := z.Decommission(ctx, pool.ID)
|
go func(pool PoolStatus) {
|
||||||
switch err {
|
switch err := z.Decommission(ctx, pool.ID); err {
|
||||||
case errDecommissionAlreadyRunning:
|
case errDecommissionAlreadyRunning:
|
||||||
fallthrough
|
fallthrough
|
||||||
case nil:
|
case nil:
|
||||||
go z.doDecommissionInRoutine(ctx, pool.ID)
|
z.doDecommissionInRoutine(ctx, pool.ID)
|
||||||
}
|
default:
|
||||||
|
logger.LogIf(ctx, fmt.Errorf("Unable to resume decommission of pool %v: %w", pool, err))
|
||||||
|
}
|
||||||
|
}(pool)
|
||||||
}
|
}
|
||||||
z.poolMeta = meta
|
z.poolMeta = meta
|
||||||
|
|
||||||
|
@ -128,7 +128,9 @@ func newErasureServerPools(ctx context.Context, endpointServerPools EndpointServ
|
|||||||
if !configRetriableErrors(err) {
|
if !configRetriableErrors(err) {
|
||||||
logger.Fatal(err, "Unable to initialize backend")
|
logger.Fatal(err, "Unable to initialize backend")
|
||||||
}
|
}
|
||||||
time.Sleep(time.Duration(r.Float64() * float64(5*time.Second)))
|
retry := time.Duration(r.Float64() * float64(5*time.Second))
|
||||||
|
logger.LogIf(ctx, fmt.Errorf("Unable to initialize backend: %w, retrying in %s", err, retry))
|
||||||
|
time.Sleep(retry)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
|
Loading…
x
Reference in New Issue
Block a user