Creating a Siddhi Application
Siddhi applications are files that define the Siddhi logic to process the events sent to WSO2 SP. They are written in the Siddhi Query Language using the Stream Processor Studio tool shipped with WSO2 SP.
A Siddhi file contains the following configurations:
| Configuration | Description |
|---|---|
| Stream | A logical series of events ordered in time with a uniquely identifiable name, and set of defined attributes with specific data types defining its schema. |
| Source | This consumes data from external sources (such as TCP, Kafka, HTTP, etc) in the form of events, then converts each event (that can be in XML, JSON, binary, etc. format) to a Siddhi event, and passes that to a stream for processing. |
| Sink | This takes events arriving at a stream, maps them to a predefined data format (such as XML, JSON, binary, etc), and publishes them to external endpoints (such as E-mail, TCP, Kafka, HTTP, etc). |
| Executional Element | An executional element can be one of the following:
|
A Siddhi application can be created from the source view or the design view of the WSO2 SP Stream Processor Studio.
Creating a Siddhi application in the source view
To create a Siddhi application via the source view of the WSO2 SP Stream Processor Studio, follow the steps below:
- Start WSO2 SP in the editor mode and access the Stream Processor Studio. For detailed instructions, see Starting Stream Processor Studio. The Stream Processor Studio opens as shown below.
- Click New to start defining a new Siddhi application. A new file opens as shown below.
Add the following sample Siddhi application to the file.
@App:name("SweetProductionAnalysis") @Source(type = 'tcp', context='SweetProductionData', @map(type='binary')) define stream SweetProductionStream (name string, amount double); @sink(type='log', @map(type='json')) define stream ProductionAlertStream (name string, amount double); from SweetProductionStream select * insert into ProductionAlertStream;Note the following in this Siddhi application
Configuration Description Stream This stream contains two stream configurations:
SweetProductionStreamdefine stream SweetProductionStream (name string, amount double);
This is the input stream that defines the schema based on which events are selected to be processed by the
SweetProductionAnalysisSiddhi application. Events received via the source in this application are directed to this stream.ProductionAlertStream
define stream ProductionAlertStream (name string, amount double);
This is the output stream from which the sink configured in this application takes events to be published as the output.
Source @Source(type = 'tcp', context='SweetProductionData', @map(type='binary'))
This source configuration has the following sections:@Source(type = ‘tcp’, context='SweetProductionData'
This configuration defines
tcpas the transport via which events are received to be processed by theSweetProductionAnalysisSiddhi application.@map(type='binary')
This configuration defines the input mapping. In this scenario, Binary Mapper is used which converts input events into binary events and feeds them into siddhi.)
Sink @sink(type='log', @map(type='json'))
This source configuration has the following sections:
@sink(type='log')
This configuration defines
logas the transport via which the processed events are published from theProductionAlertStreamoutput stream. Log sink simply publishes events into the console.@map(type='json'))
This configuration defines the output mapping. Events are published with thejsonmapping type. Json mapper converts the events in theProductionAlertStreamto the Json format.
Executional Elements from SweetProductionStream select * insert into ProductionAlertStream;
This is where the logic of the siddhi app is defined. In this scenario, all the events received in the
SweetProductionStreaminput stream are inserted into theProductionAlertStreamoutput stream.To save this Siddhi application, click File, and then click Save. By default siddhi applications are saved in the
<SP_HOME>/wso2/editor/deployment/workspacedirectory.- To export the Siddhi application to your preferred location, click File, and then click Export File.
- To see a graphical view of the event flow you defined in your Siddhi application, click Design View.
The event flow is displayed as follows.
Creating a Siddhi application in the design view
To create a Siddhi application via the design view of the WSO2 SP Stream Processor Studio, follow the steps below:
- Start WSO2 SP in the editor mode and access the Stream Processor Studio. For detailed instructions, see Starting Stream Processor Studio. The Stream Processor Studio opens as shown below.
- Click New to start defining a new Siddhi application. A new file opens as shown below.
- To open the design view, click Design View.
- To define the input stream into which the events to be processed via the Siddhi application should be received, drag and drop the stream icon (shown below) into the grid.
As a result, the Stream Configuration form appears below the grid as shown below.
Fill this form as follows to define a stream namedSweetProductionStreamwith two attributes namednameandamount:
- In the Name field, enter
SweetProductionStream. In the Attributes table, enter two attributes as follows. You can click +Attribute to add a new row in the table to define a new attribute.
Attribute Name Attribute Type namestringamountdouble- Click Submit to save the new stream definition. As a result, the stream is displayed on the grid with the
SweetProductionStreamlabel as shown below.
- In the Name field, enter
To define the output stream to which the processed events need to be directed, drag and drop the stream icon again. Place it after the
SweetProductionStreamstream. This stream should be namedProductionAlertStreamand have the following attributes.Attribute Name Attribute Type namestringtotalProductionlong- To add the source from which events are received, drag and drop the source icon (shown below) into the grid.
As a result, the Source Configuration form appears below the grid. Enter values in this form as follows to configure a source via which events can be received.In the Name field, enter a name for the source. Then click Save to add the source
The name must always be the name of the transport via which the events are received. This must be entered in lower case (e.g.,
tcp).- To configure the source by entering values for the rest of the parameters, the source must be connected to a stream. This tcp source needs to be connected to the
SweetProductionStreaminput stream so that the events received via TCP can be directed there. To connect the source to the stream, draw an arrow from the source to the stream by dragging the cursor as demonstrated below.
Then open the Source Configuration form again by clicking the Settings icon of thetcpsource.
Click Properties. Based on the properties you want to configure for the source, select the relevant check box to select the required annotation type. In this example, let's select both Options and Map.
As a result, the Options and Map sections appear as shown below.- Enter
context='SweetProductionData'in the Options field to indicate the context. You can add multiple options by clicking + Option to add more fields under Options. - For this example, assume that events are received in the
binaryformat. To allow this, enterbinaryin the Name field under Type in the Map section.
- Enter
- Click Save to save the source configuration.
- To add a query that defines the execution logic, drag and drop the projection query icon (shown below) to the grid.
- The query uses the events in the
SweetProductionStreaminput stream as inputs and directs the processed events (which are its output) to theProductionAlertStreamoutput stream. Therefore, create two connections as demonstrated below.
- To define the execution logic, move the cursor over the query in the grid, and click on the settings icon that appears.
This opens the Query Configuration form. Enter information in it as follows:
- To specify that the
SweetProductionStreamstream is the input stream from which the events to be processed are taken, enter it in the Stream/Trigger field in the Input section. To define how each attribute is processed, enter the following in the User Defined Attributes table.
Expression As Purpose namenameWhen creating the output events, the nameattribute is output with the same attribute name.sum(amount)amountWith each event that arrives in the SweetProductionStreamstream, the query calculates the sum for theamountattribute, and outputs the result withamountas the attribute value.- The output events generated need to be inserted into the
ProductionAlertStreamoutput stream. To achieve this, enter information in the Output section as follows:- In the Operation field, select Insert. This value is selected because the output events need to be inserted into the
ProductionAlertStreamoutput stream. - In the Into field, enter
ProductionAlertStream. - In the For field, select all events.
- In the Operation field, select Insert. This value is selected because the output events need to be inserted into the
- Click Save to save the entries.
- To specify that the
- To add a sink to publish the output events that are directed to the
ProductionAlertStreamoutput stream, drag and drop the sink icon (shown below) into the grid.
As a result, the Sink Configuration form appears below the grid. Enter values in this form as follows to configure a sink via which events can be published.In the Name field, enter a name for the sink.
The name must always be the name of the transport via which the events are published. This must be entered in lower case (e.g.,
log).Click Properties. Based on the properties you want to configure for the sink, select the relevant check box to select the required annotation type. In this example, assume that the events need to be published in the
jsonformat. Therefore, let's select the Map check box, and entertype=jsonto specifyjsonas the mapping type.
- Connect the sink you added to the
ProductionAlertStreamoutput stream by dragging and dropping the cursor from theProductionAlertStreamoutput stream to the sink. - To allign the Siddhi components that you have added to the grid, click Edit and then click Auto-Align. As a result, all the components are horizontally aligned as shown below.
- Click Source View. The siddhi application is displayed as follows.
- Click File and then click Save as. The Save to Workspace dialog box appears. In the File Name field, enter
SweetProductionAnalysisand click Save.










