You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the below source code in acquireLock method (source code link)
It is noticed that the else condition notices that the UUID changed in recordVersionNumber but it never resets the waiting period in variable millisecondsToWait.
This could have negative impact since the acquireLock is now waiting on something that it knows it will never acquire (unless ofcourse isReleased in DDB is set to true). So I think a fix should be applied here to extend the duration the acquire lock time has to wait by increasing the millisecondsToWait to allow the method to wait for the actual leaseDuration again by resetting it.
p.s. I work at Amazon, you can contact me on my username basabbas to discuss.
if (lockTryingToBeAcquired.getRecordVersionNumber().equals(existingLock.get().getRecordVersionNumber())) {
/* If the version numbers match, then we can acquire the lock, assuming it has already expired */
if (lockTryingToBeAcquired.isExpired()) {
return upsertAndMonitorExpiredLock(options, key, sortKey, deleteLockOnRelease, sessionMonitor, existingLock, newLockData, item,
recordVersionNumber);
}
} else {
/*
* If the version number changed since we last queried the lock, then we need to update
* lockTryingToBeAcquired as the lock has been refreshed since we last checked
*/
lockTryingToBeAcquired = existingLock.get();
}
The text was updated successfully, but these errors were encountered:
In the below source code in
acquireLock
method (source code link)It is noticed that the else condition notices that the UUID changed in
recordVersionNumber
but it never resets the waiting period in variable millisecondsToWait.This could have negative impact since the acquireLock is now waiting on something that it knows it will never acquire (unless ofcourse isReleased in DDB is set to true). So I think a fix should be applied here to extend the duration the acquire lock time has to wait by increasing the
millisecondsToWait
to allow the method to wait for the actual leaseDuration again by resetting it.p.s. I work at Amazon, you can contact me on my username
basabbas
to discuss.The text was updated successfully, but these errors were encountered: