Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Stardust/Knowledge Base/Performance Tuning/Achieving high Throughput with transient Processes"

(Hibernate Initially)
(Using Hazelcast as the object provider)
Line 86: Line 86:
 
The attached Process Model contains a few more scenarios. The reader is encouraged to try these out as well. Additional scenarios covering SubProcesses, Splits, JMS and Mail applications are not covered in this article.  
 
The attached Process Model contains a few more scenarios. The reader is encouraged to try these out as well. Additional scenarios covering SubProcesses, Splits, JMS and Mail applications are not covered in this article.  
  
 +
 +
=== Abort Process ===
 +
 +
 +
We next execute the process “Transient Process with Self Abort”. The "Generate Exception" activity generates a RuntimeException. An Event Action is set to abort the process when the exception is raised (Figure 15 below).
 +
[[File:Stardust Knowledge Base Performance Tuning Transient15.png|center|
 +
Event Action set to Abort Process on Activity Generate Exception]]<br />Figure 15: Event Action set to Abort Process on Activity Generate Exception<br />
 +
 +
The log file indicates that the persistence mode has changed to “Immediate” after the occurrence of the RuntimeException (Figure 16 below). The Event Action causes the activity and its associated process instance to be aborted..[[File:Stardust Knowledge Base Performance Tuning Transient16.png|center|Server log indicating switch from Transient to Immediate persistence for Process Abortion]]<br />Figure 16: Server log indicating switch from Transient to Immediate persistence for Process Abortion<br />
 +
The associated tables in the AuditTrail are also populated with data pertaining to this Process Instance and the activities executed within it.
 +
[[File:Stardust Knowledge Base Performance Tuning Transient17.png|center|Activity Instance and Process Instance tables after Process Abortion]]<br />
 +
[[File:Stardust Knowledge Base Performance Tuning Transient14_1.png|center|Activity Instance and Process Instance tables after Process Abortion]]<br />
 +
Figure 17: Activity Instance and Process Instance tables after Process Abortion<br />
  
 
== Using Hazelcast as the object provider ==
 
== Using Hazelcast as the object provider ==
 
 
Hazelcast can be used as an in-memory cache and a distributed object provider with Stardust. This wouldrequire us to replace our simple ClusterSafeObjectProvider implementation (Figure 3) with the one provided by Hazelcast. Additional information on Hazelcast integration is available here.The following procedure describes the steps required to achieve this:
 
Hazelcast can be used as an in-memory cache and a distributed object provider with Stardust. This wouldrequire us to replace our simple ClusterSafeObjectProvider implementation (Figure 3) with the one provided by Hazelcast. Additional information on Hazelcast integration is available here.The following procedure describes the steps required to achieve this:
 
1.      Add the following entries to your carnot.properties
 
1.      Add the following entries to your carnot.properties
<Infinity.Engine.Caching = true (not required for transient processes but enabled cross-transaction entity caching).
+
<source lang="text">
 +
Infinity.Engine.Caching = true (not required for transient processes but enabled cross-transaction entity caching).
 +
</source>
 
Carnot.Engine.Hazelcast.JcaConnectionFactoryProvider=org.eclipse.stardust.engine.spring.integration.jca.SpringAppContextHazelcastJcaConnectionFactoryProvider
 
Carnot.Engine.Hazelcast.JcaConnectionFactoryProvider=org.eclipse.stardust.engine.spring.integration.jca.SpringAppContextHazelcastJcaConnectionFactoryProvider
 
   
 
   
Line 102: Line 116:
 
   
 
   
 
With these settings youare now ready to use Hazelcast with Stardust for execution of transientprocesses.
 
With these settings youare now ready to use Hazelcast with Stardust for execution of transientprocesses.
 
=== Abort Process ===
 
 
 
We next execute the process “Transient Process with Self Abort”. The "Generate Exception" activity generates a RuntimeException. An Event Action is set to abort the process when the exception is raised (Figure 15 below).
 
[[File:Stardust Knowledge Base Performance Tuning Transient15.png|center|
 
Event Action set to Abort Process on Activity Generate Exception]]<br />Figure 15: Event Action set to Abort Process on Activity Generate Exception<br />
 
 
The log file indicates that the persistence mode has changed to “Immediate” after the occurrence of the RuntimeException (Figure 16 below). The Event Action causes the activity and its associated process instance to be aborted..[[File:Stardust Knowledge Base Performance Tuning Transient16.png|center|Server log indicating switch from Transient to Immediate persistence for Process Abortion]]<br />Figure 16: Server log indicating switch from Transient to Immediate persistence for Process Abortion<br />
 
The associated tables in the AuditTrail are also populated with data pertaining to this Process Instance and the activities executed within it.
 
