Many businesses actively monitor data streams and application messages using existing systems to detect business events or situations and take time-critical actions. These existing systems include databases and sensor networks, along with systems for publication-subscription, integration, monitoring, and business intelligence. However, these existing systems are neither scalable nor efficient to handle complex event processing such as required by high-volume continuous data streams.
Some existing systems are centered around a pull model in which data is first stored and then queried. In such systems, all incoming data is first stored in memory (e.g., local trace files on disk) which reduces the performance (e.g., only a few thousand events per second may be processed). Such existing systems provide no considerations for data from different sources arriving with different latency.
Other existing systems use stateless filters to process streams of data. In such systems, the filters operate on each message from the data stream but do not store any information from one message to the next. As such, these systems cannot be used to make conclusions about a particular sequence of received messages.
Some existing systems rely on relational algebra to mathematically describe data manipulation. The Structured Query Language (SQL), for example, is a higher-level form of relational algebra implemented in a pull model. In such a model, a query is translated into relational algebra operators. A SQL optimizer may re-order the operators using different permutations to identify a semantically equivalent expression that produces the desired result with the least processing. This expression is referred to as a query execution plan. Incoming data is processed according to this query execution plan.
Functional operators implementing relational algebra, however, are not suited to manipulating high-volume, continuous stream data in real-time. Additionally, the semantics of SQL queries over streaming data is vague. By first storing all the data, processing performance of SQL queries is limited due to the disk input/output of the hardware storing the data to be queried. Additionally, SQL installations cannot be cascaded for distributed processing. This results in a system that cannot operate on high-volume data streams in real-time.
Embodiments include a machine for use with a plurality of destination machines for processing high-volume continuous streams of data while maintaining minimal state information associated with the data. A subscriber processor is configured to execute computer executable instructions for defining an object to include an expression. The expression represents a function to be performed on events from an event stream. An abstract syntax tree corresponding to the object is generated. The generated abstract syntax tree is serialized into a message. The message representing the object is sent to one of the plurality of destination machines. The sent message is configured for use by the one destination machine for compiling the expression from the abstract syntax tree into executable code which is executable by the one destination machine on events received from the event stream.
Embodiments include a computer executable method for use with a plurality of destination machines for processing high-volume continuous streams of data while maintaining minimal state information associated with the data. The computer executable method is for use with a subscriber processor configured to execute computer executable instructions. The computer executable method comprises:
defining by the subscriber processor an object to include an expression, the expression representing a function to be performed on events from an event stream;
This summary is provided to introduce a selection of concepts in a simplified form that are further described below in the Detailed Description. This Summary is not intended to identify key features or essential features of the claimed subject matter, nor is it intended to be used as an aid in determining the scope of the claimed subject matter.
Other features will be in part apparent and in part pointed out hereinafter.
Corresponding reference characters indicate corresponding parts throughout the drawings.
Aspects of embodiments process high-volume continuous streams of data using a stream algebra to represent and manipulate events. One embodiment includes one or more movable or distributed stream algebra operators for use in building distributed stream-processing operator graphs, execution plans, execution plan graphs, or the like. The operators process class instances (e.g., events) according to the operator graphs. The class instances become messages when sent over a communications network. Aspects of embodiments operate on a platform for massive volume, distributed processing of event and message streams to support real-time analysis of the event and message streams. For example, users may wish to monitor low level streams of data about point of sale transactions or the addition of goods into a supply chain to make high-level inferences such as the detection of fraud.
In another example,
In an embodiment, the stream algebra operators include funclets (e.g., small functions or classes such as in the C# programming language) which consume and produce streams of classes. While aspects of embodiments may be described with reference to version 3.0 of the C# programming language, embodiments of embodiments are operable with any current or future programming language that has support for the features described herein such as expression and query. Similarly, while aspects of embodiments may be described with reference to the Microsoft Corp. brand web services technology .NET, embodiments are operable with any web service information technology architecture. For example, embodiments may be implemented in lower levels of the protocol stack, unmanaged code, embedded devices or hardware, and the like.
Embodiments react to events as the events occur, handle events from different sources arriving with different latency and clock offsets, and efficiently maintain a state of the transformations by discarding information that does not need to be stored thus allowing for correct semantics and continuous operation at very high volumes. Aspects of embodiments represent an extension of relational algebra with time to process continuous, high-volume streams of data with movable operators and minimal state. The operators in the graph may share common subexpressions, may be re-ordered for efficiency, and may be placed on distributed machines (e.g., configuring the graph). The output is independent of internal wire latencies and order of processing. In an embodiment, the operators are extremely efficient at runtime because they get compiled into intermediate language (IL) code. In an embodiment, only the state necessary to provide causality reasoning or query-specific data is maintained to enable the system to process a sequence of messages.
In an embodiment, a data stream is modeled as a time varying relation. Each tuple in the relation is an event and has an identifier (ID). Each tuple also has a validity interval which indicates the range of time when the tuple is valid from an event provider's perspective. Given the interval representation of each event, it is possible to issue the following continuous query: “at each time instance t, return all tuples that are still valid at t.” After an event initially appears in the stream, its validity interval may be changed by the event provider.
Referring next to
In an embodiment, events inherit from the following header:
The properties in the exemplary data structure corresponding to an event are shown in Table 2 below.
An insert event means that the distributed system has learned something new. An example is an offer to buy or sell stock at given limit price. StartValidTime represents the time of the occurrence of the event (e.g., the time the order was created). EndValidTime represents an expiration time for all consequences of the event. Once the time moves past EndValidTime, the system discards all the state associated with or resulting from this event. This feature, which enables the system to automatically forget data, allows the system to achieve sustainable performance on continuous streams.
A delete event means that something the system knew about the external world is no longer true. For example, if the order was created at 10:00 am and was valid until 11:00 am, a delete event with StartValidTime=10:30 am and RootTime=10:00 am tells the system that the validity interval of the order was shortened from one hour to 30 minutes. The delete event effectively deletes part of the validity interval of the original event. Delete events shorten the original validity interval. Once the validity interval is shortened, the event may be discarded from the state of the operators depending on the current time.
A clock increment event is fired when the application time moves forward. This means that the source host executable guarantees that there will be no more events with earlier StartTime than the StartTime of the clock increment event. This is used by the operators to discard unnecessary state and detect timeouts. Clock Increment events may be fired at regular intervals much like heartbeat events thus moving time forward, unblocking events from the state of the operators, and causing expired events to be discarded.
The payload is added to the insert and delete events by defining an Event<T> such as shown below.
Operators include small functions that process streams of events. A set of composable operators are stored in a memory area and combined to form a pipelined query execution plan or other distributed stream processing operator graph. Each of the operators is adapted to perform one or more functions on data events from an event stream. The query semantics are defined on the information obtained from event providers. An exemplary operator 302 is shown in
Referring next to
Referring next to
If the event is Clock Increment, the operator cleans its computation state at 458 and determines whether output events should be fired. For example, an anti-semi-join operator fires an output event at 456 indicating non-occurrence of matching event in given time window. The Clock Increment event is also sent as output to let downstream operators (e.g., subsequent operators in the execution plan) clean up their computation state.
In another form, a flow chart such as shown in
One or more of the stream algebra operators are executed at 414 according to the defined execution plan and as a function of the operator semantics from the received query to find a match between the first event and the second event prior to expiration of the first event based on the assigned expiration time associated with the first event. If the second event does not match the first event at 414, the method discards the second event and continues to wait until another second event is received at 412. If the second event matches the first event at 414, the first and second events are combined at 416 to produce a third event which is then processed at 418 according to the remainder of the execution plan.
Referring next to
A user, process, or other entity instantiates a subscriber client executable (subscriberclient.exe) 504. The subscriber client executable 504 is responsible for responding to the query. The subscriber client executable 504 instantiates a subscriber event node 516 and submits configuration data (e.g., query information) to the source event node 502. For example, the query information may indicate that the average response time per method is desired.
A compiler translates the high-level representation of the query into an execution plan. The compiler may be associated with or otherwise accessible to the subscriber client executable 504. In an embodiment, the execution plan corresponding to the desired query tracks the timestamps before and after execution of each method of interest, then calculates the individual request duration (e.g., Join 522) and maintains an aggregate view 526 via an aggregate operator 524. The subscriber client executable 504 serializes a portion of the execution plan for transmittal to the source host executable 502 via the configuration channel 512 and endpoint or other communication means. The subscriber event node 516 completes implementation of the execution plan by using operators, in this particular example, for performing aggregation and view maintenance. The subscriber event node 516 also exposes a channel 514 and endpoint or establishes another communication with the source event node 510 to receive intermediate results from the source event node 510 once the source event node 510 begins generating data for the subscriber event node 516.
In an embodiment (not shown), the subscriber client executable 504 has configuration channels open with a plurality of source host executables 502 (e.g., each instance of the stock service 508). In such an embodiment, the subscriber client executable 504 sends the serialized portion of the execution plan to each of the plurality of source host executables 502 by multi-casting. Alternatively or in addition, the subscriber client executable 504 configures each of the plurality of source host executables 502 individually.
Upon receiving the execution plan, the source event node 510 associated with the interceptor behavior software 506 creates or instantiates operators to implement the portion of the execution plan received from the subscriber client executable 504. In the example of
In another embodiment (not shown), an operator currently being executed may be re-distributed by pausing execution of the operator, storing state information maintained by the operator, and sending the operator logic and stored state information to another computing device or host for execution.
At this point, the system as illustrated in
In operation, a client executable (client.exe) 528 sends requests to the source host executable 502 (e.g., methods or services such as GetQuote and BuyStock). For each request, a timestamp (e.g., DateTime.UtcNow) is generated before the service is executed. The timestamp is encapsulated into an event (e.g., a first event) that is pushed into the join operator 518. The event is inserted in a corresponding data structure maintained by the join operator 518 (e.g., a hash table). The join operator 518 does not produce output at this point because there is nothing from the other input to the join operator 518 (e.g., a response from the stock service 508).
The stock service 508 executes the requested method or service. Before a response is sent from the stock service 508, a timestamp is generated and encapsulated into an event (e.g., a second event). To ensure the semantics are the same independent of network latencies, only timestamps given by the source event node 510 are used. The second event is pushed into the join operator 518. If this event matches the event previously pushed into the join operator 518 (e.g., the second event matches the first event), the join operator 518 produces an output event (e.g., a third event) which is pushed in the aggregate operator 520. The aggregate operator 520 in this example is configured to accumulate totals over a given interval (e.g., one per minute) for the particular source host executable 502 and then produce a summary message for transmission to the subscriber client executable 504 over the channel 514 for intermediate results. An exemplary summary message is shown in Table 1 above.
The subscriber event node 516 receives the summary message and pushes the message through the rest of the execution plan. In an embodiment in which the subscriber event node 516 communicates with a plurality of source host executables 502, the subscriber event node 516 may be said to perform global aggregation while the source event node 510 is said to perform local aggregation. Local aggregation is operationally “cheaper” than sending each event to the subscriber client executable 504. In this manner, the source event nodes 510 act as computed performance counters without code modification.
In the example of
From a user perspective, the user installed the interceptor behavior software 506, changed the configuration of the stock service 508 to communicate through the interceptor behavior software 506, and formulated a query. In contrast with existing systems, the user did not have to generate any software code, did not have to use a database, and did not have to access log files. The system illustrated in
Referring next to
The “Response” input stream has payload schema {Guid InResponseTo}. Its lifetime is set to δ (one chronon length) via an alter lifetime operator 610 which instructs the following operators in the execution plan not to store this event at all. Both streams are fed to the next join operator 612. Once a Request event matches one of the Response events, a third event is created and assigned an expiration time via an alter lifetime operator 614. The duration for an individual request may be calculated via the projection operator 616.
In an embodiment (not shown), the projection operator 616 is bundled with the join operator 612 for simplicity. Because the projection operator 616 does not change the validity interval of the event, the projection operator 616 may be moved before the AlterLifetime operator 614 and the result is the same.
A group apply operator 618 partitions the stream on MethodName. This means that an instance of the internal graph of operators is created for each unique name. All subsequent events for this name will be sent to the same branch. Aggregation is used in each branch to calculate the total time and count for each distinct name.
Another projection operator 620 calculates an average. The stream is forked for two purposes: the selection operator 622 detects methods that are slow on average and produce notifications while the spool operator 624 maintains a materialized view from which the monitoring application takes snapshots representing the data as of a particular moment in time.
Referring next to
The message is transmitted to the identified destination computing device at 714 to implement the portion of the operator graph represented by the message. In particular, the destination computing device compiles the expression from the AST from the message into executable code representing the operators. The executable code, when executed by the destination computing device, operates on the data events received from the event stream. In an embodiment, aggregated events are produced by the destination computing device and communicated to the subscriber computing device. The subscriber computing device processes the received aggregated events according to the remainder or other portion of the operator graph.
Embodiments are operable with representations of expressions, logic, instructions, or commands other than the AST. For example, embodiments are operable with any directed tree, parse tree, or other framework for representing expressions.
Referring next to
Exemplary class data structures for the XEvent instances and the YEvent instances are shown below.
The operator graph illustrated in
The selection description may be created as shown below.
In this example, (h,p)=>p.x represents a lambda Expression such as in the C# compiler. In this example, h means the EventHeader and p addresses the payload (e.g., XEvent). The lambda expression means the following:
A compiler parses the text of the SelectionDescription including the lambda expression, checks the syntax and types of all involved arguments, generates an abstract syntax tree, and calls the SelectionDescription constructor with the generated abstract syntax tree. The exemplary block diagram of
The compiler produces a partial compilation because the compiler does not generate intermediate language or other assembly language code. Rather, the compiler passes the abstract syntax tree 900 as an object of type expression into the constructor of SelectionDescription. This information is sent to the destination computing device, which completes the compilation of the lambda expression 902 into executable code.
The abstract syntax tree 900, as known in the art, is a representation of one or more functions. As an example, the abstract syntax tree 900 may be described as a directed node tree where leaf nodes represent operands and the other nodes represent operators. The information from the abstract syntax tree 900 is serialized into a message (e.g., a data contract) and sent to a destination computing device for execution (e.g., by a source host executable). In an embodiment, wrappers are provided such as in the _LambdaExpression portion of the code example above enable serialization.
After the information is received on the destination computing device, the runtime operator Selection<T> is instantiated in this example such as shown below.
In this example, the destination computing device finishes compilation by having a constructor take the received description and compile the expression therein into an intermediate language code (IL) fragment or a fragment of another low-level assembly language or other executable code. The IL fragment becomes assembly language which is executed very efficiently on the small in-memory object XEvent.
In embodiments, each operator is reduced to a small set of assembly instructions. This allows for exceptional performance on the order of millions of events processed per second through stateless operators. In an embodiment, each operator represents a thin wrapper around an expression plus small data structures to store the state in a way that is very efficient.
Table 4 below lists exemplary operators for use in embodiments. Embodiments, however, are not limited to the operators listed below. Rather, aspects support other operators and code provided by a user.
In Table 4, the Selection, Projection, Union, and Alterlifetime operators are stateless. The Join, Difference, Anti-SemiJoin, Aggregate, TopN, Align, GroupApply, and Spool operators are stateful.
The operators in Table 4 above discard unnecessary state in response to a clock increment event, and consider validity intervals of the events (e.g., a join operator will join two events only if the intersection of their validity intervals is a non-empty interval. For example, the join operator takes first and second streams of different types, maintains a hash table for each stream, and evaluates a binary expression of type Expression<Func<First,Second,bool>> to find the matches.
Some of the exemplary operators do not completely dissolve. Rather, they also have state-collections such as hash tables. Those collections require memory allocation and searches, so their performance is on the order of hundreds of thousands processed events per second.
Other exemplary operators are referred to as the alter lifetime operator, the align operator, and the group apply operator. The alter lifetime operator is a stateless operator that changes the timestamps. The alter lifetime operator is used, for example, to assign expiration times to the events. The align operator queues the events from multiple streams and releases them in the order of, for example, the StartValidTime value. The group apply operator separates the group semantics from the aggregation. For example, the group apply operator forks a stream on a given partitioning key and executes a graph of operations for each partition.
Any computing device having a processor and access to memory is suitable for use in the other figures illustrated and described herein. The computing device may operate in a networked environment using logical connections to one or more remote computing devices. The logical connections include a local area network (LAN) or a wide area network (WAN), but may also include other networks. LAN and/or WAN may be a wired network, a wireless network, a combination thereof, and so on.
The computing device typically has at least some form of computer readable media. Computer readable media, which include both volatile and nonvolatile media, removable and non-removable media, may be any available medium that may be accessed by the computing device. By way of example and not limitation, computer readable media comprise computer storage media and communication media. Computer storage media include volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information such as computer readable instructions, data structures, program modules or other data. For example, computer storage media include RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DVD) or other optical disk storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium that may be used to store the desired information and that may be accessed by the computing device. Communication media typically embody computer readable instructions, data structures, program modules, or other data in a modulated data signal such as a carrier wave or other transport mechanism and include any information delivery media. Those skilled in the art are familiar with the modulated data signal, which has one or more of its characteristics set or changed in such a manner as to encode information in the signal. Wired media, such as a wired network or direct-wired connection, and wireless media, such as acoustic, RF, infrared, and other wireless media, are examples of communication media. Combinations of any of the above are also included within the scope of computer readable media.
Although described in connection with an exemplary computing system environment, including the computing device, embodiments are operational with numerous other general purpose or special purpose computing system environments or configurations. The computing system environment is not intended to suggest any limitation as to the scope of use or functionality of any aspect. Moreover, the computing system environment should not be interpreted as having any dependency or requirement relating to any one or combination of components illustrated in the exemplary operating environment. Examples of well known computing systems, environments, and/or configurations that may be suitable for use with aspects include, but are not limited to, personal computers, server computers, hand-held or laptop devices, multiprocessor systems, microprocessor-based systems, set top boxes, programmable consumer electronics, mobile telephones, network PCs, minicomputers, mainframe computers, distributed computing environments that include any of the above systems or devices, and the like.
The computer-executable instructions and components described and illustrated herein constitute exemplary means for building the distributed operator graph, exemplary means for generating the expression, and exemplary means for identifying the one or more destination computing devices to host the stream algebra operators.
The order of execution or performance of the operations in embodiments illustrated and described herein is not essential, unless otherwise specified. That is, the operations may be performed in any order, unless otherwise specified, and embodiments may include additional or fewer operations than those disclosed herein. For example, it is contemplated that executing or performing a particular operation before, contemporaneously with, or after another operation is within the scope of aspects.
Embodiments may be implemented with computer-executable instructions executed by one or more computing devices. The computer-executable instructions may be organized into one or more computer-executable components or modules. Generally, program modules include, but are not limited to, routines, programs, objects, components, and data structures that perform particular tasks or implement particular abstract data types. Aspects may be implemented with any number and organization of such components or modules. For example, aspects are not limited to the specific computer-executable instructions or the specific components or modules illustrated in the figures and described herein. Other embodiments may include different computer-executable instructions or components having more or less functionality than illustrated and described herein. Aspects may also be practiced in distributed computing environments where tasks are performed by remote processing devices that are linked through a communications network. In a distributed computing environment, program modules may be located in both local and remote computer storage media including memory storage devices. In operation, a processor such as in the computing device executes computer-executable instructions such as those illustrated in the figures to implement aspects.
When introducing elements of aspects or the embodiments thereof, the articles “a,” “an,” “the,” and “said” are intended to mean that there are one or more of the elements. The terms “comprising,” “including,” and “having” are intended to be inclusive and mean that there may be additional elements other than the listed elements.
Having described aspects in detail, it will be apparent that modifications and variations are possible without departing from the scope of aspects as defined in the appended claims. As various changes could be made in the above constructions, products, and methods without departing from the scope of aspects, it is intended that all matter contained in the above description and shown in the accompanying drawings shall be interpreted as illustrative and not in a limiting sense.
This application is a continuation of U.S. application Ser. No. 12/694,062 filed Jan. 26, 2010, which is a continuation of U.S. application Ser. No. 11/779,574 filed Jul. 18, 2007, priority from which is hereby claimed under 35 U.S.C. §120.
Number | Date | Country | |
---|---|---|---|
Parent | 12694062 | Jan 2010 | US |
Child | 13614184 | US | |
Parent | 11779574 | Jul 2007 | US |
Child | 12694062 | US |