Application Development Guide

     Previous  Next    Open TOC in new window    View as PDF - New Window  Get Adobe Reader - New Window
Content starts here

Using the Load Generator to Test Your Application

This section contains information on the following subjects:

 


Overview of the Load Generator Utility

The load generator is a simple utility provided by Oracle Complex Event Processing (or Oracle CEP for short ) to simulate a data feed. The utility is useful for testing the EPL rules in your application without needing to connect to a real-world data feed.

The load generator reads an ASCII file that contains the sample data feed information and sends each data item to the configured port. The load generator reads items from the sample data file in order and inserts them into the stream, looping around to the beginning of the data file when it reaches the end; this ensures that a continuous stream of data is available, regardless of the number of data items in the file. You can configure the rate of sent data, from the rate at which it starts, the final rate, and how long it takes the load generator to ramp up to the final rate.

In your application, you must use the Oracle CEP-provided csvgen adapter, rather than your own adapter, to read the incoming data; this is because the csvgen adapter is specifically coded to decipher the data packets generated by the load generator.

To use the load generator, follow these steps:

  1. Optionally create a property file that contains configuration properties for particular run of the load generator; these properties specify the location of the file that contains simulated data, the port to which the generator feeds the data, and so on.
  2. Oracle CEP provides a default property file you can use if the default property values are adequate.

    See Creating a Load Generator Property File.

  3. Create a file that contains the actual data feed values.
  4. See Creating a Data Feed File.

  5. Configure the csvgen adapter so that it correctly reads the data feed generated by the load generator. You configure the adapter in the EPN assembly file that describes your Oracle CEP application.
  6. See Configuring the csvgen Adapter in Your Application.

  7. Be sure that you configure a builder factory for creating your event types. Although specifying event type builder factories is typically an optional task, it is required when using the load generator.
  8. See Creating the Event Types for details.

  9. 0pen a new command window and set your environment as described in Setting Up Your Development Environment.
  10. Change to the ORACLE_CEP_HOME\ocep_10.3\utils\load-generator directory, where ORACLE_CEP_HOME refers to the main Oracle CEP installation directory, such as d:\oracle_cep.
  11. Run the load generator specifying the properties file you created in step 1 to begin the simulated data feed. For example, if the name of your properties file is c:\loadgen\myDataFeed.prop, execute the following command:
  12. prompt> runloadgen.cmd c:\loadgen\myDataFeed.prop

If you redploy your application, you must also restart the load generator.

 


Creating a Load Generator Property File

The load generator uses an ASCII properties file for its configuration purposes. Properties include the location of the file that contains the sample data feed values, the port to which the utility should send the data feed, and so on.

Oracle CEP provides a default properties file called csvgen.prop, located in the ORACLE_CEP_HOME\ocep_10.3\utils\load-generator directory, where ORACLE_CEP_HOME refers to the main Oracle CEP installation directory, such as d:\oracle_cep.

The format of the file is simple: each property-value pair is on its own line. The following example shows the default csvgen.prop file; Oracle recommends you use this file as template for your own property file:

  test.csvDataFile=test.csv
test.port=9001
test.packetType=CSV
test.mode=client
test.senders=1
test.latencyStats=false
test.statInterval=2000
WARNING: If you create your own properties file, you must include the test.packetType, test.mode, test.senders, test.latencyStats, and test.statInterval properties exactly as shown above.

In the preceding sample properties file, the file that contains the sample data is called test.csv and is located in the same directory as the properties file. The load generator will send the data feed to port 9001.

The following table lists the additional properties you can set in your properties file.

Table 11-1 Load Generator Properties
Property
Description
Data Type
Required?
test.csvDataFile
Specifies the file that contains the data feed values.
String
Yes.
test.port
The port number to which the load generator should send the data feed.
Integer
Yes.
test.secs
Total duration of the load generator run, in seconds.
The default value is 30.
Integer
No.
test.rate
Final data rate, in messages per second.
The default value is 1.
Integer
No.
test.startRate
Initial data rate, in messages per second.
The default value is 1.
Integer
No.
test.rampUpSecs
Number of seconds to ramp up from test.startRate to test.rate.
The default value is 0.
Integer
No.

 


Creating a Data Feed File

The file that contains the sample data feed values correspond to the event type registered for your Oracle CEP application. The file follows a simple format:

The following example shows a sample data feed file where each item corresponds to a person with name, age, and birthplace fields:

 Lucy,23,Madagascar
Nick,44,Canada
Amanda,12,Malaysia
Juliet,43,Spain
Horatio,80,Argentina

 


Configuring the csvgen Adapter in Your Application

You must use the csvgen adapter in your application because this Oracle CEP-provided adapter is specifically coded to read the data packets generated by the load generator.

You register the csvgen adapter using the <wlevs:adapter> tag in the EPN assembly file of your application, as with all adapters. Use the provider="csvgen" attribute to specify that the provider is the csvgen adapter, rather than your own adapter. Additionally, you must specify the following child tags:

Before showing an example of how to configure the adapter, first assume that your application registers an event type called PersonType in the EPN assembly file using the <wlevs:metada> method as shown:

    <wlevs:event-type-repository>
<wlevs:event-type type-name="PersonType">
<wlevs:metadata>
<entry key="name" value="java.lang.String"/>
<entry key="age" value="java.lang.Integer"/>
<entry key="birthplace" value="java.lang.String"/>
</wlevs:metadata>
</wlevs:event-type>
</wlevs:event-type-repository>

This event type corresponds to the data feed file shown in Creating a Data Feed File.

To configure the csvgen adapter that receives this data, use the following <wlevs:adapter> tag:

<wlevs:adapter id="csvgenAdapter" provider="csvgen">
<wlevs:instance-property name="port" value="9001"/>
<wlevs:instance-property name="eventTypeName" value="PersonType"/>
<wlevs:instance-property name="eventPropertyNames"
value="name,age,birthplace"/>
</wlevs:adapter>

Note how the bolded values in the adapter configuration example correspond to the PersonType event type registration.

If you use <wlevs:class> to specify your own JavaBean when registering the event type, then the eventPropertyNames value corresponds to the JavaBean properties. For example, if your JavaBean has a getName() method, then one of the properties of your JavaBean is name.


  Back to Top       Previous  Next