[[File:Stardust Knowledge Base Performance Tuning Transient17.png|center|Activity Instance and Process Instance tables after Process Abortion]]<br />
 
[[File:Stardust Knowledge Base Performance Tuning Transient14_1.png|center|Activity Instance and Process Instance tables after Process Abortion]]<br />
 
Figure 17: Activity Instance and Process Instance tables after Process Abortion<br />
 

Revision as of 01:26, 11 December 2013

Introduction

Traditionally, BPM systems have been employed in designing Human-centric or Case Management type process flows. Such processes rely on the Audit Trail capabilities of the underlying BPM solution. While Stardust already provides good support for such processes, it is also capable of supporting integration workflows. Here, it acts as a routing and transformation engine to orchestrate a process flow. In such cases the need for low latency and high throughput takes precedence over Audit Trail data persistence.

Transient Processes provide the following advantages:

  • Very little communication with the database.
  • All runtime process data is kept in memory for the lifetime of the Process Instance.
  • Optimized for low latency
  • Significantly higher throughput

Additional information about Transient Processes is available here. All artifacts referred to in the following discussion can be downloaded from here.

Example

We use the following example to start off our discussion on Transient Processes (see Figure 1 below).

Figure 1: Example Transient Process

Figure 1: Example Transient Process


As shown above, the process consists of a couple of activities each of which invokes a POJO with a couple of In/Out parameters. Ordinarily this data would be persisted to the AuditTrail during process execution and the process history would display the execution sequence if one were to view this information in the Portal. To mark the process as transient we select the corresponding property in the Process Properties dialog box (see Figure 2 below).

Figure 2: Process Properties for Transient Process

Figure 2: Process Properties for Transient Process

To ensure that this property is used by the Stardust engine at runtime we need to set the “SupportTransientProcesses” property in the carnot.properties file. We also need to ensure that the database we use supports sequences (such as Oracle). For this discussion we will use MySQL as our AuditTrail database. To enable support for sequences in MySQL we are required to do the following:

1. Create a compatible Stardust AuditTrail schema Create a MySQL database and run the sysconsole command as follows to create an AuditTrail that supports sequences:

sysconsole -v -r com.mysql.jdbc.Driver -dbschema <schema_name> -t mysql_seq -l jdbc:mysql://<servername>:<port>/<dbname> 
-d <username>-s <password> -p sysop createschema

Note that the dbtype option is set to "mysql_seq". Additional information on creating an AuditTrail on MySQL is available here. To learn more about the sysconsole command please refer to the Stardust documentation.

2. Set the appropriate database properties in carnot.properties Add/Edit the following entries to carnot.properties:

AuditTrail.Type = MYSQL_SEQ
AuditTrail.DriverClass = com.mysql.jdbc.Driver
AuditTrail.URL = jdbc:mysql://<servername>:<port>/<dbname>
AuditTrail.Schema = <dbname>
AuditTrail.User = <username>
AuditTrail.Password = <password>

The URL, Schema, User and Password entries should match the values provided in the sysconsole command above.

3. Provide an implementation of a ClusterSafeObjectProviderHolder. This is required by the Stardust engine to share objects internally. A simple implementation is provided below:

Figure 3: Custom ClusterSafeObjectProvider implementation


Figure 3: Custom ClusterSafeObjectProvider implementation
Add the following line to your carnot.properties entry so that the Stardust engine can use your implementation at runtime:

Carnot.Engine.Tuning.SupportTransientProcesses.ClusterSafeObjectProvider = com.test.CustomObjectProvider

We now have a basic setup in place to support Transient Processes. Let us go ahead and deploy the process model described above. Since the process has a manual trigger we execute it from the Portal a few times and verify from the logs that the process has executed. Sample output from a process run is shown below:

Figure 4: Sample log output for a process run transiently


Figure 4: Sample log output for a process run transiently
The log file indicates that Process Instance 101 was executed successfully and Activity Instances 101 and 102 were completed in this process context. However we cannot locate this process when we search for it in the Portal (Figure 5 below) or query the AuditTrail process execution tables (activity_instance, process_instance etc.).

Process information is not available in the Portal

Figure 5: Process Information is not available in the Portal

AuditTrail Persistence Scenarios

In this section we identify scenarios that cause the Stardust engine to switch from “Transient”to “Immediate” persistence indicating that process data will be written to the AuditTrail. Note that we do not discuss all such scenarios. The reader is encouraged to refer to the documentation and explore further with this background information.

Manual Activity

We start off by adding a manual activity to the process flow and study the difference in behaviour (process “Transient Process With Manual Activity” in attached model) (Figure 6 below).

Transient Process with Manual Activity

Figure 6: Transient Process with Manual Activity

