flink-siddhi
A light-weight library to run Siddhi CEP within Apache Flink streaming application.
Version:1.2-SNAPSHOT
About
Siddhi CEP is a lightweight and easy-to-use Open Source Complex Event Processing Engine (CEP) released as a Java Library under Apache Software License v2.0.
Siddhi CEP processes events which are generated by various event sources, analyses them and notifies appropriate complex events according to the user specified queries.
This project is mainly to provide a light-weight library to easily run Siddhi CEP within flink streaming application.
Usage and API
-
Add
flink-siddhiin maven dependency:<dependencies> <dependency> <groupId>com.github.haoch</groupId> <artifactId>flink-siddhi_2.10</artifactId> <version>1.2-SNAPSHOT</version> </dependency> </dependencies> <repositories> <repository> <id>clojars</id> <url>http://clojars.org/repo/</url> </repository> </repositories> -
Execute
SiddhiQLwithSiddhiCEPAPI, for example:StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment(); SiddhiCEP cep = SiddhiCEP.getSiddhiEnvironment(env); cep.registerExtension("custom:plus",CustomPlusFunctionExtension.class); cep.registerStream("inputStream1", input1, "id", "name", "price","timestamp"); cep.registerStream("inputStream2", input2, "id", "name", "price","timestamp"); DataStream<Tuple5<Integer,String,Integer,String,Double>> output = cep .from("inputStream1").union("inputStream2") .cql( "from every s1 = inputStream1[id == 2] " + " -> s2 = inputStream2[id == 3] " + "select s1.id as id_1, s1.name as name_1, s2.id as id_2, s2.name as name_2 , custom:plus(s1.price,s2.price) as price" + "insert into outputStream") .returns("outputStream"); env.execute();For more examples, please see
org.apache.flink.contrib.siddhi.SiddhiCEPITCase
Features
- Integrate Siddhi CEP as an stream operator (i.e.
TupleStreamSiddhiOperator), supporting rich CEP features like- Filter
- Join
- Aggregation
- Group by
- Having
- Window
- Conditions and Expressions
- Pattern processing
- Sequence processing
- Event Tables
- ...
- Provide easy-to-use Siddhi CEP API to integrate Flink DataStream API (See
SiddhiCEPandSiddhiStream)- Register Flink DataStream associating native type information with Siddhi Stream Schema, supporting POJO,Tuple, Primitive Type, etc.
- Connect with single or multiple Flink DataStreams with Siddhi CEP Execution Plan
- Return output stream as DataStream with type intelligently inferred from Siddhi Stream Schema
- Integrate siddhi runtime state management with Flink state (See
AbstractSiddhiOperator) - Support siddhi plugin management to extend CEP functions. (See
SiddhiCEP#registerExtension)
Documentations
- Site: https://haoch.github.io/flink-siddhi/
- Wiki: https://github.com/haoch/flink-siddhi/wiki
- Siddhi Query Language: https://docs.wso2.com/display/CEP300/Introduction+to+Siddhi+Query+Language
- Apache Flink: http://flink.apache.org/
Development
Prerequisites
- Java (Version:
1.8) - Apache Maven
Clone
git clone git@github.com:haoch/flink-siddhi.git
Building
mvn clean install -DskipTests
Testing
mvn clean test
Support and Contact
- Issues: https://github.com/haoch/flink-siddhi/issues
- Documents: https://github.com/haoch/flink-siddhi/wiki
Author and Contributors
- @haoch (hao AT apache DOT org)
Contribution
Welcome to make contribution to code or document by sending a pull request, or reporting issues or bugs.
License
Licensed under the Apache License, Version 2.0. More details, please refer to LICENSE file.