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"
|
2021-08-26 23:32:58 -04:00
|
|
|
"runtime"
|
2019-06-09 01:14:07 -04:00
|
|
|
|
2021-05-06 11:52:02 -04:00
|
|
|
"github.com/minio/madmin-go"
|
2022-07-05 17:45:49 -04:00
|
|
|
"github.com/minio/minio/internal/pubsub"
|
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-07-05 17:45:49 -04:00
|
|
|
return int(globalHTTPListen.NumSubscribers(pubsub.MaskAll)) + int(globalTrace.NumSubscribers(pubsub.MaskAll))
|
2021-08-26 17:06:04 -04:00
|
|
|
}
|
2020-07-22 16:16:55 -04:00
|
|
|
|
2021-08-26 17:06:04 -04:00
|
|
|
func waitForLowHTTPReq() {
|
|
|
|
var currentIO func() int
|
2020-02-13 09:36:23 -05:00
|
|
|
if httpServer := newHTTPServerFn(); httpServer != nil {
|
2021-08-26 17:06:04 -04:00
|
|
|
currentIO = httpServer.GetRequestCount
|
2020-02-13 09:36:23 -05:00
|
|
|
}
|
2021-08-26 17:06:04 -04:00
|
|
|
|
2022-07-05 17:45:49 -04:00
|
|
|
globalHealConfig.Wait(currentIO, activeListeners)
|
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:
|
2021-08-26 23:32:58 -04:00
|
|
|
task.respCh <- healResult{err: errSkipFile}
|
2020-06-12 23:04:01 -04:00
|
|
|
continue
|
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
|
|
|
|
2021-08-26 23:32:58 -04:00
|
|
|
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
|
|
|
|
if workers == 0 {
|
|
|
|
workers = 4
|
|
|
|
}
|
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
|
|
|
|
}
|