2

我的 influxdb 数据库中有一些测量数据,可以通过以下方式查询:

select * from E_real_con
名称:E_real_con
时间值
---- -----
1537920001044785525 | 57160036.00
1538006401069651036 | 57227208.00
1538092800108297103 | 57294112.00
1538179200697333731 | 57366108.00

但是,“值”是一个累积值,我想获得两个连续值之间的增量/差异。

我尝试了以下方法:

SELECT difference(last(value)) FROM E_real_con WHERE time >= now() - 7d GROUP BY time(1d) fill(null)

但是,我收到以下错误消息:

ERR: unsupported difference iterator type: *query.stringInterruptIterator

我很乐意得到一些提示和反馈来解决我的问题。

我正在使用 influxdb 1.6.1

非常感谢!克里斯托夫

4

2 回答 2

4

我找到了解决方案。必须纠正以下两个错误:

1) 测量中的值是“字符串”类型而不是“浮点”类型。由于数据来自 nodered,我在将数据写入 influxdb 之前清除了数据库并在 nodered 中使用了 parseFloat()。顺便说一句:您可以通过以下方式检查测量字段的数据类型:

SHOW FIELD KEYS FROM E_real_con

2)似乎查询命令需要“where”

这有效:

SELECT difference(last(value)) FROM E_real_del WHERE time >= now() - 7d GROUP BY time(1d)

然而:

SELECT difference(last(value)) FROM E_real_del GROUP BY time(1d)

不起作用。

我希望这可能对其他人有所帮助。

于 2018-10-01T18:38:50.163 回答
1

2)似乎查询命令需要“where”

它甚至比这更受限制。它需要一个具有最小时间戳的位置。

例如,以下内容没有给我任何结果:

select difference(last(value)) from WaterConsumption_Total where time < now() - 1d group by time(1d) fill(previous)

虽然这样做:

select difference(last(value)) from WaterConsumption_Total where time > '2019-08-23T00:00:00Z' group by time(1d) fill(previous)

这有效地使得不可能将这样的查询用作连续查询。

于 2020-04-05T09:23:58.480 回答