mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
Add logs when quorum is lost during readiness checks (#9839)
This commit is contained in:
parent
f9aa239973
commit
1a956424e0
@ -1867,7 +1867,7 @@ func (z *erasureZones) getZoneAndSet(id string) (int, int, error) {
|
||||
}
|
||||
}
|
||||
}
|
||||
return 0, 0, errDiskNotFound
|
||||
return 0, 0, fmt.Errorf("ID(%s) %w", errDiskNotFound)
|
||||
}
|
||||
|
||||
// IsReady - Returns true, when all the erasure sets are writable.
|
||||
@ -1884,6 +1884,7 @@ func (z *erasureZones) IsReady(ctx context.Context) bool {
|
||||
for _, id := range diskIDs {
|
||||
zoneIdx, setIdx, err := z.getZoneAndSet(id)
|
||||
if err != nil {
|
||||
logger.LogIf(ctx, err)
|
||||
continue
|
||||
}
|
||||
erasureSetUpCount[zoneIdx][setIdx]++
|
||||
@ -1902,6 +1903,8 @@ func (z *erasureZones) IsReady(ctx context.Context) bool {
|
||||
}
|
||||
for setIdx := range erasureSetUpCount[zoneIdx] {
|
||||
if erasureSetUpCount[zoneIdx][setIdx] < writeQuorum {
|
||||
logger.LogIf(ctx, fmt.Errorf("Write quorum lost on zone: %d, set: %d, expected write quorum: %d",
|
||||
zoneIdx, setIdx, writeQuorum))
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user