Reference data

Register, list, detail and unregister reference data sources


Overview

Reference data is often used within stream processing to drive complex logic paths. Joule Management API provides the ability to register, list, detail and undeploy reference data. For further information on the structure of the content payload refer to this documentation.

Example reference data content

{
  "reference data": {
    "name": "banking market data",
    "data sources": [
      {
        "geode stores": {
          "name": "us markets",
          "connection": {
            "locator address": "192.168.86.39",
            "locator port": 41111
          },
          "stores": {
            "nasdaqIndexCompanies": {
              "region": "nasdaq-companies",
              "keyClass": "java.lang.String",
              "gii": true
            },
            "holidays": {
              "region": "us-holidays",
              "keyClass": "java.lang.Integer"
            }
          }
        }
      }
    ]
  }
}

Last updated