2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2019-06-09 01:14:07 -04:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-02-08 12:25:29 -05:00
|
|
|
"fmt"
|
2021-08-26 23:32:58 -04:00
|
|
|
"runtime"
|
2023-02-08 12:25:29 -05:00
|
|
|
"strconv"
|
2023-02-09 13:29:20 -05:00
|
|
|
"time"
|
2019-06-09 01:14:07 -04:00
|
|
|
|
2023-06-19 20:53:08 -04:00
|
|
|
"github.com/minio/madmin-go/v3"
|
2023-02-08 12:25:29 -05:00
|
|
|
"github.com/minio/minio/internal/logger"
|
2023-09-04 15:57:37 -04:00
|
|
|
"github.com/minio/pkg/v2/env"
|
2019-06-09 01:14:07 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// healTask represents what to heal along with options
|
2022-08-26 15:52:29 -04:00
|
|
|
//
|
|
|
|
// path: '/' => Heal disk formats along with metadata
|
|
|
|
// path: 'bucket/' or '/bucket/' => Heal bucket
|
|
|
|
// path: 'bucket/object' => Heal object
|
2019-06-09 01:14:07 -04:00
|
|
|
type healTask struct {
|
2020-06-12 23:04:01 -04:00
|
|
|
bucket string
|
|
|
|
object string
|
|
|
|
versionID string
|
|
|
|
opts madmin.HealOpts
|
2019-06-09 01:14:07 -04:00
|
|
|
// Healing response will be sent here
|
2021-08-26 23:32:58 -04:00
|
|
|
respCh chan healResult
|
2019-06-09 01:14:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// healResult represents a healing result with a possible error
|
|
|
|
type healResult struct {
|
|
|
|
result madmin.HealResultItem
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
// healRoutine receives heal tasks, to heal buckets, objects and format.json
|
|
|
|
type healRoutine struct {
|
2021-08-26 23:32:58 -04:00
|
|
|
tasks chan healTask
|
|
|
|
workers int
|
2019-06-09 01:14:07 -04:00
|
|
|
}
|
|
|
|
|
2022-07-05 17:45:49 -04:00
|
|
|
func activeListeners() int {
|
2020-07-22 16:16:55 -04:00
|
|
|
// Bucket notification and http trace are not costly, it is okay to ignore them
|
|
|
|
// while counting the number of concurrent connections
|
2022-10-28 13:55:42 -04:00
|
|
|
return int(globalHTTPListen.Subscribers()) + int(globalTrace.Subscribers())
|
2021-08-26 17:06:04 -04:00
|
|
|
}
|
2020-07-22 16:16:55 -04:00
|
|
|
|
2023-02-09 13:29:20 -05:00
|
|
|
func waitForLowIO(maxIO int, maxWait time.Duration, currentIO func() int) {
|
|
|
|
// No need to wait run at full speed.
|
|
|
|
if maxIO <= 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const waitTick = 100 * time.Millisecond
|
|
|
|
|
|
|
|
tmpMaxWait := maxWait
|
|
|
|
|
|
|
|
for currentIO() >= maxIO {
|
|
|
|
if tmpMaxWait > 0 {
|
|
|
|
if tmpMaxWait < waitTick {
|
|
|
|
time.Sleep(tmpMaxWait)
|
2023-08-09 15:51:47 -04:00
|
|
|
return
|
2023-02-09 13:29:20 -05:00
|
|
|
}
|
2023-08-09 15:51:47 -04:00
|
|
|
time.Sleep(waitTick)
|
2023-02-09 13:29:20 -05:00
|
|
|
tmpMaxWait -= waitTick
|
|
|
|
}
|
|
|
|
if tmpMaxWait <= 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func currentHTTPIO() int {
|
|
|
|
httpServer := newHTTPServerFn()
|
|
|
|
if httpServer == nil {
|
|
|
|
return 0
|
2020-02-13 09:36:23 -05:00
|
|
|
}
|
2021-08-26 17:06:04 -04:00
|
|
|
|
2023-02-09 13:29:20 -05:00
|
|
|
return httpServer.GetRequestCount() - activeListeners()
|
|
|
|
}
|
|
|
|
|
|
|
|
func waitForLowHTTPReq() {
|
|
|
|
maxIO, maxWait, _ := globalHealConfig.Clone()
|
|
|
|
waitForLowIO(maxIO, maxWait, currentHTTPIO)
|
2020-02-13 09:36:23 -05:00
|
|
|
}
|
|
|
|
|
2021-08-26 23:32:58 -04:00
|
|
|
func initBackgroundHealing(ctx context.Context, objAPI ObjectLayer) {
|
|
|
|
// Run the background healer
|
|
|
|
globalBackgroundHealRoutine = newHealRoutine()
|
|
|
|
for i := 0; i < globalBackgroundHealRoutine.workers; i++ {
|
|
|
|
go globalBackgroundHealRoutine.AddWorker(ctx, objAPI)
|
|
|
|
}
|
|
|
|
|
|
|
|
globalBackgroundHealState.LaunchNewHealSequence(newBgHealSequence(), objAPI)
|
|
|
|
}
|
|
|
|
|
2019-06-09 01:14:07 -04:00
|
|
|
// Wait for heal requests and process them
|
2021-08-26 23:32:58 -04:00
|
|
|
func (h *healRoutine) AddWorker(ctx context.Context, objAPI ObjectLayer) {
|
2019-06-09 01:14:07 -04:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case task, ok := <-h.tasks:
|
|
|
|
if !ok {
|
2021-01-25 10:53:12 -05:00
|
|
|
return
|
2019-06-09 01:14:07 -04:00
|
|
|
}
|
2020-01-10 05:35:06 -05:00
|
|
|
|
2019-06-09 01:14:07 -04:00
|
|
|
var res madmin.HealResultItem
|
|
|
|
var err error
|
2021-01-25 10:53:12 -05:00
|
|
|
switch task.bucket {
|
|
|
|
case nopHeal:
|
2023-01-19 08:20:54 -05:00
|
|
|
err = errSkipFile
|
2021-01-25 10:53:12 -05:00
|
|
|
case SlashSeparator:
|
2020-03-22 15:16:36 -04:00
|
|
|
res, err = healDiskFormat(ctx, objAPI, task.opts)
|
2021-01-25 10:53:12 -05:00
|
|
|
default:
|
|
|
|
if task.object == "" {
|
|
|
|
res, err = objAPI.HealBucket(ctx, task.bucket, task.opts)
|
|
|
|
} else {
|
|
|
|
res, err = objAPI.HealObject(ctx, task.bucket, task.object, task.versionID, task.opts)
|
|
|
|
}
|
2019-06-09 01:14:07 -04:00
|
|
|
}
|
2021-08-25 20:46:20 -04:00
|
|
|
|
2023-01-19 08:20:54 -05:00
|
|
|
if task.respCh != nil {
|
|
|
|
task.respCh <- healResult{result: res, err: err}
|
|
|
|
}
|
|
|
|
|
2020-03-22 15:16:36 -04:00
|
|
|
case <-ctx.Done():
|
2019-06-09 01:14:07 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-29 16:07:26 -04:00
|
|
|
func newHealRoutine() *healRoutine {
|
2021-08-26 23:32:58 -04:00
|
|
|
workers := runtime.GOMAXPROCS(0) / 2
|
2023-02-08 12:25:29 -05:00
|
|
|
|
|
|
|
if envHealWorkers := env.Get("_MINIO_HEAL_WORKERS", ""); envHealWorkers != "" {
|
|
|
|
if numHealers, err := strconv.Atoi(envHealWorkers); err != nil {
|
|
|
|
logger.LogIf(context.Background(), fmt.Errorf("invalid _MINIO_HEAL_WORKERS value: %w", err))
|
|
|
|
} else {
|
|
|
|
workers = numHealers
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-26 23:32:58 -04:00
|
|
|
if workers == 0 {
|
|
|
|
workers = 4
|
|
|
|
}
|
2023-02-08 12:25:29 -05:00
|
|
|
|
2019-06-09 01:14:07 -04:00
|
|
|
return &healRoutine{
|
2021-08-26 23:32:58 -04:00
|
|
|
tasks: make(chan healTask),
|
|
|
|
workers: workers,
|
2019-06-09 01:14:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-22 15:16:36 -04:00
|
|
|
// healDiskFormat - heals format.json, return value indicates if a
|
2019-06-09 01:14:07 -04:00
|
|
|
// failure error occurred.
|
2020-03-22 15:16:36 -04:00
|
|
|
func healDiskFormat(ctx context.Context, objAPI ObjectLayer, opts madmin.HealOpts) (madmin.HealResultItem, error) {
|
|
|
|
res, err := objAPI.HealFormat(ctx, opts.DryRun)
|
2019-06-09 01:14:07 -04:00
|
|
|
|
|
|
|
// return any error, ignore error returned when disks have
|
|
|
|
// already healed.
|
|
|
|
if err != nil && err != errNoHealRequired {
|
|
|
|
return madmin.HealResultItem{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return res, nil
|
|
|
|
}
|