Static contextual data

Enrich events with essential slow changing data from Joule’s in-memory database.

Objective

The enricher enables users to enhance events with multiple data elements through advanced mapping.

Slow-moving contextual data such as

  • Customer information (i.e. subscriptions, product interactions)

  • Contract pricing

  • Product skews

  • Daily prices

  • Financial market data such as; FX rates, interest rates, start of day market index levels etc;.

  • Complex engineered ML features

are essential for rule-based triggers in business functions.

Joule supports this by using its internal database and allowing data import during the initialisation process (see documentation for details).

Uses

There are various uses for this filter such as:

  1. In retail Utilise static discount rules and seasonal pricing stored in the in-memory database to automatically apply the latest price adjustments to product events, supporting personalised promotions.

  2. In financial services Leverage exchange rate data by querying an in-memory database, enabling real-time currency conversion and accurate, timely financial calculations in customer-facing apps.

  3. In transportation Enrich vehicle routing events with fuel price data stored in-memory to enable efficient route adjustments based on the latest fuel costs, supporting cost-effective logistics.

Architecture

Joule's architecture for handling static contextual data relies on its internal database, with data imported during the initialisation phase.

Example

Not supported: The by key attribute is not supported when using the Joule in-memory database.

enricher:
  fields:
    with_values:
      by query:  "select * from fx_rates where symbol = ?"
      query fields: [symbol]
      with values: [exchange_rate]
      using: JouleDB

    as_object:
      by query: "select * from fx_rates where symbol = ?"
      query fields: [symbol]
      as object: true
      using: JouleDB

    all_attributes:
      by query: "select * from fx_rates where symbol = ?"
      query fields: [symbol]
      all attributes: true
      using: JouleDB

Attributes schema

To direct the enricher to use Joule's in-memory database apply the setting to the using DSL attribute.

AttributeDescriptionData Type

using: JouleDB

Directs processor to bind to the in-memory Joule database. No further storage configuration is required.

String

Last updated