influxdb时序库之Python操作

使用Python操作influxdb时序库

1. 安装三方库

注意区分版本,不同的 influxdb 版本对应安装不同的三方库。

influxdb V1:pip install influxdb

influxdb V2:pip install influxdb-client

以下代码都是基于 influxdb 2.4 版本进行操作。

2. 实例化client对象

python 复制代码
from datetime import datetime
from influxdb_client import InfluxDBClient, Point, WritePrecision
from influxdb_client.client.write_api import SYNCHRONOUS

token = "H9GXI_bvLHkbRWBR1bYZVZlm5_b282iSDU6EpfxL2tbux6Qp6jcpQqxLpp01KE6EZIdWGkpoMS_PoHe-I-jaDg=="
org = "influx_test"
bucket = "example_dbquery"

# 实例化influxdb client对象,建立连接
db_client = InfluxDBClient(url="http://192.168.1.6:8086", token=token, org=org)
# 写操作
write_api = db_client.write_api(write_options=SYNCHRONOUS)
# 读操作
query_api = db_client.query_api()

3. 写操作

Data Point 方式写数据时,要注意 field 对应的数据类型为int 还是 double.

python 复制代码
# 写操作
write_api = db_client.write_api(write_options=SYNCHRONOUS)

# 方式1. 行协议方式写数据
data = 'car,code=01 rate=38,temp=26'
write_api.write(bucket, org, data)

# 方式2. 数据点方式写数据
point = Point("car") \
    .tag("code", "01") \
    .field("rate", 39.2).field("temp", 28.5) \
    .time(datetime.utcnow(), WritePrecision.NS)
write_api.write(bucket, org, point)

# 方式3. 批量行协议方式写数据
sequence = [
    'car,code=01 rate=40,temp=25',
    'car,code=02 rate=45,temp=30',
]
write_api.write(bucket, org, sequence)

4. 查数据

influxdb版本不同,查询语句也不一样,以下基于 influxdb 2.4 实现。

python 复制代码
# 读操作
query_api = db_client.query_api()

query_info = 'from(bucket: "example_dbquery") |> range(start: -1h)'
tables = query_api.query(query_info, org=org)       # 相当于查到的所有序列,(_measurement + tag + _field 为一组series,即一组序列)

for tb in tables:
    print(f"---------tb: {tb}")
    for record in tb.records:           # 循环每个序列中的每条记录,即每个point
        print(record)

5. 关闭连接

db_client .close()

相关推荐
默_笙1 天前
🍙 给每个请求过安检:FastAPI 是怎么把校验写进类型注解的
python
qq_426003961 天前
启动playwright录制codegen生成自动化测试脚本
python·自动化
虎头金猫1 天前
4K 视频总卡在公网带宽?用 N1 + OpenList 把网盘播放链路重新理顺
运维·服务器·网络·python·容器·beautifulsoup·pandas
长沙三为智能科技1 天前
家政小程序开发从0到上线:五阶段交付流程与验收清单
python
伞伞悦读1 天前
【第38期】Python 模块与包详解:import、from、模块搜索路径、包结构和 __init__
开发语言·python
这个DBA有点耶1 天前
MVCC深入:Read View、版本链与快照读——InnoDB并发控制的内核
数据库·mysql·架构
DBA_G1 天前
从地面到云霄:GBase数据库在民航三大场景的落地实践
数据库
自由能燃气设备1 天前
商用全预混低氮冷凝锅炉免费方案vs付费方案对比+选型避坑指南
大数据·数据库·人工智能
只睡四小时1 天前
Canvas 弹道联机实战:700 行 + 固定时间步长
python·websocket·html5·游戏开发·canvas
科创致远1 天前
科创致远 ESOP 系统核心效能与实战价值展示
大数据·数据库·人工智能·精益工程