2019-10-28 13:27:49 -04:00
|
|
|
/*
|
|
|
|
* MinIO Cloud Storage, (C) 2019 MinIO, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-08-18 17:37:26 -04:00
|
|
|
"errors"
|
2020-08-07 16:22:53 -04:00
|
|
|
"fmt"
|
2019-10-28 13:27:49 -04:00
|
|
|
"time"
|
|
|
|
|
2020-07-16 10:30:05 -04:00
|
|
|
"github.com/dustin/go-humanize"
|
2019-10-28 13:27:49 -04:00
|
|
|
"github.com/minio/minio/cmd/logger"
|
|
|
|
)
|
|
|
|
|
2020-09-28 22:39:32 -04:00
|
|
|
const (
|
|
|
|
defaultMonitorNewDiskInterval = time.Second * 10
|
|
|
|
healingTrackerFilename = ".healing.bin"
|
|
|
|
)
|
|
|
|
|
|
|
|
//go:generate msgp -file $GOFILE -unexported
|
|
|
|
type healingTracker struct {
|
|
|
|
ID string
|
|
|
|
|
|
|
|
// future add more tracking capabilities
|
|
|
|
}
|
2019-10-28 13:27:49 -04:00
|
|
|
|
2020-08-07 22:43:06 -04:00
|
|
|
func initAutoHeal(ctx context.Context, objAPI ObjectLayer) {
|
|
|
|
z, ok := objAPI.(*erasureZones)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
initBackgroundHealing(ctx, objAPI) // start quick background healing
|
|
|
|
|
|
|
|
var bgSeq *healSequence
|
|
|
|
var found bool
|
|
|
|
|
|
|
|
for {
|
|
|
|
bgSeq, found = globalBackgroundHealState.getHealSequenceByToken(bgHealingUUID)
|
|
|
|
if found {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
}
|
|
|
|
|
2020-09-28 22:39:32 -04:00
|
|
|
globalBackgroundHealState.pushHealLocalDisks(getLocalDisksToHeal()...)
|
2020-09-04 20:09:02 -04:00
|
|
|
|
|
|
|
if drivesToHeal := globalBackgroundHealState.healDriveCount(); drivesToHeal > 0 {
|
|
|
|
logger.Info(fmt.Sprintf("Found drives to heal %d, waiting until %s to heal the content...",
|
|
|
|
drivesToHeal, defaultMonitorNewDiskInterval))
|
|
|
|
|
2020-08-07 22:43:06 -04:00
|
|
|
// Heal any disk format and metadata early, if possible.
|
|
|
|
if err := bgSeq.healDiskMeta(); err != nil {
|
|
|
|
if newObjectLayerFn() != nil {
|
|
|
|
// log only in situations, when object layer
|
|
|
|
// has fully initialized.
|
|
|
|
logger.LogIf(bgSeq.ctx, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-04 20:09:02 -04:00
|
|
|
go monitorLocalDisksAndHeal(ctx, z, bgSeq)
|
2019-10-28 13:27:49 -04:00
|
|
|
}
|
|
|
|
|
2020-09-04 20:09:02 -04:00
|
|
|
func getLocalDisksToHeal() (disksToHeal Endpoints) {
|
|
|
|
for _, ep := range globalEndpoints {
|
2020-08-07 16:22:53 -04:00
|
|
|
for _, endpoint := range ep.Endpoints {
|
|
|
|
if !endpoint.IsLocal {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Try to connect to the current endpoint
|
|
|
|
// and reformat if the current disk is not formatted
|
2020-09-28 22:39:32 -04:00
|
|
|
disk, _, err := connectEndpoint(endpoint)
|
2020-08-18 17:37:26 -04:00
|
|
|
if errors.Is(err, errUnformattedDisk) {
|
2020-09-04 20:09:02 -04:00
|
|
|
disksToHeal = append(disksToHeal, endpoint)
|
2020-09-28 22:39:32 -04:00
|
|
|
} else if err == nil && disk != nil && disk.Healing() {
|
|
|
|
disksToHeal = append(disksToHeal, disk.Endpoint())
|
2020-08-07 16:22:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-04 20:09:02 -04:00
|
|
|
return disksToHeal
|
2020-08-07 16:22:53 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-08-07 22:43:06 -04:00
|
|
|
func initBackgroundHealing(ctx context.Context, objAPI ObjectLayer) {
|
|
|
|
// Run the background healer
|
|
|
|
globalBackgroundHealRoutine = newHealRoutine()
|
|
|
|
go globalBackgroundHealRoutine.run(ctx, objAPI)
|
|
|
|
|
|
|
|
globalBackgroundHealState.LaunchNewHealSequence(newBgHealSequence())
|
|
|
|
}
|
|
|
|
|
2019-10-28 13:27:49 -04:00
|
|
|
// monitorLocalDisksAndHeal - ensures that detected new disks are healed
|
|
|
|
// 1. Only the concerned erasure set will be listed and healed
|
|
|
|
// 2. Only the node hosting the disk is responsible to perform the heal
|
2020-09-04 20:09:02 -04:00
|
|
|
func monitorLocalDisksAndHeal(ctx context.Context, z *erasureZones, bgSeq *healSequence) {
|
2020-01-10 05:35:06 -05:00
|
|
|
// Perform automatic disk healing when a disk is replaced locally.
|
2019-10-28 13:27:49 -04:00
|
|
|
for {
|
2020-03-22 15:16:36 -04:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
case <-time.After(defaultMonitorNewDiskInterval):
|
2020-09-04 20:09:02 -04:00
|
|
|
waitForLowHTTPReq(int32(globalEndpoints.NEndpoints()), time.Second)
|
2020-04-30 23:23:00 -04:00
|
|
|
|
2020-09-28 22:39:32 -04:00
|
|
|
var erasureSetInZoneDisksToHeal []map[int][]StorageAPI
|
|
|
|
|
2020-09-04 20:09:02 -04:00
|
|
|
healDisks := globalBackgroundHealState.getHealLocalDisks()
|
2020-09-17 00:14:35 -04:00
|
|
|
if len(healDisks) > 0 {
|
2020-08-07 16:22:53 -04:00
|
|
|
// Reformat disks
|
|
|
|
bgSeq.sourceCh <- healSource{bucket: SlashSeparator}
|
2020-01-10 05:35:06 -05:00
|
|
|
|
2020-08-07 16:22:53 -04:00
|
|
|
// Ensure that reformatting disks is finished
|
|
|
|
bgSeq.sourceCh <- healSource{bucket: nopHeal}
|
2020-07-16 10:30:05 -04:00
|
|
|
|
2020-09-17 00:14:35 -04:00
|
|
|
logger.Info(fmt.Sprintf("Found drives to heal %d, proceeding to heal content...",
|
|
|
|
len(healDisks)))
|
|
|
|
|
2020-09-28 22:39:32 -04:00
|
|
|
erasureSetInZoneDisksToHeal = make([]map[int][]StorageAPI, len(z.zones))
|
2020-09-17 00:14:35 -04:00
|
|
|
for i := range z.zones {
|
2020-09-28 22:39:32 -04:00
|
|
|
erasureSetInZoneDisksToHeal[i] = map[int][]StorageAPI{}
|
2020-09-17 00:14:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// heal only if new disks found.
|
|
|
|
for _, endpoint := range healDisks {
|
2020-09-28 22:39:32 -04:00
|
|
|
disk, format, err := connectEndpoint(endpoint)
|
2020-09-04 20:09:02 -04:00
|
|
|
if err != nil {
|
|
|
|
printEndpointError(endpoint, err, true)
|
|
|
|
continue
|
|
|
|
}
|
2020-03-22 15:16:36 -04:00
|
|
|
|
2020-09-28 22:39:32 -04:00
|
|
|
zoneIdx := globalEndpoints.GetLocalZoneIdx(disk.Endpoint())
|
2020-09-04 20:09:02 -04:00
|
|
|
if zoneIdx < 0 {
|
|
|
|
continue
|
2019-11-19 20:42:27 -05:00
|
|
|
}
|
2019-10-28 13:27:49 -04:00
|
|
|
|
2020-09-04 20:09:02 -04:00
|
|
|
// Calculate the set index where the current endpoint belongs
|
|
|
|
setIndex, _, err := findDiskIndex(z.zones[zoneIdx].format, format)
|
|
|
|
if err != nil {
|
|
|
|
printEndpointError(endpoint, err, false)
|
|
|
|
continue
|
2020-08-07 16:22:53 -04:00
|
|
|
}
|
2020-09-04 20:09:02 -04:00
|
|
|
|
2020-09-28 22:39:32 -04:00
|
|
|
erasureSetInZoneDisksToHeal[zoneIdx][setIndex] = append(erasureSetInZoneDisksToHeal[zoneIdx][setIndex], disk)
|
2020-08-07 16:22:53 -04:00
|
|
|
}
|
|
|
|
|
2020-09-28 22:39:32 -04:00
|
|
|
buckets, _ := z.ListBucketsHeal(ctx)
|
|
|
|
for i, setMap := range erasureSetInZoneDisksToHeal {
|
|
|
|
for setIndex, disks := range setMap {
|
|
|
|
for _, disk := range disks {
|
|
|
|
logger.Info("Healing disk '%s' on %s zone", disk, humanize.Ordinal(i+1))
|
2020-09-04 20:09:02 -04:00
|
|
|
|
2020-09-29 12:54:41 -04:00
|
|
|
lbDisks := z.zones[i].sets[setIndex].getLoadBalancedNDisks(z.zones[i].listTolerancePerSet)
|
|
|
|
if err := healErasureSet(ctx, setIndex, buckets, lbDisks); err != nil {
|
2020-09-17 00:14:35 -04:00
|
|
|
logger.LogIf(ctx, err)
|
|
|
|
continue
|
|
|
|
}
|
2020-08-07 16:22:53 -04:00
|
|
|
|
2020-09-28 22:39:32 -04:00
|
|
|
logger.Info("Healing disk '%s' on %s zone complete", disk, humanize.Ordinal(i+1))
|
2020-09-24 12:53:38 -04:00
|
|
|
|
2020-09-28 22:39:32 -04:00
|
|
|
if err := disk.DeleteFile(ctx, pathJoin(minioMetaBucket, bucketMetaPrefix),
|
|
|
|
healingTrackerFilename); err != nil {
|
|
|
|
logger.LogIf(ctx, err)
|
|
|
|
continue
|
|
|
|
}
|
2020-09-24 12:53:38 -04:00
|
|
|
|
2020-09-17 00:14:35 -04:00
|
|
|
// Only upon success pop the healed disk.
|
2020-09-28 22:39:32 -04:00
|
|
|
globalBackgroundHealState.popHealLocalDisks(disk.Endpoint())
|
2020-09-17 00:14:35 -04:00
|
|
|
}
|
2019-11-19 20:42:27 -05:00
|
|
|
}
|
2019-10-28 13:27:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|