influxdb安装
程序员文章站
2022-07-13 15:38:06
...
上次在看timescaledb与influxdb、opentsdb的优缺点
大体总结如下:influxdb插入数据量频率高时候 性能是timescaledb 的两倍,但是 如果插入频率很大比如100台服务器监控 timescaledb 性能比influxdb高,timescaledb 支持高可用不支持集群,influxdb集群版收费,influxdb底层基于tsm
opentsdb 底层基于hbase 下层结构是基于lsm tree
但是有想了一下 虽然influxdb单体会存在单点故障,但是可以使用kafka做高可用,订阅消费模式进入influxdb
官网地址https://portal.influxdata.com/downloads/
点击下载
下载如下
修改influxdb.conf文件
双击influxd.exe
下载可视化插件
地址:
https://github.com/CymaticLabs/InfluxDBStudio
show databases
create database mydb
use mydb
show measurements # measurements相当于的SQL中的tables
show series #看表
参考https://blog.csdn.net/xc_zhou/article/details/89478279