flink-siddhi icon indicating copy to clipboard operation
flink-siddhi copied to clipboard

flink-siddhi当前不支持完整的siddhi功能和扩展?

Open runc opened this issue 5 years ago • 2 comments

当前我想实现一个UI+siddhiEngine,功能对其siddhi-distribution + runner,其中runner用flink代替,但flink-siddhi支持实现一部分siddhi或者product-sp功能?

flink-siddhi如何支持完整的siddhi功能呢?比如:

@Source(type = 'http', receiver.url='http://localhost:8006/productionStream', basic.auth.enabled='false', @map(type='json')) define stream SweetProductionStream (name string, amount double);

@sink(type='log') define stream TotalCountStream (totalCount long);

-- Count the incoming events @info(name='query1') from SweetProductionStream select count() as totalCount insert into TotalCountStream;

runc avatar May 30 '19 09:05 runc

flink-siddhi mainly focus on managing siddhi (programming/dynamical) inside flink distributed runtime. it should natively support all siddhi existing function and extension. For example, siddhi could easily discover all extension once in classpath.

haoch avatar Jun 24 '19 20:06 haoch

thanks

runc avatar Jun 27 '19 11:06 runc