Tutorial: Filtering application

Stream applications can be used to extract information from large data sets so analysis on relevant information is performed.

About this task

Suppose you wanted to know the highest and lowest trading price for IBM® stocks for a specific day. To determine this, you can write a stream application to filter the stock transaction data to process only the IBM® transaction records, and then process the IBM® transaction records to find the highest and lowest trading price for that day.

Procedure

  1. Reading data from a source file
  2. Filtering large data sets
  3. Analyzing the subset of data
  4. Combining the operators into a graph
  5. Testing the application