Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.timeout can be used to set connection timeouts on the C3P0 connection pool
  • getSession().getTransaction().setTimeout(...) can be used to timeout a transaction
  • getSession().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!

share|improve this question
are you useing c3p0 or dbcp? – Nook Aug 15 '11 at 20:47
The setup is using c3p0 – Brent Nash Aug 15 '11 at 20:50

3 Answers

up vote 2 down vote accepted

I've looked for this same kind of thing before, but using Oracle on the back end instead of MySQL. As far as I've ever seen, there just isn't any mechanism for this in any library, including the JDBC drivers. Even the timeouts you listed, like Transaction.setTimeout(), don't do what you'd expect. They just wait for a database statement to finish executing, and then throw a TimeoutException if it exceeded the given timeout. That's pretty useless if you have a query that's just hanging indefinitely. The only potential out-of-the-box solution I've ever found is to set a query timeout on the database itself, which on Oracle is a global setting and will affect all queries against the database. That's not terribly useful. As far as I can tell, to do what you're looking for, you'd have to start a separate thread to time queries as they're made and somehow interrupt them when they hit the timeout. I haven't found any support at all for doing this from either Oracle or any db-related libraries/frameworks.

share|improve this answer
Yuck. It seems like this should be such a simple problem. Maybe there's something buried in the MySQL settings then. I'll retag & retitle the question to see if we can pull in some MySQL brains. Thanks! – Brent Nash Aug 16 '11 at 16:42

If the issue is one of front-end responsiveness, you could consider running the DB hits asynchronously in whatever way suits you best. Then you aren't beholden to the backend's timeliness. You could use a JMS bridge, or if you're in Spring you can use @Async, or anything else that's asynch.

If you were running an EJB, you can then set a transaction timeout on the container, or if you are using BMT, on the transaction itself. This setting would terminate the tx after the timeout.

Alternatively, you could also just move your DB locally.

share|improve this answer
  • hibernate.c3p0.timeout ex:300 You specify the timeout period (in this case, 300 seconds) after which an idle connection is removed from the pool). hibernate.c3p0.idle_test_periods This is the iddle time in seconds before a connection is automatically validated.
share|improve this answer
How does setting a timeout on the connection pool help me when a non-idle connection locks up during a query? – Brent Nash Aug 15 '11 at 21:11
@sgusc: It doesn't. That only affects how long a connection will be kept in the pool. – Ryan Stewart Aug 16 '11 at 0:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.