Jump to content

Esper (software)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Bernhardttom (talk | contribs) at 16:36, 25 September 2015 (Codehaus open source software hosting has shut down and there is a new project web site for Esper). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Esper_(software)
Developer(s)EsperTech Inc.
Stable release
5.2.0 / March 3, 2015; 9 years ago (2015-03-03)
Repository
Written inJava, C#
Operating systemCross-platform
TypeComplex Event Processing
LicenseGPL v2
Websitehttp://www.espertech.com/esper

Esper is an open-source Java-based software product for Complex event processing (CEP) and Event stream processing (ESP), that analyzes series of events for deriving conclusions from them.

Esper extends the SQL-92 standard for its engine and enterprise framework, providing Aggregate function, Pattern matching, event windowing and joining. Esper implements Event-driven programming and event-driven architecture.

Esper was created in 2006 by EsperTech Inc. It offers a Domain-specific language for processing events called Event Processing Language (EPL). EPL is a Declarative programming language for analyzing time-based event data and detecting situations as they occur.

Esper is a Java-based application but has been ported to the C# programming language and is available for the .NET Framework under the name NEsper.

EsperTech Inc. provides Esper Enterprise Edition[1] with enterprise-ability features.

Example

This example[2] illustrates a simple EPL query that outputs a row immediately when within a sliding window of 3 minutes the number of order events reaches 5 or more events.

select count(*) from OrderEvent.win:time(3 min) having count(*) >= 5

See also

References

  1. ^ "Esper Enterprise Edition". Espertech.com. Retrieved 2015-03-08.
  2. ^ "Page Redirection". www.espertech.com/esper. Retrieved 2015-03-08.