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 (
|
2020-12-02 14:12:00 -05:00
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
"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
|
|
|
)
|
|
|
|
|
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.
|
|
|
|
Bitrot bool `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"`
|
2020-09-12 03:08:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2020-10-14 16:51:51 -04:00
|
|
|
// DefaultKVS - default KV config for heal settings
|
2020-09-12 03:08:12 -04:00
|
|
|
DefaultKVS = config.KVS{
|
|
|
|
config.KV{
|
2020-10-14 16:51:51 -04:00
|
|
|
Key: Bitrot,
|
2020-09-12 03:08:12 -04:00
|
|
|
Value: config.EnableOff,
|
|
|
|
},
|
2020-12-02 14:12:00 -05:00
|
|
|
config.KV{
|
|
|
|
Key: Sleep,
|
|
|
|
Value: "1s",
|
|
|
|
},
|
|
|
|
config.KV{
|
|
|
|
Key: IOCount,
|
2021-08-25 20:46:20 -04:00
|
|
|
Value: "100",
|
2020-12-02 14:12:00 -05:00
|
|
|
},
|
2020-09-12 03:08:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Help provides help for config values
|
|
|
|
Help = config.HelpKVS{
|
|
|
|
config.HelpKV{
|
2020-10-14 16:51:51 -04:00
|
|
|
Key: Bitrot,
|
2021-02-26 18:11:42 -05:00
|
|
|
Description: `perform bitrot scan on disks when checking objects during scanner`,
|
2020-09-12 03:08:12 -04:00
|
|
|
Optional: true,
|
|
|
|
Type: "on|off",
|
|
|
|
},
|
2020-12-02 14:12:00 -05:00
|
|
|
config.HelpKV{
|
|
|
|
Key: Sleep,
|
|
|
|
Description: `maximum sleep duration between objects to slow down heal operation. eg. 2s`,
|
|
|
|
Optional: true,
|
|
|
|
Type: "duration",
|
|
|
|
},
|
|
|
|
config.HelpKV{
|
|
|
|
Key: IOCount,
|
|
|
|
Description: `maximum IO requests allowed between objects to slow down heal operation. eg. 3`,
|
|
|
|
Optional: true,
|
|
|
|
Type: "int",
|
|
|
|
},
|
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
|
|
|
|
}
|
2020-12-02 14:12:00 -05:00
|
|
|
cfg.Bitrot, err = config.ParseBool(env.Get(EnvBitrot, kvs.Get(Bitrot)))
|
|
|
|
if err != nil {
|
|
|
|
return cfg, fmt.Errorf("'heal:bitrotscan' value invalid: %w", err)
|
|
|
|
}
|
|
|
|
cfg.Sleep, err = time.ParseDuration(env.Get(EnvSleep, kvs.Get(Sleep)))
|
|
|
|
if err != nil {
|
|
|
|
return cfg, fmt.Errorf("'heal:max_sleep' value invalid: %w", err)
|
|
|
|
}
|
|
|
|
cfg.IOCount, err = strconv.Atoi(env.Get(EnvIOCount, kvs.Get(IOCount)))
|
|
|
|
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
|
|
|
|
}
|