Filtering Data
Introduction
When you receive input data, it may consist of data that is not required to generate the required output, null values for certain attributes, etc. You can filter data to refine the received data.
Filtering data based on Conditions
To understand the different ways you can filter the specific data you need to transform and enrich in order to generate the required output, follow the procedures below:
Filtering based on exact match of attribute
Start creating a new stream application. For more information, see Creating a Stream Application.
Enter a name for the stream application via the
@App:nameannotation. In this example, let's name itTemperatureApp.Define an input stream to specify the schema based on which events are selected.
CREATE STREAM `InputTempStream` (deviceID long, roomNo string, temp double);infoFor more information about defining input streams to receive events, see the [Consuming Data](/cep/tutorials/consuming-data).Define an output stream
Room2233AnalysisStreamto emit the resultCREATE STREAM Room2233AnalysisStream WITH (type='stream', stream='Room2233AnalysisStream', map.type='json') (deviceID long, roomNo string, temp double);Add a query to generate filtered temperature readings as follows. For this example, let's assume that you want to filter only temperature readings for a specific room number (e.g., room no
2233).Add the
fromclause and enterInputTempStreamas the input stream from which the input data. However, because you only need to extract readings for room no2233, include a filter in thefromclause as shown below:from InputTempStream [roomNo=='2233']Add the
selectclause with*to indicate that all the attributes should be selected without any changes.select *
from InputTempStream [roomNo=='2233']Add the
insert intoclause and direct the output to a stream namedRoom2233AnalysisStream.insert into Room2233AnalysisStream
select *
from InputTempStream [roomNo=='2233']tipAs a best practice, name your queries using the `@info` annotation. In this example, you can name the query `Filtering` as follows.@info(name = 'Filtering2233')
insert into Room2233AnalysisStream
select *
from InputTempStream [roomNo=='2233']
The saved stream application is as follows:
@App:name("TemperatureApp")
@App:description("Description of the plan")
@App:qlVersion("2")
CREATE STREAM InputTempStream (deviceID long, roomNo string, temp double);
CREATE STREAM Room2233AnalysisStream WITH (type='stream', stream='Room2233AnalysisStream', map.type='json') (deviceID long, roomNo string, temp double);
@info(name = 'Filtering2233')
select *
from InputTempStream [roomNo=='2233']
insert into Room2233AnalysisStream
Filtering based on regex pattern
You can filter events by providing a condition where only events that match a specific Regex pattern are taken for further processing.
For this purpose, you can use the TemperatureApp stream application that you created in the previous example. However, instead of filtering the readings for a specific room no, you can filter the readings for many rooms of which the room number matches a specific regex pattern.
Assume that you want to filter the temperature readings for a specific rage of rooms located in the Southern wing and used for purpose B. Also assume that this can be derived from the room number because the first three characters of the room no represent the wing, and the eighth character represents the purpose. e.g., in room no SOU5438B765, the first three characters SOU represent the Southern wing, and the eighth character B represents purpose B.
To filter events as described, follow the procedure below.
Open the
TemperatureAppstream application.Create a new query named
FilteredRoomRangeas follows:Add
selectstatement to project the fields:select deviceID, roomNo, tempAdd a
fromclause as follows to get the required events from theInputTempStreamstream.from InputTempStream[regex:find('SOU*B*', roomNo)]Add the
insert toclause as follows to insert the results into a stream namedFilteredResultsStream.insert into FilteredResultsStreamThe completed query is as follows.
@info(name = 'FilteredRoomRange')
insert into FilteredResultsStream
select deviceID, roomNo, temp
from InputTempStream[regex:find('SOU*B*', roomNo)];
Save the stream application.
The completed stream application looks as follows.
@App:name("TemperatureApp1")
@App:description("Description of the plan")
@App:qlVersion("2")
CREATE STREAM InputTempStream (deviceID long, roomNo string, temp double);
CREATE STREAM Room2233AnalysisStream WITH (type='stream', stream='Room2233AnalysisStream', map.type='json') (deviceID long, roomNo string, temp double);
CREATE STREAM FilteredResultsStream WITH (type='stream', stream='FilteredResultsStream', map.type='json') (deviceID long, roomNo string, temp double);
@info(name = 'Filtering2233')
insert into Room2233AnalysisStream
select *
from InputTempStream [roomNo=='2233'];
@info(name = 'FilteredRoomRange')
insert into FilteredResultsStream
select deviceID, roomNo, temp
from InputTempStream[regex:find('SOU*B*', roomNo)];
Filtering based on multiple criteria
For this purpose, you can use the TemperatureApp stream application that you created in the example under Filtering based on exact match of attribute section. However, instead of filtering only readings for room No 2233, assume that you need to filter the readings for a range of rooms (e.g., rooms 100-210) where the temperature is greater than 40. For this, you can update the filter as follows.
[(roomNo >= 100 and roomNo < 210) or temp < 40]
Here, the and logical expression is used to indicate that both the filter conditions provided need to be considered.
Modifying, removing and replacing attributes
The input data may include attributes that are not required in order to generate the required output, attributes with values that need to be updated or replaced before further processing.
Assume that in the previous example, you do not need the device ID for further processing, and you need to remove some unnecessary white spaces from the roomNo before sending the input data for further processing. To do this, follow the procedure below:
Open the
TemperatureAppstream application that you previously created in the Filtering data based on conditions section and start adding a new query. You can name it asCleaningDataas shown below.@info(name = 'CleaningData')Add the
fromclause and enterFilteredResultsStreamas the input stream from which the input data is taken.from FilteredResultsStreamLet's create the
selectstatement as follows.To select only the
roomNoandtempattributes for further processing and remove thedeviceIDattribute, add them as follows.select deviceID, roomNo, tempTo remove the unnecessary white spaces from the room number, add the
trim()function as shown below.str:trim(roomNo) as roomNoNow the completed
selectstatement is as follows.select str:trim(roomNo) as roomNo, temp
Insert the results into an output stream as follows.
insert into CleansedDataStreamThe completed query is as follows:
@info(name = 'CleaningData')
insert into CleansedDataStream
select deviceID, str:trim(roomNo) as roomNo, temp
from FilteredResultsStream;
Modifying and replacing is also demonstrated in the Enriching Data and Transforming Data pages.
Handling attributes with null values
To understand this section, you can reuse the TemperatureApp stream application that you created in the Filtering data based on conditions.
Assume that some events arrive with null values for the roomNo attribute, and you want to assign the value unknown in such scenarios.
To do this, follow the procedure below:
Start adding a new query to the
TemperatureAppstream application. You can name itAddingMissingValuesas follows.@info(name = 'AddingMissingValues')Add the
fromclause and enterFilteredResultsStreamas the input stream from which the input data is taken.from FilteredResultsStreamnoteHere, we are using the inferred output stream of the previous query as the input stream for this query. As a
result, the changes made via this query are applied to the filtered data.Add the
selectclause. To assignunknownas the value for theroomNoattribute when it has a null value, you need to use theifThenElsefunction as shown below.ifThenElse(roomNo is null, "UNKNOWN", str:trim(roomNo)) as roomNoSelect the
deviceIDandtempattributes can be selected without any changes. The query updated with theselectclause now looks as follows.select deviceID, ifThenElse(roomNo is null, "UNKNOWN", str:trim(roomNo)) as roomNo, tempInsert the results into an output stream as follows.
insert into CleansedDataStreamThe completed query now looks as follows.
@info(name = 'AddingMissingValues')
insert into CleansedDataStream
select deviceID, ifThenElse(roomNo is null, "UNKNOWN", str:trim(roomNo)) as roomNo, temp
from FilteredResultsStream;Save the stream application.