The log file output reveals that the Process Instance did execute until the manual activityat which point it switched the persistence mode from “Transient” to “Immediate” (Figure 7 below).

Server log indicating switch from Transient to Immediate persistence for Manual Activity

Figure 7: Server log indicating switch from Transient to Immediate persistence for Manual Activity

The associated tables in the AuditTrail are also populated with data pertaining to this Process Instances and the activities executed thus far (the first application activity and the manual activity following it).

Activity_Instance and Process_Instance tables after switching to Immediate Persistence

Activity_Instance and Process_Instance tables after switching to Immediate Persistence

Figure 8: Activity_Instance and Process_Instance tables after switching to Immediate Persistence

Runtime Exception

We execute another process that throws a RuntimeException (process “Transient Process with Runtime Exception” in attached model) (Figure 9 below).
Transient Process that throws a Runtime Exception

Figure 9: Transient Process that throws a Runtime Exception
The log file output reveals that the Process Instance did execute transiently until the Runtime Exception occurred at which point it switched the persistence mode from “Transient” to “Immediate”(Figure 10 below).
Server log indicating switch from Transient to Immediate persistence for Runtime Exception

Figure 10: Server log indicating switch from Transient to Immediate persistence for Runtime Exception

The associated tables in the AuditTrail are also populated with data pertaining to this Process Instances and the activities executed thus far (the three application activities).

Activity Instance and Process Instance tables after Runtime Exception occurs

Activity Instance and Process Instance tables after Runtime Exception occurs

Figure 11: Activity Instance and Process Instance tables after Runtime Exception occurs

Hibernate Initially

Next, we execute the process “Transient Process with Hibernate Initially”. The process is identical to the one in Figure 6 above except for the “Hibernate Initially” flag which is set to true for the activity “Call Second POJO” (Figure 12 below).
The “Hibernate Initially” flag is set to true for Activity “Call Second POJO”

Figure 12: The “Hibernate Initially” flag is set to true for Activity “Call Second POJO”
As expected the log file output reveals that the persistence mode has changed to “Immediate” (Figure 13 below).
Server log indicating switch from Transient to Immediate persistence for Hibernated activity

Figure 13: Server log indicating switch from Transient to Immediate persistence for Hibernated activity
The associated tables in the AuditTrail are also populated with data pertaining to thisProcess Instances and the activities executed (the two application activities).
Activity Instance and Process Instance tables after Activity Hibernation

Activity Instance and Process Instance tables after Activity Hibernation

Figure 14: Activity Instance and Process Instance tables after Activity Hibernation

The attached Process Model contains a few more scenarios. The reader is encouraged to try these out as well. Additional scenarios covering SubProcesses, Splits, JMS and Mail applications are not covered in this article.


Abort Process

We next execute the process “Transient Process with Self Abort”. The "Generate Exception" activity generates a RuntimeException. An Event Action is set to abort the process when the exception is raised (Figure 15 below).

Event Action set to Abort Process on Activity Generate Exception

Figure 15: Event Action set to Abort Process on Activity Generate Exception
The log file indicates that the persistence mode has changed to “Immediate” after the occurrence of the RuntimeException (Figure 16 below). The Event Action causes the activity and its associated process instance to be aborted..
Server log indicating switch from Transient to Immediate persistence for Process Abortion

Figure 16: Server log indicating switch from Transient to Immediate persistence for Process Abortion

The associated tables in the AuditTrail are also populated with data pertaining to this Process Instance and the activities executed within it.

Activity Instance and Process Instance tables after Process Abortion

Activity Instance and Process Instance tables after Process Abortion

Figure 17: Activity Instance and Process Instance tables after Process Abortion

Using Hazelcast as the object provider

Hazelcast can be used as an in-memory cache and a distributed object provider with Stardust. This wouldrequire us to replace our simple ClusterSafeObjectProvider implementation (Figure 3) with the one provided by Hazelcast. Additional information on Hazelcast integration is available here.The following procedure describes the steps required to achieve this: 1. Add the following entries to your carnot.properties

Infinity.Engine.Caching = true (not required for transient processes but enabled cross-transaction entity caching).

Carnot.Engine.Hazelcast.JcaConnectionFactoryProvider=org.eclipse.stardust.engine.spring.integration.jca.SpringAppContextHazelcastJcaConnectionFactoryProvider

(comment out the ClusterSafeObjectProvider propertymentioned above if added)

2. Addthe following jars to the classpath of your web application: hazelcast-2.4.jar hazelcast-ra-2.4-stardust01.jar Add a filecalled hazelcast-context.xml in the same location as yourcarnot-spring-context.xml file. The contents of this file are provided in theHazelcast documentation link mentioned above.

With these settings youare now ready to use Hazelcast with Stardust for execution of transientprocesses.

Back to the top