mirror of
https://github.com/minio/minio.git
synced 2025-04-04 11:50:36 -04:00
fix: ignore disks that are available but not writable (#13585)
This is to allow replacing drives while some drives while available are not writable.
This commit is contained in:
parent
947c423824
commit
8bb52c9c2a
@ -1213,12 +1213,7 @@ func markRootDisksAsDown(storageDisks []StorageAPI, errs []error) {
|
|||||||
|
|
||||||
// HealFormat - heals missing `format.json` on fresh unformatted disks.
|
// HealFormat - heals missing `format.json` on fresh unformatted disks.
|
||||||
func (s *erasureSets) HealFormat(ctx context.Context, dryRun bool) (res madmin.HealResultItem, err error) {
|
func (s *erasureSets) HealFormat(ctx context.Context, dryRun bool) (res madmin.HealResultItem, err error) {
|
||||||
storageDisks, errs := initStorageDisksWithErrorsWithoutHealthCheck(s.endpoints)
|
storageDisks, _ := initStorageDisksWithErrorsWithoutHealthCheck(s.endpoints)
|
||||||
for i, derr := range errs {
|
|
||||||
if derr != nil && derr != errDiskNotFound {
|
|
||||||
return madmin.HealResultItem{}, fmt.Errorf("Disk %s: %w", s.endpoints[i], derr)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
defer func(storageDisks []StorageAPI) {
|
defer func(storageDisks []StorageAPI) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -1279,8 +1274,14 @@ func (s *erasureSets) HealFormat(ctx context.Context, dryRun bool) (res madmin.H
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Save new formats `format.json` on unformatted disks.
|
// Save new formats `format.json` on unformatted disks.
|
||||||
if err = saveUnformattedFormat(ctx, storageDisks, tmpNewFormats); err != nil {
|
for index, format := range tmpNewFormats {
|
||||||
return madmin.HealResultItem{}, err
|
if storageDisks[index] == nil || format == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if err := saveFormatErasure(storageDisks[index], format, true); err != nil {
|
||||||
|
logger.LogIf(ctx, fmt.Errorf("Disk %s failed to write updated 'format.json': %v", storageDisks[index], err))
|
||||||
|
tmpNewFormats[index] = nil // this disk failed to write new format
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
s.erasureDisksMu.Lock()
|
s.erasureDisksMu.Lock()
|
||||||
|
@ -698,22 +698,6 @@ func initErasureMetaVolumesInLocalDisks(storageDisks []StorageAPI, formats []*fo
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// saveUnformattedFormat - populates `format.json` on unformatted disks.
|
|
||||||
// also adds `.healing.bin` on the disks which are being actively healed.
|
|
||||||
func saveUnformattedFormat(ctx context.Context, storageDisks []StorageAPI, formats []*formatErasureV3) error {
|
|
||||||
for index, format := range formats {
|
|
||||||
if format == nil {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if storageDisks[index] != nil {
|
|
||||||
if err := saveFormatErasure(storageDisks[index], format, true); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// saveFormatErasureAll - populates `format.json` on disks in its order.
|
// saveFormatErasureAll - populates `format.json` on disks in its order.
|
||||||
func saveFormatErasureAll(ctx context.Context, storageDisks []StorageAPI, formats []*formatErasureV3) error {
|
func saveFormatErasureAll(ctx context.Context, storageDisks []StorageAPI, formats []*formatErasureV3) error {
|
||||||
g := errgroup.WithNErrs(len(storageDisks))
|
g := errgroup.WithNErrs(len(storageDisks))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user