Ask HN: What DB to use for huge time series?
11–20 of 135 posts
Re: Ask HN: What DB to use for huge time series?
#12To get a relevant recommendation, you'll have to describe two things at least - data and queries. How is the data generated? What is stored in the data? What are the queries you plan to run?
Re: Ask HN: What DB to use for huge time series?
#13Re: Ask HN: What DB to use for huge time series?
#14Re: Ask HN: What DB to use for huge time series?
#15I am currently working on a project analyzing massive amounts of options data and have found this approach to be both quite easy as well as flexible to work with... and as my project matures I may move select parts of it into a database.
Re: Ask HN: What DB to use for huge time series?
#16Some (constantly-growing) timeseries can be stored on a per-row basis, while other (static or older) timeseries can be stored in a packed form (e.g. an array column).
I find that most of the time, "Big Data" isn't really all that big for modern hardware, and so going through all of the extra software work for specialized data stores isn't really all that necessary. YMMV, of course, depending on the nature of your queries.
Re: Ask HN: What DB to use for huge time series?
#17Disclaimer: I'm a former core contributor to blueflood.
Re: Ask HN: What DB to use for huge time series?
#18Have you considered opentsdb or graphite? I love graphite because of the nice frontend interface and functionality it provides for visualizing and transforming your metrics.
For data storage Cyanite [0] speaks the graphite protocol and stores the data in Cassandra. Alternately, InfluxDB [1] speaks the graphite protocol and stores the data in itself
To get the data back out, there's graphite-api [2] which can be hooked up to cyanite [3] or influxdb [4]. You can then connect any graphite dashboard you like, such as grafana [5], to it.
[0] https://github.com/pyr/cyanite [1] http://influxdb.com [2] https://github.com/brutasse/graphite-api [3] https://github.com/brutasse/graphite-cyanite [4] https://github.com/vimeo/graphite-influxdb [5] http://grafana.org
Re: Ask HN: What DB to use for huge time series?
#19Re: Ask HN: What DB to use for huge time series?
#20If you have mega huge data http://opentsdb.net/ seems pretty decent, however I have not tried it out.