排名前十的时序数据库[通俗易懂]

排名前十的时序数据库[通俗易懂]时序数据库全称为时间序列数据库。时间序列数据库主要用于指处理带时间标签(按照时间的顺序变化,即时间序列化)的数据,带时间标签的数据也称为时间序列数据。时序数据的兴起还是榜上了物联网的大风。物联网(InternetofThings,简称IOT)是指通过各种信息传感器实时采集任何需要管理设备的信息,并进行管理。物联网的基础数据具有数据量大、结构单一、时间属性强、查询简单等特点,传统的关系型数据库在面对物联网数据时,显得应对发力,基本上属于功能过剩但性能不足。目前最新的DB-Engine上时序数据库排名如下

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

时序数据库全称为时间序列数据库。时间序列数据库主要用于指处理带时间标签(按照时间的顺序变化,即时间序列化)的数据,带时间标签的数据也称为时间序列数据。时序数据的兴起还是榜上了物联网的大风。物联网(Internet of Things,简称IOT)是指通过各种信息传感器实时采集任何需要管理设备的信息,并进行管理。物联网的基础数据具有数据量大、结构单一、时间属性强、查询简单等特点,传统的关系型数据库在面对物联网数据时,显得应对发力,基本上属于功能过剩但性能不足。
目前最新的DB-Engine上时序数据库排名如下:

在这里插入图片描述

1.InfluxDB

2013
DBMS for storing time series, events and metrics
www.influxdata.com

InfluxDB empowers developers to build IoT, analytics and monitoring software. It is purpose-built to handle the massive volumes and countless sources of time-stamped data produced by sensors, applications and infrastructure.

2.KDb+

2000
High performance Time Series DBMS
kx.com

3.Prometheus

2015
Open-source TimeSeries DBMS and monitoring system
prometheus.io/

Prometheus is an open-source systems monitoring and alerting toolkit originally built at SoundCloud. Since its inception in 2012, many companies and organizations have adopted Prometheus, and the project has a very active developer and user community. It is now a standalone open source project and maintained independently of any company. To emphasize this, and to clarify the project’s governance structure, Prometheus joined the Cloud Native Computing Foundation in 2016 as the second hosted project, after Kubernetes.

4.Graphite

2006
Data logging and graphing tool for time series data
github.com/­graphite-project/­graphite-web

5.RRDtool

1999
Industry standard data logging and graphing tool for time series data. RRD is an acronym for round-robin database.
oss.oetiker.ch/­rrdtool
RRDtool is the OpenSource industry standard, high performance data logging and graphing system for time series data. RRDtool can be easily integrated in shell scripts, perl, python, ruby, lua or tcl applications.

6.TimescaleDB

2017
A time series DBMS optimized for fast ingest and complex queries, based on PostgreSQL
www.timescale.com

7.Apache Druid

2012
Open-source analytics data store designed for sub-second OLAP queries on high dimensionality and high cardinality data
druid.apache.org

8.Fauna

2014
Fauna (previously named FaunaDB) provides a web-native interface, with support for GraphQL and custom business logic that integrates seamlessly with the rest of the serverless ecosystem. The underlying globally distributed storage and compute platform is fast, consistent, and reliable, with a modern security infrastructure.
fauna.com

9.OpenTSDB

2011
Scalable Time Series DBMS based on HBase
opentsdb.net

10.GridDB

2013
Scalable in-memory time series database optimized for IoT and Big Data
griddb.net

GridDB is an innovative solution to solve these complex problems. The foundation of GridDB’s principles is based upon offering a versatile data store that is optimized for IoT, provides high scalability, is tuned for high performance, and ensures high reliability.

11.DolphinDB

2018
Time Series DBMS for big data, integrated with a lightweight distributed computing framework and a vector programming language
www.dolphindb.com

DolphinDB is a high performance time-series database. It is integrated with an easy-to-use fully featured programming language and a high-volume high-velocity streaming analytics system. DolphinDB offers operational simplicity, scalability, fault tolerance, and concurrency.

12.KairosDB

2013
Distributed Time Series DBMS based on Cassandra or H2
github.com/­kairosdb/­kairosdb

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/185868.html原文链接:https://javaforall.net

(0)
上一篇 2022年10月4日 下午10:46
下一篇 2022年10月4日 下午11:00


相关推荐

  • 浅谈回文串问题

    浅谈回文串问题回文串问题是字符串类型的题目中常见的一类 在绝大多数情况下 但凡涉及字符串问题都对 暴力算法 以及 dfs 等形式不太友好 常见的解决思路有动态规划 而除此之外 利用自动匹配机的性质 大牛们又发明了巧妙而高效的算法 本文在涉及 回文串类型问题 的解法之上 主要罗列一些常见的解决思路 最粗暴的解法 暴力法 O N 3 首先 可能大多数人都会想到利用回文串的性质 即 S reverse S

    2026年3月19日
    2
  • NLTK 基础知识总结

    NLTK 基础知识总结什么事实 NLTKNLTK 全称 NaturalLangu 自然语言处理工具包 是 NLP 研究领域常用的一个 Python 库 由宾夕法尼亚大学的 StevenBird 和 EdwardLoper 在 Python 的基础上开发的一个模块 至今已有超过十万行的代码 这是一个开源项目 包含数据集 Python 模块 教程等 怎样安装详情可以参见我的另一篇博客 NLP 的开发环境搭建 通

    2025年11月29日
    5
  • Qwen-Image-Edit-F2P C++调用指南[项目代码]

    Qwen-Image-Edit-F2P C++调用指南[项目代码]

    2026年3月13日
    3
  • 讯飞星火X1全新升级,全国产深度大模型推理性能比肩全球一流水平

    讯飞星火X1全新升级,全国产深度大模型推理性能比肩全球一流水平

    2026年3月14日
    3
  • C语言 整数与字符串的相互转换

    C语言 整数与字符串的相互转换C语言整数与字符串的相互转换一、简述C语言中整数与字符串的相互转换,有广泛应用的拓展函数(非标准库),也可以自己尝试简单的实现。二、整数转字符串1、拓展函数itoaitoa(表示integertoalphanumeric)是把整型数转换成字符串的一个函数。windows环境下,在<stdlib.h>头文件中有c…

    2022年6月6日
    49
  • android app功耗测试方法,APP功耗测试方法

    android app功耗测试方法,APP功耗测试方法APP 功耗测试方法发布时间 2018 04 2623 27 浏览次数 560 标签 APP 业界比较难测试的一个测试 比如新旧版本对比不一定能说明问题 所以耗电量测试只能定量测试 作为辅助数据帮助我们测试 功耗测试可以基于硬件测试方法 第三方精密仪器 和基于软件测评方法 下面就两种测试方法进行阐述 一 为什么要进行耗电量测试 1 app 耗电量测试是用户非常关注的一个方面 如果一些 app 设计不好或者

    2026年3月18日
    3

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号