I'm trying to debug a concurrency issue in an application using JBoss 6.0.0-Final, with the Hibernate JPA persistence layer over an SQL Server 2005 data source. I think there must be something missing in my understanding of how pessimistic locking works and hopefully someone will be able to help me with this.
We've got two entities, let's call them Person and Address:
@Entity
public class Person {
@Id @GeneratedValue(strategy=GenerationType.AUTO)
private long id;
@Column(nullable=false)
private String name;
@ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(nullable=true)
private Address address;
public Address getAddress() { return address; }
public String toString() {
if (address==null)
return name + " (no fixed abode)";
else
return name + " living at " + address;
}
}
@Entity
public class Address {
@Id @GeneratedValue(strategy=GenerationType.AUTO)
private long id;
@Column(nullable=false)
private String streetAddress;
@Column(nullable=false)
private int num_occupants;
public void incrementResidentsCount() { num_occupants++; }
public void decrementResidentsCount() { num_occupants--; }
public String toString() {
return streetAddress + " ("+num_occupants+" residents)";
}
}
We have a method on a session EJB to return a description of a person, and we want this information to be consistant (ie no "Joe Bloggs living at 39 Acacia Avenue (0 residents)") & we're trying to use a pessimistic read-lock to enforce this :
public String describePerson(long person_id) throws PersonNotFoundException {
transaction.begin();
try {
Person p = entity_manager.find(Person.class,person_id,LockModeType.PESSIMISTIC_READ);
if (p==null) throw new PersonNotFoundException(person_id);
return p.toString();
} finally {
transaction.commit();
}
}
(exception-handling is snipped for clarity)
We have a method on a different session bean that deletes a person & updates the residents-count at the address; again using a pessimistic write-lock to try to ensure consistency for our describePerson method:
public void deletePerson(long person_id) {
transaction.begin();
Person p = entity_manager.find(Person.class,person_id,LockModeType.PESSIMISTIC_WRITE);
p.getAddress().decrementResidentsCount();
entity_manager.remove(p);
transaction.commit();
}
However, we find that when deletePerson and describePerson are being called at roughly the same time, with the same person_id, the describePerson call is failing with a deadlock:
2011-11-18 11:16:51,366 WARN [org.hibernate.util.JDBCExceptionReporter] (WorkerThread#1[127.0.0.1:48867]) SQL Error: 1205, SQLState: 40001
2011-11-18 11:16:51,366 ERROR [org.hibernate.util.JDBCExceptionReporter] (WorkerThread#1[127.0.0.1:48867]) Transaction (Process ID 54) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction.
2011-11-18 11:16:51,369 INFO [org.hibernate.event.def.DefaultLoadEventListener] (WorkerThread#1[127.0.0.1:48867]) Error performing load command: org.hibernate.exception.LockAcquisitionException: could not load an entity: [com.example.Address#1]
After putting some extra logging in the code, it seems what happens is this:
- deletePerson(1) claims the lock on Person#1
- deletePerson(1) calls commit()
- describePerson(1) claims the lock on Person#1
- describePerson(1) deadlocks trying to load/lock Address#1 (which is presumably write-locked as part of committing the transaction in deletePerson(1))
- describePerson(1) throws LockAcquisitionException because of the deadlock.
- deletePerson(1) returns from commit()
I had thought the fact both describePerson and deletePerson held a pessimistic lock on Person#1 would mean describePerson would wait for deletePerson to completely commit before claiming the lock. However the only way I can explain the flow of events is if deletePerson(1) surrenders the lock as soon as commit() is called, before the transaction is committed to the database, and then tries to reclaim the required locks later (by which time describePerson(1) already has one of them).
Is this a credible explanation? Or am I missing something fundamental here? And if I'm correct, can anyone advise me the best way to ensure that describePerson would always return a consistent result?