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

I need a database that can store a massive amount of simple structured data and make it available relatively fast.

The use-case is quite simple, so I will explain it in a few words to make things clearer:

A "large" number of GPS devices will constantly send data to a java server for storage. The data is stored and accessed with the device id and the current date as key(s). The server offers the data to a relatively "small" number of clients, but they need the data very fast - for live tracking and some calculations. The relation between "small" and "large" is something around 1 to 100.

What kind of database would you recommend for this application?

With no real referential integrity needed and no data structure to speak of, RDBMS seems not the right thing for this - but I'm kind of lost in the NoSQL-World and a few advices from first hand experience would be nice.

Other requirements are:

  • Free to use and OSS
  • Some kind of Java API
  • Strong community
  • And of course reliable - a few invalid data entries aren't a big problem, but the database must always be in a usuable state
share|improve this question
Do you want distribution? If you want distribution of data, I think you are really taking a look at Cassandra (focused on availability and partition tolerance), HBase (consistency and partition tolerance), Voldemort (availability, partition tolerance), Riak (consistency, availability). They all have Java interfaces (the first 3 are written in Java as well). – birryree Oct 23 '11 at 17:49
Do you really need to save the data? If not, you might consider using a data stream management system. I don't know if there is any that fits your requirements, but I thought it was worth mentioning it. – hage Oct 23 '11 at 17:54
You have conflicting statements in your question. You start off asking about storing "simple structured data" then state there is "no data structure to speak of"... Further, it really seems that a GPS device is going to send structured data. Can you give a few examples of what you are trying to store and how it really needs to be queried? – Chris Lively Oct 23 '11 at 20:11
@birryee Thanks for the suggestions, distribution of the database will definetly become important later! </br> – Frank Oct 24 '11 at 9:22
@hage: The data has to be stored for at least a month, but I think I will chache the data for the live tracking. – Frank Oct 24 '11 at 9:28
show 1 more comment

closed as not constructive by Michael Petrotta, Chris Lively, Bart Kiers, PaĆ­lo Ebermann, Graviton Oct 25 '11 at 2:31

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Most of the NoSQL (companies, fans), if not all, will tell you that their solution is the best. So whoever tells you which solution fits best (including me) is just making his opinion heard => there is no absolute truth in any answers to this question.

Having that out of the way. I would definitely recommend either Riak or CouchDB, and here is why:

  • And of course reliable - a few invalid data entries aren't a big problem, but the database must always be in a usable state

Reliability comes in many shapes and forms ( e.g. number of 9s uptime, reliable reads, [eventually] consistent data, etc.. ). Currently there is only one platform, that was written with reliability in mind and successfully tested for 30 years => Erlang OTP.

Riak and CouchDB are based on this platform, and rely on it for fault tolerance, uptime, reliability, etc..

  • Strong community

Both Riak and CouchDB have strong excellent communities. What I really love about Couchers and Riaksters is their passion and human approach to things and desire to help.

  • Simple Structure / Massive Writes

Riak is a simple {key,value} store. With an additional feature of secondary indices. As to massive writes, its backend data store is pluggable, you can even use Google's own LevelDB, which is incredibly fast and "massive".

  • Some kind of Java API

Riak Java Client, Couch Java Clients

  • Free to use and OSS

Both are FREE and OSS, and.. awesome!

share|improve this answer
CouchDB is definitely on my list. I never heard about Riak, but it sounds interesting and I will look into it. Do you have any first hands experiences with the two databases? For what kind of application do you use it? – Frank Oct 24 '11 at 9:35
Do have an experience with these two. This would summarize my decision making for when to use them. And here is the official usage data for both: Who is Using Riak, CouchDB In The Wild – tolitius Oct 24 '11 at 14:04

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