Berkeley DB (JE) licensing may be a deal killer. I have a Java application going to a small set of customers but as it is a desktop application, my price cannot support individual instance licensing.

Is there a recommended Java alternative to Berkeley DB? Commercial or otherwise (good key-value store implementations can get non-trivial, I prefer to defer maintenance elsewhere). I need more than just a hash store as I'll need to iterate through subsequent key subsets and basic hash stores would O(m*n) that search and I expect the store to be ~50-60GiB on a desktop machine. Added benefit anyone that you can recommend that keeps its backing store in a single file?

link|improve this question

72% accept rate
1  
Any reason it has to be a single, 50-60GiB file? – corsiKa Feb 17 '11 at 17:50
I know that sounds strange, but it has to do with desktop IT management and a simple maximum disk size enforcement per node. 1-3 files is fine, but keeping a whole directory tree or some other structure becomes management overhead for laptop rebuilds, &c. – Xepoch Feb 17 '11 at 17:53
1  
Berkeley DB JE is open source. You don't have to pay anybody for a licence. oracle.com/technetwork/database/berkeleydb/downloads/… – JeremyP Feb 17 '11 at 17:56
2  
The way I understand it is Berkeley is dual-licensed and this is a commercial product. oracle.com/technetwork/database/berkeleydb/downloads/… – Xepoch Feb 17 '11 at 18:04
dual licensed means, that if you are purchasing it from oracle (with support etc.) you have to pay something. – Thomas Jungblut Feb 17 '11 at 18:42
show 3 more comments
feedback

5 Answers

I think SQLite is exactly what you want: Free (Public Domain), Single File Database, Zero-Configuration, Small Footprint, Fast, cross-platform, etc.. Here is a list of wrappers, there is a section for Java. Take a look to sqlite4java and read more on Java + SQLite here.

link|improve this answer
Love it, but sqllite isn't 100% Java is it? – Xepoch Feb 17 '11 at 18:07
It is C, but cross-platform and has several java wrappers. – BlueRaja - Danny Pflughoeft Feb 17 '11 at 18:09
@Xepoch, no it's not 100% Java, like BlueRaja said, but with the list of java wrappers available, this should not be a problem. – JPelletier Feb 17 '11 at 18:19
feedback

It won't be a single file, but if you want embedded database, I suggest Java DB (a rebranded version of Apache Derby, which I used in a previous job with wonderful results).

Plus, both are completely free.

Edit: reading the other comments, another note: Java DB/Derby is 100% Java.

link|improve this answer
My fear is this: when desktops/laptops are re-imaged/replaced (which I guess is about on average at ~10 months, oddly enough) I would likely need to write a migration to pull data from Java DB and re-insert. Can I literally just take the Java DB backing files as a copy, can I do this as the JDK versions change? – Xepoch Feb 17 '11 at 18:02
@Xepoch I did this on my machine as a local backup and as a test, and it was simple copy and replace, and the DB was up and running. About JDK, I never tested it, but I suppose you won't have problems, as backwards compatibility is always kept. – mdrg Feb 17 '11 at 19:32
I have certainly thought about this approach. I would hope that the binary data is compatible upwardly with JavaDB. I should start another question on JavaDB in Java7. – Xepoch Feb 17 '11 at 21:00
feedback

You should definitely try JDBM2, it does what you want:

  • Disk backed HashMaps/TreeMaps thus you can iterate through keys.
  • Apache 2 license

In addition:

  • Fast, very small footprint
  • Transactional
  • Standalone jar have only 145 KB.
  • Simple usage
  • Scales well up to 1e9 records
  • Uses Java serialization, no ORM mapping
link|improve this answer
feedback

--- Edited after seeing the size of the file ---

50 to 60 GiB files! It seems that you would have to know that your DB engine didn't load all of that in memory at once, and was very efficient in handling / scavenging off-loaded data backing blocks.

I don't know if Cloudscape is up to the task, and I wouldn't be surprised if it wasn't.

--- original post follows ---

Cloudscape often fits the bill. It's a bit more than Berkeley DB, but it gained enough traction to be distributed even with some JDK offerings.

link|improve this answer
I've thought about this, but I need to be able to have a desktop support group be able to move the store/database during laptop changes. Otherwise, we're migrating the desktop data every time. – Xepoch Feb 17 '11 at 17:54
as per the edit, that's correct, I don't need a cache necessarily as most data will be streamed from the file and hit % would be low. – Xepoch Feb 17 '11 at 17:55
feedback

Consider ehcache. I show here a class for wrapping it as a java.util.Map. You can easily store Lists or other data structures as your values, avoiding the O(m*n) issue you are concerned with. ehcache is Apache 2.0 license, with an commercial enterprise version available by Terracotta. The open source version will allow you to spill your cache to disk, and if you choose not to evict cache entries it is effectively a persistent key-value store.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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