Developing a simple application

Companies build stream applications when they need to extract information from large data sets so that they can analyze only the information that is relevant to them.

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