We use KDB for time series data but it is expensive. He's anyone checked this project out? http://www.monetdb.org/Home
Cassandra vs MongoDB For Time Series Data
21–30 of 82 posts
Re: Cassandra vs MongoDB For Time Series Data
#22One thing I always find interesting about these kinds of problems is that most DBs don't describe how they're implemented. It's easy to use the wrong tool, and then once you learn how e.g. Mongo is implemented, it's obvious, "oh, that's why things are slow". I'd love to see http://eagain.net/articles/git-for-computer-scientists/ , but for every DB technology.
A pattern I've seen on a lot of the negative Mongo articles has been people using it for things they probably shouldn't. I've yet to use it for any load, and am struggling to triangulate from all the articles I read on whether it does/doesn't scale efficiently. All the issues I have hit so far have been self-inflicted, it is still one of the best new technologies I've used in years - but is has taken a while to stop…
It doesn't. Three words: "global write lock". Writes block reads, reads block writes. Implications: if you run a query in production that doesn't hit an index, all traffic stops. The notablescan setting is a very, very good idea. This also means all queries must have an index, so Mongo ends up with more indexes than say, postgres would.
It's impossible to configure a clustered mongo environment to not lose data: http://aphyr.com/posts/284-call-me-maybe-mongodb
Sharding configuration is baroque, and limited.
Re: Cassandra vs MongoDB For Time Series Data
#23One thing I always find interesting about these kinds of problems is that most DBs don't describe how they're implemented. It's easy to use the wrong tool, and then once you learn how e.g. Mongo is implemented, it's obvious, "oh, that's why things are slow". I'd love to see http://eagain.net/articles/git-for-computer-scientists/ , but for every DB technology.
You nailed it. I think the issue is that people don't know what questions to ask when gathering the requirements. I'd like to know more about how this part of the article came to be: "This choice was made early on and it was supposed to be a temporary one." HOW was that choice made. What requirements were out there. I think too many people choose Mongo because they believe it's "schemaless"[1] and faster for developm…
I think the hard thing for us up front was that trying to explain Cassandra data models to someone (and this guy is really really good) and then hand the rest of the work over to them to implement now, on a contracting rate is not a trivial problem. And we needed to hurry for both deadlines and burn rate.
Re: Cassandra vs MongoDB For Time Series Data
#24KariosDB ( https://github.com/proofpoint/kairosdb ) is a time-series database for Casssandra. It's an OpenTSDB ( http://opentsdb.net ) rewrite that supports sub-second precision.
Re: Cassandra vs MongoDB For Time Series Data
#25i work on scada systems which usually come with a time series database built in so that operators can do some basic plotting. Often these products have a 10 or 15 year legacy. The scada vendors seem to be careful to avoid making the time series database and plotting tools which come with the HMI packages too powerful, as this might cut in to their sales of Historian type products. If it wasn't a commodity already, th…
http://en.wikipedia.org/wiki/SCADA for those of you in the same boat
Re: Cassandra vs MongoDB For Time Series Data
#26We use KDB for time series data but it is expensive. He's anyone checked this project out? http://www.monetdb.org/Home
My go-to for any time-series data is a column-oriented database. fyi, Cassandra is row-oriented.
Re: Cassandra vs MongoDB For Time Series Data
#27Re: Cassandra vs MongoDB For Time Series Data
#28Re: Cassandra vs MongoDB For Time Series Data
#29But is Cassandra web scale?
Re: Cassandra vs MongoDB For Time Series Data
#30All the new changes in 1.2 and 2.0 with cql really make it seem like datastax is focused on being mysql and ignoring the time series use case though which makes me nervous.