-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IGNITE-24267 Heap lock manager behave incorrectly in case of overflow #5096
Conversation
aadd285
to
103b22b
Compare
modules/table/src/integrationTest/java/org/apache/ignite/distributed/ItLockTableTest.java
Show resolved
Hide resolved
/** Raw slots size. */ | ||
private final int rawSlotsMaxSize; | ||
/** An unused state to avoid concurrent allocation. */ | ||
private LockState removedLockState; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why it's not static ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because it uses a deadlock prevention policy configuration, which is available only on start.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't get it.
https://issues.apache.org/jira/browse/IGNITE-24267