ReactorQL
- 处理实时数据
- 聚合计算实时数据
- 跨数据源联合数据处理
TIP
聚合处理实时数据时,必须使用interval
函数或者_window
函数.
当温度大于40度时,将数据转发到下一步.
处理指定多个型号的设备数据
select * from (
select
this.properties.temperature temperature,
this.deviceId deviceId
from
"/device/T0001/*/message/property/**" -- 订阅T0001型号下的所有设备消息
where this.properties.temperature > 40
union all -- 实时数据只能使用 union all
select
this.properties.temperature temperature,
this.deviceId deviceId
from
"/device/T0002/*/message/property/**" -- 订阅T0002型号下的所有设备消息
where this.properties.temperature > 42
)
计算每5分钟的温度平均值,当平均温度大于40度时,将数据转发到下一步.
select
avg(this.properties.temperature) temperature
from
"/device/*/*/message/property/**" -- 订阅所有设备的所有属性消息
group by interval('5m')
having temperature > 40 --having 必须使用别名.
计算每10条数据为一个窗口,每2条数据滚动的平均值.
[1,2,3,4,5,6,7,8,9,10] 第一组
[3,4,5,6,7,8,9,10,11,12] 第二组
[5,6,7,8,9,10,11,12,13,14] 第三组
select
avg(this.properties.temperature) temperature
from
"/device/*/*/message/property/**" -- 订阅所有设备的所有属性消息
group by _window(10,2)
having temperature > 40 --having 必须使用别名.
聚合统计平均值,并且提取聚合结果中的数据.
select
rows_to_array(idList) deviceIdList, --将[{deviceId:1},{deviceId:2}] 转为[1,2]
avgTemp,
from
(
select
collect_list((select this.deviceId deviceId)) idList, --聚合结果里的
avg(temperature) avgTemp ,
from "/device/*/*/message/property/**" ,
group by interval('1m') having avgTemp > 40
)
5分钟之内只取第一次。
from "/device/*/*/message/event/fire_alarm"
_window('5m'),take(1) -- -1为取最后一次
限流: 10秒内超过2次则获取最后一条数据
SQL中的this
表示主表当前的数据,如果存在嵌套属性的时候,必须指定this
或者以表别名开头. 如: this.properties.temperature
,写成: properties.temperature
是无法获取到值到.
TIP
以下功能只在企业版中支持
获取设备已保存的全部最新属性,(注意: 由于使用es存储设备数据,此数据并不是完全实时的)
device.properties(this.deviceId) props,
this.properties reports
from "/device/*/*/message/property/report"
TIP
device.properties(this.deviceId,'property1','property2')
还可以通过参数获取指定的属性,如果未设置则获取全部属性。
device.properties.history
查询设备历史数据
--聚合查询
select * from device.properties.history(
select avg(temperature) avgVal
from "deviceId" -- from 支持: 按设备ID查询: "deviceId", 查询多个设备: device('1','2') 按产品查询: product('id')
where timestamp between now()-86400000 and now()
)
--按时间分组
select * from device.properties.history(
select avg(temperature) avgVal
from "deviceId"
where timestamp between now()-86400000 and now()
group by interval('1d')
)
-- 订阅实时数据,然后查询对应设备的历史数据
select
(
select maxVal,avgVal from
device.properties.history(
select
max(temp3) maxVal,
avg(temp3) avgVal
from device(t.deviceId)
-- 前一天的数据
where timestamp between time('now-1d') and t.timestamp
)
) $this,
t.properties.temp3 temp3
from "/device/*/*/message/property/**" t
device.properties.latest
TIP
此功能需要开启设备最新数据存储
select * from device.properties.latest(
select
temperature
from "productId" --表名为产品ID
where id = 'deviceId' -- id则为设备ID
)
聚合查询
select * from device.properties.latest(
select
avg(temperature) temperature
from "productId" --表名为产品ID
)
获取设备标签信息
TIP
device.tags(this.deviceId,'tag1','tag2')
还可以通过参数获取指定的标签,如果未设置则获取全部标签。
device.selector
选择设备,如:
select dev.deviceId from "/device/*/*/message/property/report" t
-- 获取和上报属性在同一个分组里,并且产品id为light-product的设备
left join (
select this.id deviceId from
device.selector(same_group(t.deviceId),product('light-product'))
) dev
支持参数:
- in_gourp(‘groupId’) 在指定的设备分组中
- in_group_tree(‘groupId’) 在指定分组中(包含下级分组)
- same_group(‘deviceId’) 在指定设备的相同分组中
- product(‘productId’) 指定产品ID对应的设备
- tag(‘tag1Key’,’tag1Value’,’tag2Key’,’tag2Value’) 按指定的标签获取
- state(‘online’) 按指定的状态获取
- in_tenant(‘租户ID’) 在指定租户中的设备
- org(‘机构ID’) 在指定机构中
mqtt.client.publish
推送消息到mqtt客户端.
select
mqtt.client.publish(
'networkId' -- 第一个参数: 网络组件中mqtt客户端的ID
,'topic' -- 第二个参数: topic
,this -- 消息体,会根据消息类型转为不同格式的消息
) publishSuccess -- 返回推送结果 true false
from "/rule-engine/device/alarm/sensor-1/**"
从mqtt客户端订阅消息
select
t.did deviceId,
t.l location,
t.v value
from mqtt.client.subscribe(
'networkId' -- 第一个参数: 网络组件中mqtt客户端的ID
,'JSON' -- 第二个参数: 消息类型: JSON,STRING,BINARY,HEX
,'topic' -- topic
,'topic2' -- topic2
) t
where t.v > 30 -- 过滤条件
http.request
发起http请求
select
http.request(
'networkId' -- 第一个参数: 网络组件中http客户端的ID
-- 下面的参数两两对应组成键值对,注意: 使用逗号(,)分割.
,'url','https://www.baidu.com'
,'method','POST'
,'contentType','application/json'
-- 请求头
,'headers',new_map('key1','value1','key2','value2')
-- body参数在contentType为application/json时生效
,'body',new_map('key1','value1','key2','value2')
-- requestParam参数在contentType不为json时生效,相当于:application/x-www-form-urlencoded的处理方式
,'requestParam',new_map('key1','value1','key2','value2')
-- 直接拼接到url上的参数 https://www.baidu.com?key1=value1&key2=value2
,'queryParameters',new_map('key1','value1','key2','value2')
) response
from dual
message.subscribe
select
t.topic topic,
t.message.deviceId deviceId,
t.message.headers.productId productId,
t.message.timestamp ts
from message.subscribe(
'false' -- 是否订阅来自集群的消息(可选参数,默认为false)
,'/device/*/*/online'
) t
推送消息到消息网关
select
message.publish(
'/device-online/'||t.message.deviceId -- 推送到此topic
,t.message -- 消息内容
) subscribeNumber -- 返回有多少订阅者收到了消息