Send on delta

This processor employs a highly efficient send-on-delta algorithm, leveraging user-defined fields to ascertain whether a new event exhibits changes in these specified fields. Only unique events that demonstrate alterations are forwarded to interconnected components.

Example

send on delta:
  fields:
    - symbol
    - bid
    - ask
  expected unique events: 100000
  fpp: 0.98

This will publish unseen delta events to the next processor.

Attributes

Filter replacement

The processor uses a BloomFilter to determine if an event has been seen before. Therefore the filter is automatically updated when there is a high probability of false positives being generated.

Any StreamEvent which has the deltaBreachedFPP field will signify a filter change once the event has been published.

Note

Both of the reset functions can be applied.

Last updated