We ran into a problem in a large, Java, Hibernate-based system last week. Our backend MySQL database (hosted on Amazon RDS) went unresponsive for 5-10 minutes (it would still accept connections, but due to hardware issues, its write throughput dropped to zero). This piece of code:
getSession().save(entity); //session is an instance of org.hibernate.Session
Ended up hanging for about 8.5 minutes. So clearly there's a need for some sort of timeout condition on this statement to make it fail in the case of my particular scenario. I can't guarantee that I won't see a similar hardware issue in the future.
I should mention that I'm still fairly new to Hibernate, so it's possible that I just don't understand some things like the association between using save() versus using Criteria, Transactions, etc. So I've found the following:
hibernate.c3p0.timeoutcan be used to set connection timeouts on the C3P0 connection poolgetSession().getTransaction().setTimeout(...)can be used to timeout a transactiongetSession().createQuery(...).setTimeout(...)can be used to timeout a query- I've seen the JPA 2
javax.persistence.query.timeout, but I'm not entirely sure it's what I want (I also don't think my Hibernate version is new enough)
None of these seems like exactly what I want to do (except maybe the JPA 2 one). This seems like it should be really simple. Is there something I'm missing here?
Thanks!