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

Anyone ever tried to use Derby or HSQLDB in a production environment? Any good, bad or ugly experiences?

share|improve this question

4 Answers

There is a comparison of embedded databases on the H2 website (H2 is another embedded Java DB that is very fast, BTW):

This should give you some facts.

share|improve this answer

I've been using Derby 24x7 in production for over 4 years. It's a great database!

share|improve this answer
What sort of traffic do you get? I'm interested in running Derby in production as well and would like to know if you could spare any tips. – Luke Dec 20 '09 at 10:42
It's not an enormously high-volume application. It's an internal build-and-test management system which monitors and schedules activity in an automated server farm. It probably processes about 5 transactions a second, around the clock, on average. The two most important tips, in my opinion, are: (1) pay attention to your physical schema (and check query plans to see that the schema is indeed working), and (2) give Derby enough memory so that it can cache database pages successfully (again you can see information about this in the query plan output) – Bryan Pendleton Dec 23 '09 at 15:44
@BryanPendleton, I like your answer, and glad to hear Derby is working well for you. When I developed my Java Server Faces application Summer 2011 after reviewing Java EE 6 tutorial, I developed an Derby database with over 88 tables in it (derived from a 6-table unnormalized dBase IV 4 database), and Apache Derby has been running really really well for me even though I don't have high volume as well. I don't know why people say it's an in-memory database; I just reviewed the Derby (Java DB) documentation, and they said that in-memory is an option as well as filesystem database. Loving it! – Howard Dec 15 '12 at 20:12

See this post for HSQLDB Hibernate on hypersonic in production?

share|improve this answer

I used HSQLDB in production for reconciliation application. It scaled well till half a million records, DB size was nearly 2 GB.

Good
1) You can tune memory. Initially we were running with 2GB of heap and later increased to 4GB of memory. You can tune memory for CPU quite well. We had different configurations. 15 minutes of execution with 512MB and 2 minutes execution with 4GB of RAM.

2) Fall back to disk based. Later we switched to file based table, and we reduced our heap from 4GB to 512MB. But program doesn't require any change other than memory related configuration.

Nice to have. 1) Shutdown took extra time on windows when memory allotted was low. 2) There is little bit of black-magic with index. Once we added index on more than 6 columns on half a million records. Process was quite slow, we removed additional index. It didn't hurt us.

Overall I strongly recommend HSQLDB when number of records are less than few million, and DB size less than 10GB. It may work even for higher need, but I don't think they could be straight forward. May be additional document may help.

BTW, Fredt was very swift for my questions in mailing list.

share|improve this answer

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.