on
我正在使用该属性加入 Kapacitor 中的流。连接似乎仅在其中一个流具有多个groupBy
维度时才有效,即使实际上只需要一个维度。这是为什么?
例如,在下面的代码中,如果floor
从.groupBy('building', 'floor')
. 为什么 join 不能building
单独使用?
var building = stream
|from()
.measurement('building_power')
.groupBy('building')
var floor = stream
|from()
.measurement('floor_power')
.groupBy('building', 'floor')
building
|join(floor)
.as('building', 'floor')
.on('building')