Esper is a lightweight, open-source library for CEP (Complex Event Processing) and ESP (Event Stream Processing) applications developed by EsperTech Inc.

learn more… | top users | synonyms

0
votes
1answer
16 views

Mongo not updating documents that were not in the DB when I launched my server

I'm working with Mongo and Esper in Java. Once I launched the esper server, I start adding documents and in one of my listeners I have to update some of those documents (one per time). The problem is ...
0
votes
0answers
27 views

Remove previous events from Esper

I'm using Esper 4.9.0 and I have the following EPL query: select count(*) as xCount, x from StreamName.win:time_batch(10 sec) group by x order by xCount desc This works fine for the first batch ...
0
votes
0answers
33 views

Esper OHLC and listening for pairs of OHLC

I'm using a slight modification the OHLC example in Esper with PlugInView to create the OHLC bars. I've added the statement, as per the OHLC example (but slight adjustments to take more than just ...
0
votes
1answer
47 views

Does WSO2 CEP with Esper engine support JMS Queues?

I want to send events to WSO2 CEP through ActiveMQ 'Queue'. Also i want to receive events in ActiveMQ 'Queue' processed by WSO2 CEP . I am wondering whether this is possible with Esper Engine ?
0
votes
1answer
45 views

Twitter4j and Esper : throwing error at main java.lang.NoClassDefFoundError

I'm following a tutorial http://www.javacodegeeks.com/2012/03/twitter4j-and-esper-tracking-user.html. But when I'm trying to compile the project it gives me follwoing error: Exception in thread ...
0
votes
1answer
23 views

esper: select from where statement event when no matches in where

I am trying to use a select statement where the values of a field depend on values from 2 windows. Also a where statement is used at the end to filter out event from 1 wiondow. Eg. Select ...
0
votes
1answer
46 views

Should you use the equals method or compare the event type IDs for EventType in Esper?

I am trying to check if two of Esper's EventType objects are equal. By equal I mean that they are the same event types with the same properties. I was wondering what is the best way to do it. Is it ...
-1
votes
1answer
74 views

Esper : get only first event after every delete . . [closed]

Just like the title says, Whenever the contents of a window are deleted I want to receive just the 1st event following deletion. I dont want the first event generated after window creation or ...
0
votes
1answer
42 views

ESPER using csv adapter with POJO

I need some help with esper using csv files as input with csv adapter. I need to use POJO classes and more than 1 csv file. If there is an example that includes the above with listener as well I will ...
0
votes
1answer
58 views

How to pipelined the Map-input-stream as events directly to WSO2-CEP without selecting or using the “Input mapping type”?

I am using WSO2-CEP with Esper(as runtime),Esper processed queries on Map as siddhi on tuples."Input Mapping type" basically declares the type of input conversion required for e.g XML-Mapping: XML to ...
0
votes
1answer
81 views

How should i proceed to achieve persistence with ESPER(with WSO2) in case of failover without using ESPERHA?

I am using WSO2 CEP-Server with esper as backEND-Runtime.WSO2 has provided persistence with siddhi(backEnd-runtime) using cassandra.I need to implement persistence with ESPER-CEP engine. Any thought ...
0
votes
1answer
32 views

Calculate a boolean result to show whether a pair of events were matched or not in Esper

I am trying to create an EPL statement that will show whether an order was successful or not. The statement should match a purchase with a payment, based on an ID of the purchase. The result should ...
0
votes
1answer
45 views

Esper deployment on jboss as 7.X, event type or class name not found

I have developed a java ee project to be deployed on jboss as 7 server. scenario is A java ee project in which ejb module contains execution classes. some of the pojo events are defined in another ...
0
votes
2answers
45 views

How to handle in Esper if the source is sending xml event files with 2 or more different schemas?

public ParseEvents() { String classpathLocation_plm = "com/esper/Resources/dataPkt.xsd"; String classpathLocation_status = "com/esper/Resources/helloPkt.xsd"; URL schemaURL_plm = ...
2
votes
1answer
278 views

Calculating Exponential Moving Average using Esper

Looking for a way to calculate the Exponential Moving Average over a window of 5 EMA5 and EMA20 using Esper (EPL) statements. I have a stream of priceEvent (timeStamp , symbol and price) coming in ...
0
votes
1answer
97 views

Esper When to Know Time Window has ended

In Java Esper I would like to know when exactly has the timer on the time window ended. In other words, for example, in the EPL statement (taken from the esper home page): select avg(price) from ...
1
vote
1answer
74 views

Esper customer based queries well-suited for multiple customers

As I've understood it, Esper is built using Queries to distinguish between what's relevant and not in an incoming event. I'm considering using Esper, but I'm not sure if it's well suited for my ...
1
vote
1answer
68 views

Esper context usage for permission handling

I want to set up viewing permissions for different users in EPL query as follows: Users AllowedView U1 V1,V2 U2 V1,V3 U3 V2,V3 Input Events sequence are as: User View Amount 1. ...
1
vote
2answers
105 views

Tracking a sequence of events using EPL

I am writing a Java-based web server monitor application that should be able to detect whenever a user browse, in a certain time frame, a given set of pages in a particular order. To this end, I am ...
2
votes
1answer
171 views

Esper window usage: Recalculation based on event leaving window

I need somewhat like this. //Create a named window (w1) Create window w1.... //then insert events into window insert into w1.... select amount,..... from.... where... //remove from window on ...
2
votes
1answer
119 views

Esper expression in another epl file

How to distribute expressions in other EPL files? I tried but there are two problems need to see. 1. Any EPL file cannot contain only 'Expression'.('Unexpected end' error) 2. Accessing expression ...
2
votes
0answers
96 views

esper in custom rule engine

I need to implement a rule engine using ESPER For this I have to prepare query for rules (if there is any other optimized way, please suggest). Rules must be declarable as well as modifiable at run ...
1
vote
1answer
49 views

esper controlling event counts

I have used esper to join streams as: Now consider a scenario: 1. Two trades entered into system 2. Price arrived In this scenario Grouping stream will generate two outputs one each for a trade. And ...
1
vote
1answer
139 views

Esper EPL leftouter join forwarding to other stream

I have implemented ESPER for my application need of CEP. While using EPL I encountered a specific scenario which is as follows: I have combined two events with left outer join to make sure each event ...
1
vote
1answer
89 views

Esper - catch delta events if no base event exists in data window

Let's say I have a named window: CREATE WINDOW TestWindow.std:unique(FieldA) AS SELECT * FROM TestEvent; Where TestEvent is a RevisionEvent, and TestEventBase and TestEventDelta are defined at the ...
1
vote
0answers
185 views

Configuring AMQPListener from exchange (AMQP adapter of Esper with RabbitMQ)

I have a very common scenario. I have a publisher which is sending message to Exchange(Test1). I want to feed messages from exchange to Esper by AMQP adapter which is present in Esper. When I listen ...
1
vote
1answer
89 views

Esper - handling random sequence of events with the followed by pattern -->

We have two types of events - InventoryEvent(Order) and InventoryEvent(Cancel). I want to track order events that are not followed by Cancel events within 6 secs. This is the query being used select ...
0
votes
1answer
286 views

Starting with Esper + sockets

I'm a rookie with Esper and I would like to get some help. I've already managed to use Esper with CSV files, but now I need to use Java objects as events sent through a socket and I can't find simple ...
0
votes
0answers
241 views

Rules engine or events processing

I have a customer management system used by businesses to store customer data and some other info. I want my system to send an email to the user (business owner) in several cases like the following: ...
1
vote
0answers
189 views

Open source frameworks/technologies suitable for PreTrade Compliance [closed]

We are looking forward to create Pre-Trade compliance on open source frameworks/technologies so that legacy code can eventually be replaced by some of the useful frameworks. We already have our OMS ...
0
votes
0answers
126 views

Esper Merge Join Algorithm

I have been struggling with the join of multiple data streams. Can any one tell about the merge join algorithm used by ESPER on Multiple data stream? or similar algorithms?
1
vote
1answer
190 views

Java simple Analytics/Event Stream Processing with front end

My application takes a lot of measurements of it's internal processes. For example I time certain methods, I time external webservice calls and I also have variables which have a changing value, and ...
0
votes
1answer
65 views

Generating a deduplicated event stream without a window

I'm trying to generate a stream of deduplicated events without specifying any window policy beyond that used for the deduplication. Using an output first every clause on my queries appears to have the ...
0
votes
0answers
54 views

Use esper 'every'

I have two kinds of events, say E' and E". Does esper support fire every event E' which is not after E"? Such as the incomming event sequence are E'(1), E'(2), E"(3), E'(3), E'(4), E'(5), ... ...
0
votes
1answer
185 views

Java math DescriptiveStatistics remove value

I am new to Java and have been using it with Esper CEP engine. This question is however unrelated to Esper, its more of a Java question. First, my class :- import java.util.ArrayList; import ...
1
vote
0answers
74 views

Esper absence of event for dynamic list

I'm trying to figure out a basic scenario to determine if I should base an alerting application on Esper. I have a set of sensors that change dynamically over time. Each of these are configured with ...
0
votes
0answers
102 views

Esper: scheduling an event in milliseconds

I have an esper configuration in which I would like to receive an update at a specific time. I am aware of the timer:at crontab like functionality, nevertheless, I need to schedule it within ...
1
vote
2answers
236 views

CEP with Esper on Android?

I am beginner in event-based architecture and systems. The Esper CEP engine for java is used to process events, but I do not know if there are libraries for Android platform, e.g. an Esper version for ...
0
votes
0answers
68 views

Is it possible to store somewhere stats generated by NEsper?

I've just started to use NEsper, but I would like to keep the stats in case the server is reset. At least to keep some of them, doesn't have to be exact (doesn't matter if an event is not included in ...
0
votes
0answers
143 views

Specific event pattern EPL for CEP Esper

I need a specific pattern for my application. I need this - /* EVERY R -> ONLY LAST T -> EVERY S */ But i dont think any ONLY LAST can be done through EPL. Example sequence is- Event pattern ...
0
votes
1answer
125 views

httpadapter in Esper CEP implementation

I need to send data to a web page from esper engine using httpadapter. I followed the steps mentioned in examples. Somehow it didn't wwork. I need to send using plain java object. Also let me know ...
0
votes
1answer
339 views

Esper: Using start/end-timestamps with POJOs or runtime defined event types

I am trying to use the time interval algebra methods on event types directly, which, according to the docs, should be possible. I first tried to define some event types using the create schema syntax, ...
1
vote
2answers
282 views

CEP: source for real-time events or data feeds?

I am searching for free event sources that I can use within my java-application. I am looking for something similar to YahooFinance, where one can query a bunch of stock info and retrieve the result ...
0
votes
1answer
129 views

Esper: events not pass to subscriber when using group-by clause

I use Nesper (4.1.2/4.5.0) and I have a problem: events not pass to subscriber when using group-by clause. EPL query: select Operation, count(*) as OperationCount from OperationEvent.win:time(10 ...
0
votes
1answer
137 views

Embeddable CEP/ESP engines for .net

Any other engines other than NEsper which are not standalone/can be embedded into a .net app Would like to compare before diving deeper into esper/nesper
0
votes
1answer
73 views

Is there a way to get time since insert of an event in NEsper?

I'm trying to use NEsper and I want to create statements that takes time since insert as a return field. ex: select avg((insertTime - now)) as timeElapsed from Blah.win:time(1 min) Is this ...
2
votes
2answers
264 views

esper and update listener concurrency

I'm new to Esper and I was wondering if the update method of an UpdateListener is executed concurrently by multiple threads. If that's the case I conclude that write on an HashMap inside this method ...
6
votes
2answers
2k views

How to scale out with esper?

I've been looking at Esper (and Storm) for stream processing.. Esper seems to do exactly what I want.. i.e. roling means, medians, complex queries, etc... but one thing has me wondering. How would I ...
0
votes
1answer
91 views

esper - every-distinct reset subexpression?

How does one reset a esper every-distinct sub expression? I have a number of voyage reports with unique ids and I want to detect when ever they change their destination. The following detects the ...
2
votes
2answers
899 views

sample code about esper engine

i wanted to begin learning ESPER engine, and i found out that ester native examples are a little complex. is there any one who has a good simple example java code, which is about using esper?

1 2