我想根据两个具有相同标识符的事件来检测两个事件是否在定义的时间范围内发生。例如一个DoorEvent
看起来像这样:
<doorevent>
<door>
<id>1</id>
<status>open</status>
</door>
<timestamp>12345679</timestamp>
</doorevent>
<doorevent>
<door>
<id>1</id>
<status>close</status>
</door>
<timestamp>23456790</timestamp>
</doorevent>
下面示例中的我的DoorEvent
java 类具有相同的结构。
我想检测到 id 为 1 的门在打开后 5 分钟内关闭。为此,我尝试使用 Apache flink CEP 库。传入的流包含来自 20 个门的所有打开和关闭消息。
Pattern<String, ?> pattern = Pattern.<String>begin("door_open").where(
new SimpleCondition<String>() {
private static final long serialVersionUID = 1L;
public boolean filter(String doorevent) {
DoorEvent event = new DoorEvent().parseInstance(doorevent, DataType.XML);
if (event.getDoor().getStatus().equals("open")){
// save state of door as open
return true;
}
return false;
}
}
)
.followedByAny("door_close").where(
new SimpleCondition<String>() {
private static final long serialVersionUID = 1L;
public boolean filter(String doorevent) throws JsonParseException, JsonMappingException, IOException {
DoorEvent event = new DoorEvent().parseInstance(doorevent, DataType.XML);
if (event.getDoor().getStatus().equals("close")){
// check if close is of previously opened door
return true;
}
return false;
}
}
)
.within(Time.minutes(5));
如何将门 1 的状态保存为打开状态,door_open
以便在door_close
步骤中我知道门 1 是关闭的门而不是其他门?