Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hibernate second level cache and ON DELETE CASCADE in database schema

Our Java application has about 100 classes mapped to a database (SQL Server or MySQL). We are using Hibernate as our ORM (with XML mapping files).

We specify FOREIGN KEY constraints in our database schema. Most of our FOREIGN KEY constraints also specify ON DELETE CASCADE.

We've recently started enabling Hibernate 2nd level caching (for popular entities and collections) to mitigate some performance problems.

Performance has improved since we enabled the 2nd level cache. However we've also started encountering ObjectNotFoundExceptions.

It seems the ObjectNotFoundExceptions are occuring because the database is deleting table rows underneath Hibernate. For example, when we delete a Parent with Hibernate, the database schema will ON DELETE CASCADE to any Child entities. This obviously happens without Hibernates knowledge, so it doesn't get a chance to update the 2nd level cache (and remove any deleted Child entities).

We believe the solution to this problem is to remove ON DELETE CASCADE from our database schema (but keep the FOREIGN KEYs). Instead, we need to configure Hibernate to delete Child dependencies with normal delete SQL which will also make Hibernate update the 2nd level cache. Some limited testing has shown that this approach seems to work.

I wanted to get some community feedback on this. Are there alternative (better?) solutions to our problem? How do others handle this situation? In general, what are the tradeoffs that should be considered when using ON DELETE CASCADE in a database schema with Hibernate?

Thanks.

like image 931
Bat Fastard Avatar asked Jun 21 '10 17:06

Bat Fastard


People also ask

Where is second level cache stored in Hibernate?

By default, all query cache results are stored in the org. hibernate. cache. internal.

What is L1 and L2 cache in Hibernate?

L1 Cache is the cache that exists per Hibernate session, and this cache is not shared among threads. This cache makes use of Hibernate's own caching. L2 Cache is a cache that survives beyond a Hibernate session, and can be shared among threads.

What is the difference between Level 1 L1 and Level 2 L2 caching in Hibernate?

The main difference between the first level and second level cache in Hibernate is that the first level is maintained at the Session level and accessible only to the Session, while the second level cache is maintained at the SessionFactory level and available to all Sessions.


2 Answers

If you are always going to delete through your program, you want to take the constraint off the database and tell the hibernate object to ON DELETE CASCADE to take care of the related guys.

On the other hand, if you are going to delete objects sometimes in your java app, and sometimes at your database level, you will end up with weird hanging data. In this case you may need to look into a more complicated approach.. You weren't clear if this was the case, so not going to go into more detail here.

like image 133
bwawok Avatar answered Oct 05 '22 02:10

bwawok


If you are using ON DELETE CASCADE in your database you need to tell hibernate, like this:

@OnDelete(action = OnDeleteAction.CASCADE)

this is different from

@OneToMany(cascade = CascadeType.ALL, orphanRemoval = true)

The latter is telling hibenrate something about the in-memory relationship. the first one optimizes delete SQL Statements on the database level. Hibernate needs to know that the DB is taking care of delete childs.

Take a look at this site for a good explanation of this mechanism:

http://eddii.wordpress.com/2006/11/16/hibernate-on-deletecascade-performance/

and the comment from the developer of this feature:

http://www.mail-archive.com/[email protected]/msg03801.html

like image 36
Janning Avatar answered Oct 05 '22 03:10

Janning