简体   繁体   English

WSO2 CEP-内存泄漏

[英]WSO2 CEP - memory leak

I have a problem about WSO2 CEP. 我对WSO2 CEP有问题。 Please advice or fix this problem. 请提出建议或解决此问题。

Environment is below. 环境在下面。
1) CEP version is 2.1.0. 1)CEP版本是2.1.0。
2) TimeBatch Window and patterns query is used. 2)使用TimeBatch窗口和模式查询。

from RootStream#window.timeBatch(10000)
insert into AvgOneStream avg(watt) as avgOne


from every one = AvgOneStream[avgOne >= 10] ->
     two = AvgTwoStream[avgTwo >= 220] ->
     three = AvgThreeStream[avgThree >= 440]
within 10000
insert into Stream one.avgOne as avgOne, two.avgTwo as avgTwo, three.avgThree as avgThree

Problem is below. 问题在下面。
1) Out of memory occurs. 1)发生内存不足。
2) Number of threads is increased. 2)线程数增加。

Thank you in advance. 先感谢您。

This was a known bug in the time windows in CEP version 2.1.0 and a fix was previously mentioned on StackOverflow here . 这是CEP 2.1.0版的时间窗口中的一个已知错误,以前在此处的 StackOverflow中提到了一个修复程序。

In newer versions of CEP (3.0.0 onwards), this is fixed. 在较新版本的CEP(3.0.0及更高版本)中,此问题已修复。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM