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/>.
|
2020-09-12 03:08:12 -04:00
|
|
|
|
2020-10-14 16:51:51 -04:00
|
|
|
package heal
|
2020-09-12 03:08:12 -04:00
|
|
|
|
|
|
|
import (
|
2022-04-07 11:10:40 -04:00
|
|
|
"errors"
|
2020-12-02 14:12:00 -05:00
|
|
|
"fmt"
|
|
|
|
"strconv"
|
2022-04-07 11:10:40 -04:00
|
|
|
"strings"
|
2021-08-26 17:06:04 -04:00
|
|
|
"sync"
|
2020-12-02 14:12:00 -05:00
|
|
|
"time"
|
2020-09-12 03:08:12 -04:00
|
|
|
|
2021-06-01 17:59:40 -04:00
|
|
|
"github.com/minio/minio/internal/config"
|
2021-05-28 18:17:01 -04:00
|
|
|
"github.com/minio/pkg/env"
|
2020-09-12 03:08:12 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// Compression environment variables
|
|
|
|
const (
|
2020-12-02 14:12:00 -05:00
|
|
|
Bitrot = "bitrotscan"
|
|
|
|
Sleep = "max_sleep"
|
|
|
|
IOCount = "max_io"
|
|
|
|
|
|
|
|
EnvBitrot = "MINIO_HEAL_BITROTSCAN"
|
|
|
|
EnvSleep = "MINIO_HEAL_MAX_SLEEP"
|
|
|
|
EnvIOCount = "MINIO_HEAL_MAX_IO"
|
2020-09-12 03:08:12 -04:00
|
|
|
)
|
|
|
|
|
2021-08-26 17:06:04 -04:00
|
|
|
var configMutex sync.RWMutex
|
|
|
|
|
2020-10-14 16:51:51 -04:00
|
|
|
// Config represents the heal settings.
|
2020-09-12 03:08:12 -04:00
|
|
|
type Config struct {
|
|
|
|
// Bitrot will perform bitrot scan on local disk when checking objects.
|
2022-04-07 11:10:40 -04:00
|
|
|
Bitrot string `json:"bitrotscan"`
|
|
|
|
|
2020-12-02 14:12:00 -05:00
|
|
|
// maximum sleep duration between objects to slow down heal operation.
|
|
|
|
Sleep time.Duration `json:"sleep"`
|
|
|
|
IOCount int `json:"iocount"`
|
2022-04-07 11:10:40 -04:00
|
|
|
|
|
|
|
// Cached value from Bitrot field
|
|
|
|
cache struct {
|
|
|
|
// -1: bitrot enabled, 0: bitrot disabled, > 0: bitrot cycle
|
|
|
|
bitrotCycle time.Duration
|
|
|
|
}
|
2020-09-12 03:08:12 -04:00
|
|
|
}
|
|
|
|
|
2022-04-07 11:10:40 -04:00
|
|
|
// BitrotScanCycle returns the configured cycle for the scanner healing
|
|
|
|
// -1 for not enabled
|
|
|
|
// 0 for contiunous bitrot scanning
|
|
|
|
// >0 interval duration between cycles
|
|
|
|
func (opts Config) BitrotScanCycle() (d time.Duration) {
|
2021-08-26 17:06:04 -04:00
|
|
|
configMutex.RLock()
|
|
|
|
defer configMutex.RUnlock()
|
2022-04-07 11:10:40 -04:00
|
|
|
return opts.cache.bitrotCycle
|
2021-08-26 17:06:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Wait waits for IOCount to go down or max sleep to elapse before returning.
|
|
|
|
// usually used in healing paths to wait for specified amount of time to
|
|
|
|
// throttle healing.
|
2022-07-05 17:45:49 -04:00
|
|
|
func (opts Config) Wait(currentIO func() int, activeListeners func() int) {
|
2021-08-26 17:06:04 -04:00
|
|
|
configMutex.RLock()
|
|
|
|
maxIO, maxWait := opts.IOCount, opts.Sleep
|
|
|
|
configMutex.RUnlock()
|
|
|
|
|
|
|
|
// No need to wait run at full speed.
|
|
|
|
if maxIO <= 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// At max 10 attempts to wait with 100 millisecond interval before proceeding
|
|
|
|
waitTick := 100 * time.Millisecond
|
|
|
|
|
|
|
|
tmpMaxWait := maxWait
|
|
|
|
|
|
|
|
if currentIO != nil {
|
2022-07-05 17:45:49 -04:00
|
|
|
for currentIO() >= maxIO+activeListeners() {
|
2021-08-26 17:06:04 -04:00
|
|
|
if tmpMaxWait > 0 {
|
|
|
|
if tmpMaxWait < waitTick {
|
|
|
|
time.Sleep(tmpMaxWait)
|
|
|
|
} else {
|
|
|
|
time.Sleep(waitTick)
|
|
|
|
}
|
2021-11-16 12:28:29 -05:00
|
|
|
tmpMaxWait -= waitTick
|
2021-08-26 17:06:04 -04:00
|
|
|
}
|
|
|
|
if tmpMaxWait <= 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update updates opts with nopts
|
|
|
|
func (opts *Config) Update(nopts Config) {
|
|
|
|
configMutex.Lock()
|
|
|
|
defer configMutex.Unlock()
|
|
|
|
|
|
|
|
opts.Bitrot = nopts.Bitrot
|
|
|
|
opts.IOCount = nopts.IOCount
|
|
|
|
opts.Sleep = nopts.Sleep
|
2022-04-07 11:10:40 -04:00
|
|
|
|
|
|
|
opts.cache.bitrotCycle, _ = parseBitrotConfig(nopts.Bitrot)
|
2021-08-26 17:06:04 -04:00
|
|
|
}
|
|
|
|
|
2022-04-26 23:11:37 -04:00
|
|
|
// DefaultKVS - default KV config for heal settings
|
|
|
|
var DefaultKVS = config.KVS{
|
|
|
|
config.KV{
|
|
|
|
Key: Bitrot,
|
|
|
|
Value: config.EnableOff,
|
|
|
|
},
|
|
|
|
config.KV{
|
|
|
|
Key: Sleep,
|
|
|
|
Value: "1s",
|
|
|
|
},
|
|
|
|
config.KV{
|
|
|
|
Key: IOCount,
|
|
|
|
Value: "100",
|
|
|
|
},
|
|
|
|
}
|
2020-09-12 03:08:12 -04:00
|
|
|
|
2022-04-07 11:10:40 -04:00
|
|
|
const minimumBitrotCycleInMonths = 1
|
|
|
|
|
|
|
|
func parseBitrotConfig(s string) (time.Duration, error) {
|
|
|
|
// Try to parse as a boolean
|
|
|
|
enabled, err := config.ParseBool(s)
|
|
|
|
if err == nil {
|
|
|
|
switch enabled {
|
|
|
|
case true:
|
|
|
|
return 0, nil
|
|
|
|
case false:
|
|
|
|
return -1, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to parse as a number of months
|
|
|
|
if !strings.HasSuffix(s, "m") {
|
|
|
|
return -1, errors.New("unknown format")
|
|
|
|
}
|
|
|
|
|
|
|
|
months, err := strconv.Atoi(strings.TrimSuffix(s, "m"))
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if months < minimumBitrotCycleInMonths {
|
|
|
|
return -1, fmt.Errorf("minimum bitrot cycle is %d month(s)", minimumBitrotCycleInMonths)
|
|
|
|
}
|
|
|
|
|
|
|
|
return time.Duration(months) * 30 * 24 * time.Hour, nil
|
|
|
|
}
|
|
|
|
|
2020-09-12 03:08:12 -04:00
|
|
|
// LookupConfig - lookup config and override with valid environment settings if any.
|
|
|
|
func LookupConfig(kvs config.KVS) (cfg Config, err error) {
|
2020-10-14 16:51:51 -04:00
|
|
|
if err = config.CheckValidKeys(config.HealSubSys, kvs, DefaultKVS); err != nil {
|
2020-09-12 03:08:12 -04:00
|
|
|
return cfg, err
|
|
|
|
}
|
2022-04-07 11:10:40 -04:00
|
|
|
cfg.Bitrot = env.Get(EnvBitrot, kvs.GetWithDefault(Bitrot, DefaultKVS))
|
|
|
|
_, err = parseBitrotConfig(cfg.Bitrot)
|
2020-12-02 14:12:00 -05:00
|
|
|
if err != nil {
|
|
|
|
return cfg, fmt.Errorf("'heal:bitrotscan' value invalid: %w", err)
|
|
|
|
}
|
2021-11-10 13:01:32 -05:00
|
|
|
cfg.Sleep, err = time.ParseDuration(env.Get(EnvSleep, kvs.GetWithDefault(Sleep, DefaultKVS)))
|
2020-12-02 14:12:00 -05:00
|
|
|
if err != nil {
|
|
|
|
return cfg, fmt.Errorf("'heal:max_sleep' value invalid: %w", err)
|
|
|
|
}
|
2021-11-10 13:01:32 -05:00
|
|
|
cfg.IOCount, err = strconv.Atoi(env.Get(EnvIOCount, kvs.GetWithDefault(IOCount, DefaultKVS)))
|
2020-12-02 14:12:00 -05:00
|
|
|
if err != nil {
|
|
|
|
return cfg, fmt.Errorf("'heal:max_io' value invalid: %w", err)
|
2020-09-12 03:08:12 -04:00
|
|
|
}
|
|
|
|
return cfg, nil
|
|
|
|
}
|