java的时间序列数据库?
我想用Java存储数百万个时间序列条目(长时间,双精度值)。 (我们的监控系统目前将每个条目存储在一个大型 mySQL 表中,但性能非常糟糕。)
有没有用 java 实现的时间序列数据库?
I want to store millions of time series entries (long time, double value) with Java. (Our monitoring system is currently storing every entry in a large mySQL table but performance is very bad.)
Are there time series databases implemented in java out there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我希望看到更多在此线程中的建议。
I hope to see additional suggestions in this thread.
由于数据库设计错误,性能很差。我正在使用 mysql,表有这样的布局:
我的错误是索引不合适。添加多列主键后,我的所有查询都快如闪电:
感谢您的所有回答!
The performance was bad because of wrong database design. I am using mysql and the table had this layout:
My fault was an inapproriate index. After adding a multi column primary key all my queries are lightning fast:
Thanks for all you answers!
您可以查看KDB。它主要由金融公司用来获取市场时间序列数据。
You can take a look at KDB. It's primarily used by financial companies to fetch market time series data.
您需要对数据执行什么操作以及何时执行?
如果您只是保存值供以后使用,那么纯文本文件可能会很好,然后再上传到数据库。
What do you need to do with the data and when?
If you are just saving the values for later, a plain text file might do nicely, and then later upload to a database.