I am confused about the working of LockModeTypes in JPA:
LockModeType.Optimistic
I would first differentiate between optimistic and pessimistic locks, because they are different in their underlying mechanism.
Optimistic locking is fully controlled by JPA and only requires additional version column in DB tables. It is completely independent of underlying DB engine used to store relational data.
On the other hand, pessimistic locking uses locking mechanism provided by underlying database to lock existing records in tables. JPA needs to know how to trigger these locks and some databases do not support them or only partially.
Now to the list of lock types:
LockModeType.Optimistic
Example:
LockModeType lockMode = resolveLockMode();
A a = em.find(A.class, 1, lockMode);
LockModeType.OPTIMISTIC_FORCE_INCREMENT
LockModeType.PESSIMISTIC_READ
LockModeType.PESSIMISTIC_WRITE
, but different in one thing: until write lock is in place on the same entity by some transaction, it should not block reading the entity. It also allows other transactions to lock using LockModeType.PESSIMISTIC_READ
. The differences between WRITE and READ locks are well explained here (ObjectDB) and here (OpenJPA). If an entity is already locked by another transaction, any attempt to lock it will throw an exception. This behavior can be modified to waiting for some time for the lock to be released before throwing an exception and roll back the transaction. In order to do that, specify the javax.persistence.lock.timeout
hint with the number of milliseconds to wait before throwing the exception. There are multiple ways to do this on multiple levels, as described in the Java EE tutorial.LockModeType.PESSIMISTIC_WRITE
LockModeType.PESSIMISTIC_READ
. When WRITE
lock is in place, JPA with the help of the database will prevent any other transaction to read the entity, not only to write as with READ
lock.READ
lock. SELECT...FOR UPDATE
is really rather a WRITE
lock. It may be a bug in hibernate or just a decision that, instead of implementing custom "softer" READ
lock, the "harder" WRITE
lock is used instead. This mostly does not break consistency, but does not hold all rules with READ
locks. You could run some simple tests with READ
locks and long running transactions to find out if more transactions are able to acquire READ
locks on the same entity. This should be possible, whereas not with WRITE
locks.LockModeType.PESSIMISTIC_FORCE_INCREMENT
PESSIMISTIC
and OPTIMISTIC
mechanisms. Using plain PESSIMISTIC_WRITE
would fail in following scenario:
LockModeType.PESSIMISTIC_FORCE_INCREMENT
will force transaction B to update version number and causing transaction A to fail with OptimisticLockException
, even though B was using pessimistic locking.LockModeType.NONE