mirror of
https://github.com/minio/minio.git
synced 2024-12-25 14:45:54 -05:00
Remove stale entry spurious logging (#7663)
The problem in current code was we were removing an entry from a lock lockerMap without considering the fact that different entry for same resource is a possibility due the nature of locks that can be acquired in parallel before we decide if the lock is considered stale A sequence of events is as follows - Lock("resource") - lockMaintenance(finds a long lived lock in this "resource") - Owner node rebooted which now retruns Expired() as true for this "resource" - Unlock("resource") which succeeded in quorum - Now by this time application retried and acquired a new Lock() on the same "resource" - Now that we have Expired() true from the previous call, we proceed to purge the entry from the local lockMap() local lockMap reports a different entry for the expired UID which results in a spurious log entry. This PR removes this logging as this situation is an expected scenario.
This commit is contained in:
parent
59e847aebe
commit
59e1d94770
@ -17,12 +17,8 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
|
||||||
"errors"
|
|
||||||
"path"
|
"path"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/minio/minio/cmd/logger"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const lockRESTVersion = "v1"
|
const lockRESTVersion = "v1"
|
||||||
@ -53,28 +49,22 @@ type lockResponse struct {
|
|||||||
func (l *localLocker) removeEntryIfExists(nlrip nameLockRequesterInfoPair) {
|
func (l *localLocker) removeEntryIfExists(nlrip nameLockRequesterInfoPair) {
|
||||||
// Check if entry is still in map (could have been removed altogether by 'concurrent' (R)Unlock of last entry)
|
// Check if entry is still in map (could have been removed altogether by 'concurrent' (R)Unlock of last entry)
|
||||||
if lri, ok := l.lockMap[nlrip.name]; ok {
|
if lri, ok := l.lockMap[nlrip.name]; ok {
|
||||||
if !l.removeEntry(nlrip.name, nlrip.lri.UID, &lri) {
|
// Even if the entry exists, it may not be the same entry which was
|
||||||
// Remove failed, in case it is a:
|
// considered as expired, so we simply an attempt to remove it if its
|
||||||
if nlrip.lri.Writer {
|
// not possible there is nothing we need to do.
|
||||||
// Writer: this should never happen as the whole (mapped) entry should have been deleted
|
l.removeEntry(nlrip.name, nlrip.lri.UID, &lri)
|
||||||
reqInfo := (&logger.ReqInfo{}).AppendTags("name", nlrip.name)
|
|
||||||
reqInfo.AppendTags("uid", nlrip.lri.UID)
|
|
||||||
ctx := logger.SetReqInfo(context.Background(), reqInfo)
|
|
||||||
logger.LogIf(ctx, errors.New("Lock maintenance failed to remove entry for write lock (should never happen)"))
|
|
||||||
} // Reader: this can happen if multiple read locks were active and
|
|
||||||
// the one we are looking for has been released concurrently (so it is fine).
|
|
||||||
} // Removal went okay, all is fine.
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// removeEntry either, based on the uid of the lock message, removes a single entry from the
|
// removeEntry based on the uid of the lock message, removes a single entry from the
|
||||||
// lockRequesterInfo array or the whole array from the map (in case of a write lock or last read lock)
|
// lockRequesterInfo array or the whole array from the map (in case of a write lock
|
||||||
|
// or last read lock)
|
||||||
func (l *localLocker) removeEntry(name, uid string, lri *[]lockRequesterInfo) bool {
|
func (l *localLocker) removeEntry(name, uid string, lri *[]lockRequesterInfo) bool {
|
||||||
// Find correct entry to remove based on uid.
|
// Find correct entry to remove based on uid.
|
||||||
for index, entry := range *lri {
|
for index, entry := range *lri {
|
||||||
if entry.UID == uid {
|
if entry.UID == uid {
|
||||||
if len(*lri) == 1 {
|
if len(*lri) == 1 {
|
||||||
// Remove the (last) lock.
|
// Remove the write lock.
|
||||||
delete(l.lockMap, name)
|
delete(l.lockMap, name)
|
||||||
} else {
|
} else {
|
||||||
// Remove the appropriate read lock.
|
// Remove the appropriate read lock.
|
||||||
@ -84,6 +74,7 @@ func (l *localLocker) removeEntry(name, uid string, lri *[]lockRequesterInfo) bo
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// None found return false, perhaps entry removed in previous run.
|
// None found return false, perhaps entry removed in previous run.
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
@ -286,17 +286,17 @@ func (l *lockRESTServer) lockMaintenance(interval time.Duration) {
|
|||||||
Resource: nlrip.name,
|
Resource: nlrip.name,
|
||||||
})
|
})
|
||||||
|
|
||||||
// Close the connection regardless of the call response.
|
// For successful response, verify if lock was indeed active or stale.
|
||||||
c.Close()
|
|
||||||
|
|
||||||
// For successful response, verify if lock is indeed active or stale.
|
|
||||||
if expired {
|
if expired {
|
||||||
// The lock is no longer active at server that originated the lock
|
// The lock is no longer active at server that originated
|
||||||
// So remove the lock from the map.
|
// the lock, attempt to remove the lock.
|
||||||
l.ll.mutex.Lock()
|
l.ll.mutex.Lock()
|
||||||
l.ll.removeEntryIfExists(nlrip) // Purge the stale entry if it exists.
|
l.ll.removeEntryIfExists(nlrip) // Purge the stale entry if it exists.
|
||||||
l.ll.mutex.Unlock()
|
l.ll.mutex.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Close the connection regardless of the call response.
|
||||||
|
c.Close()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user