Apama Documentation : Deploying and Managing Apama Applications : Deploying and Managing Queries : Query application architecture
Query application architecture
In a query deployment, incoming events are delivered to correlators, typically via a JMS message bus, such that every event is delivered to one correlator. The correlators store the event history for each query in BigMemory, a distributed cache. On every event, one correlator reads the latest history for the partition or partitions to which the event belongs, and writes that event to the distributed cache for access by other correlators. The entire window history is then evaluated against the query patterns.
Queries can make use of the following technologies to provide a scalable platform:
*JMS queues — these are used to distribute events to multiple correlators, which automatically spreads the load across a number of servers.
*BigMemory distributed cache — this allows state (event history) to be accessed quickly across multiple servers, and replicated to safeguard against hardware failures. This should be configured to give the desired amount of resiliency and scaled appropriately to the deployment.
It is possible to use Apama queries in a standalone mode on a single correlator. This allows easy testing by means of event files. However, all state is stored in-memory, and is lost when the correlator is stopped. Thus, this mode is only recommended for development, not for deployments.
When an event is sent to a cluster of correlators over a JMS queue, this is what happens:
1. Each event goes to one correlator.
2. A received event is handled by one of several processing threads within that correlator.
3. The key of the event is extracted based on the definitions of running queries that use that event.
4. The window of events for that key value is retrieved from the distributed cache.
5. The current event is added to the retrieved window, which is written back to the cache.
6. The event pattern of interest (what you are looking for) is evaluated against the stored window to determine whether there is a match.
Because events are sent to multiple threads in different correlators, small differences in timing across hosts can result in events being processed out of order. If there are a large number of events in the window, the cost of reading and writing the historic window will be excessive. Events for the same key may be processed by different correlators. Consequently, between events, the only state kept by the system is the window of historic event data.
Upon matching an event pattern, queries may send events to other monitors or to adapters. These can be shared adapters across the cluster, or more typically, adapters local to each correlator.
Copyright © 2013-2017 Software AG, Darmstadt, Germany. (Innovation Release)

Product LogoContact Support   |   Community   |   Feedback