mirror of
https://github.com/minio/minio.git
synced 2025-04-04 03:40:30 -04:00
xl/zones: return errNoHealRequired when no heal is required (#8821)
Zone abstraction of object layer was returning `nil` incorrectly under situations where disk healing is not required. Returning `nil` is considered as healing successful, which leads to unexpected ReloadFormat() peer notification calls during startup. This PR fixes this behavior properly for zones.
This commit is contained in:
parent
169e8742fc
commit
64fde1ab95
@ -75,7 +75,7 @@ function __init__()
|
|||||||
}
|
}
|
||||||
|
|
||||||
function perform_test_1() {
|
function perform_test_1() {
|
||||||
minio_pids=( $(start_minio_3_node 30) )
|
minio_pids=( $(start_minio_3_node 60) )
|
||||||
for pid in "${minio_pids[@]}"; do
|
for pid in "${minio_pids[@]}"; do
|
||||||
kill "$pid"
|
kill "$pid"
|
||||||
done
|
done
|
||||||
@ -111,7 +111,7 @@ function perform_test_1() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function perform_test_2() {
|
function perform_test_2() {
|
||||||
minio_pids=( $(start_minio_3_node 30) )
|
minio_pids=( $(start_minio_3_node 60) )
|
||||||
for pid in "${minio_pids[@]}"; do
|
for pid in "${minio_pids[@]}"; do
|
||||||
kill "$pid"
|
kill "$pid"
|
||||||
done
|
done
|
||||||
@ -148,7 +148,7 @@ function perform_test_2() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function perform_test_3() {
|
function perform_test_3() {
|
||||||
minio_pids=( $(start_minio_3_node 30) )
|
minio_pids=( $(start_minio_3_node 60) )
|
||||||
for pid in "${minio_pids[@]}"; do
|
for pid in "${minio_pids[@]}"; do
|
||||||
kill "$pid"
|
kill "$pid"
|
||||||
done
|
done
|
||||||
|
@ -762,7 +762,6 @@ func initFormatXL(ctx context.Context, storageDisks []StorageAPI, setCount, driv
|
|||||||
formats := make([]*formatXLV3, len(storageDisks))
|
formats := make([]*formatXLV3, len(storageDisks))
|
||||||
wantAtMost := ecDrivesNoConfig(drivesPerSet)
|
wantAtMost := ecDrivesNoConfig(drivesPerSet)
|
||||||
|
|
||||||
logger.Info("Formatting zone, %v set(s), %v drives per set.", setCount, drivesPerSet)
|
|
||||||
for i := 0; i < setCount; i++ {
|
for i := 0; i < setCount; i++ {
|
||||||
hostCount := make(map[string]int, drivesPerSet)
|
hostCount := make(map[string]int, drivesPerSet)
|
||||||
for j := 0; j < drivesPerSet; j++ {
|
for j := 0; j < drivesPerSet; j++ {
|
||||||
|
@ -60,8 +60,11 @@ func newXLZones(endpointZones EndpointZones) (ObjectLayer, error) {
|
|||||||
formats = make([]*formatXLV3, len(endpointZones))
|
formats = make([]*formatXLV3, len(endpointZones))
|
||||||
z = &xlZones{zones: make([]*xlSets, len(endpointZones))}
|
z = &xlZones{zones: make([]*xlSets, len(endpointZones))}
|
||||||
)
|
)
|
||||||
|
local := endpointZones.FirstLocal()
|
||||||
for i, ep := range endpointZones {
|
for i, ep := range endpointZones {
|
||||||
formats[i], err = waitForFormatXL(endpointZones.FirstLocal(), ep.Endpoints,
|
logger.Info("Formatting %v zone, %v set(s), %v drives per set.",
|
||||||
|
i+1, ep.SetCount, ep.DrivesPerSet)
|
||||||
|
formats[i], err = waitForFormatXL(local, ep.Endpoints,
|
||||||
ep.SetCount, ep.DrivesPerSet, deploymentID)
|
ep.SetCount, ep.DrivesPerSet, deploymentID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@ -69,8 +72,6 @@ func newXLZones(endpointZones EndpointZones) (ObjectLayer, error) {
|
|||||||
if deploymentID == "" {
|
if deploymentID == "" {
|
||||||
deploymentID = formats[i].ID
|
deploymentID = formats[i].ID
|
||||||
}
|
}
|
||||||
}
|
|
||||||
for i, ep := range endpointZones {
|
|
||||||
z.zones[i], err = newXLSets(ep.Endpoints, formats[i], ep.SetCount, ep.DrivesPerSet)
|
z.zones[i], err = newXLSets(ep.Endpoints, formats[i], ep.SetCount, ep.DrivesPerSet)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@ -1261,17 +1262,28 @@ func (z *xlZones) HealFormat(ctx context.Context, dryRun bool) (madmin.HealResul
|
|||||||
Type: madmin.HealItemMetadata,
|
Type: madmin.HealItemMetadata,
|
||||||
Detail: "disk-format",
|
Detail: "disk-format",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var countNoHeal int
|
||||||
for _, zone := range z.zones {
|
for _, zone := range z.zones {
|
||||||
result, err := zone.HealFormat(ctx, dryRun)
|
result, err := zone.HealFormat(ctx, dryRun)
|
||||||
if err != nil && err != errNoHealRequired {
|
if err != nil && err != errNoHealRequired {
|
||||||
logger.LogIf(ctx, err)
|
logger.LogIf(ctx, err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
// Count errNoHealRequired across all zones,
|
||||||
|
// to return appropriate error to the caller
|
||||||
|
if err == errNoHealRequired {
|
||||||
|
countNoHeal++
|
||||||
|
}
|
||||||
r.DiskCount += result.DiskCount
|
r.DiskCount += result.DiskCount
|
||||||
r.SetCount += result.SetCount
|
r.SetCount += result.SetCount
|
||||||
r.Before.Drives = append(r.Before.Drives, result.Before.Drives...)
|
r.Before.Drives = append(r.Before.Drives, result.Before.Drives...)
|
||||||
r.After.Drives = append(r.After.Drives, result.After.Drives...)
|
r.After.Drives = append(r.After.Drives, result.After.Drives...)
|
||||||
}
|
}
|
||||||
|
// No heal returned by all zones, return errNoHealRequired
|
||||||
|
if countNoHeal == len(z.zones) {
|
||||||
|
return r, errNoHealRequired
|
||||||
|
}
|
||||||
return r, nil
|
return r, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
<target name="download-ivy" unless="offline">
|
<target name="download-ivy" unless="offline">
|
||||||
<mkdir dir="${ivy.jar.dir}"/>
|
<mkdir dir="${ivy.jar.dir}"/>
|
||||||
<get src="https://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
|
<get src="https://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
|
||||||
dest="${ivy.jar.file}" usetimestamp="true"/>
|
dest="${ivy.jar.file}" usetimestamp="true"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user