Thoughts on Time-series Databases
jmoiron.net
Thoughts on Time-series Databases
1–10 of 132 posts
Re: Thoughts on Time-series Databases
#2Re: Thoughts on Time-series Databases
#3Re: Thoughts on Time-series Databases
#4Re: Thoughts on Time-series Databases
#5Too many writes, use a cache to batch. No metadata? put the metadata in a different file and point to the offsets.
Re: Thoughts on Time-series Databases
#6Why does every TSD seem so overly engineered and for all the wrong reasons? Why not just use a time decaying ring buffer (multiple buffers could be used), one statistic one file (or more depending on the decay) and offset by a set interval if you have irregular intervals 'smooth' it to fit O(1) for most things. My other issue is (from a glance) looking at some TSD they ignore most research done on how to effectively…
Re: Thoughts on Time-series Databases
#7Re: Thoughts on Time-series Databases
#8What are the benefits of introducing specialized time-series databases vs using Redis, Casandra, or some Sql database?
Re: Thoughts on Time-series Databases
#9Baron Schwartz article on Time-series Database Requirements is quite a read: http://www.xaprb.com/blog/2014/06/08/time-series-database-re...
HN discussion: https://news.ycombinator.com/item?id=9166495