Lookups

Lookups are an experimental feature.

Lookups are a concept in Apache Druid where dimension values are (optionally) replaced with new values, allowing join-like functionality. Applying lookups in Druid is similar to joining a dimension table in a data warehouse. See dimension specs for more information. For the purpose of these documents, a “key” refers to a dimension value to match, and a “value” refers to its replacement. So if you wanted to map appid-12345 to Super Mega Awesome App then the key would be appid-12345 and the value would be Super Mega Awesome App.

It is worth noting that lookups support not just use cases where keys map one-to-one to unique values, such as country code and country name, but also support use cases where multiple IDs map to the same value, e.g. multiple app-ids mapping to a single account manager. When lookups are one-to-one, Druid is able to apply additional optimizations at query time; see Query execution below for more details.

Lookups do not have history. They always use the current data. This means that if the chief account manager for a particular app-id changes, and you issue a query with a lookup to store the app-id to account manager relationship, it will return the current account manager for that app-id REGARDLESS of the time range over which you query.

If you require data time range sensitive lookups, such a use case is not currently supported dynamically at query time, and such data belongs in the raw denormalized data for use in Druid.

Very small lookups (count of keys on the order of a few dozen to a few hundred) can be passed at query time as a “map” lookup as per dimension specs.

Other lookup types are available as extensions, including:

Query Syntax

In Druid SQL, lookups can be queried using the LOOKUP function, for example:

  1. SELECT LOOKUP(column_name, 'lookup-name'), COUNT(*) FROM datasource GROUP BY 1

In native queries, lookups can be queried with dimension specs or extraction functions.

Query Execution

When executing an aggregation query involving lookups, Druid can decide to apply lookups either while scanning and aggregating rows, or to apply them after aggregation is complete. It is more efficient to apply lookups after aggregation is complete, so Druid will do this if it can. Druid decides this by checking if the lookup is marked as “injective” or not. In general, you should set this property for any lookup that is naturally one-to-one, to allow Druid to run your queries as fast as possible.

Injective lookups should include all possible keys that may show up in your dataset, and should also map all keys to unique values. This matters because non-injective lookups may map different keys to the same value, which must be accounted for during aggregation, lest query results contain two result values that should have been aggregated into one.

This lookup is injective (assuming it contains all possible keys from your data):

  1. 1 -> Foo
  2. 2 -> Bar
  3. 3 -> Billy

But this one is not, since both “2” and “3” map to the same key:

  1. 1 -> Foo
  2. 2 -> Bar
  3. 3 -> Bar

To tell Druid that your lookup is injective, you must specify "injective" : true in the lookup configuration. Druid will not detect this automatically.

Dynamic Configuration

Dynamic lookup configuration is an experimental feature. Static configuration is no longer supported. The following documents the behavior of the cluster-wide config which is accessible through the Coordinator. The configuration is propagated through the concept of “tier” of servers. A “tier” is defined as a group of services which should receive a set of lookups. For example, you might have all Historicals be part of __default, and Peons be part of individual tiers for the datasources they are tasked with. The tiers for lookups are completely independent of Historical tiers.

These configs are accessed using JSON through the following URI template

  1. http://<COORDINATOR_IP>:<PORT>/druid/coordinator/v1/lookups/config/{tier}/{id}

All URIs below are assumed to have http://<COORDINATOR_IP>:<PORT> prepended.

If you have NEVER configured lookups before, you MUST post an empty json object {} to /druid/coordinator/v1/lookups/config to initialize the configuration.

These endpoints will return one of the following results:

  • 404 if the resource is not found
  • 400 if there is a problem in the formatting of the request
  • 202 if the request was accepted asynchronously (POST and DELETE)
  • 200 if the request succeeded (GET only)

Configuration propagation behavior

The configuration is propagated to the query serving processes (Broker / Router / Peon / Historical) by the Coordinator. The query serving processes have an internal API for managing lookups on the process and those are used by the Coordinator. The Coordinator periodically checks if any of the processes need to load/drop lookups and updates them appropriately.

Please note that only 2 simultaneous lookup configuration propagation requests can be concurrently handled by a single query serving process. This limit is applied to prevent lookup handling from consuming too many server HTTP connections.

API for configuring lookups

Bulk update

Lookups can be updated in bulk by posting a JSON object to /druid/coordinator/v1/lookups/config. The format of the json object is as follows:

  1. {
  2. "<tierName>": {
  3. "<lookupName>": {
  4. "version": "<version>",
  5. "lookupExtractorFactory": {
  6. "type": "<someExtractorFactoryType>",
  7. "<someExtractorField>": "<someExtractorValue>"
  8. }
  9. }
  10. }
  11. }

Note that “version” is an arbitrary string assigned by the user, when making updates to existing lookup then user would need to specify a lexicographically higher version.

For example, a config might look something like:

  1. {
  2. "__default": {
  3. "country_code": {
  4. "version": "v0",
  5. "lookupExtractorFactory": {
  6. "type": "map",
  7. "map": {
  8. "77483": "United States"
  9. }
  10. }
  11. },
  12. "site_id": {
  13. "version": "v0",
  14. "lookupExtractorFactory": {
  15. "type": "cachedNamespace",
  16. "extractionNamespace": {
  17. "type": "jdbc",
  18. "connectorConfig": {
  19. "createTables": true,
  20. "connectURI": "jdbc:mysql:\/\/localhost:3306\/druid",
  21. "user": "druid",
  22. "password": "diurd"
  23. },
  24. "table": "lookupTable",
  25. "keyColumn": "country_id",
  26. "valueColumn": "country_name",
  27. "tsColumn": "timeColumn"
  28. },
  29. "firstCacheTimeout": 120000,
  30. "injective": true
  31. }
  32. },
  33. "site_id_customer1": {
  34. "version": "v0",
  35. "lookupExtractorFactory": {
  36. "type": "map",
  37. "map": {
  38. "847632": "Internal Use Only"
  39. }
  40. }
  41. },
  42. "site_id_customer2": {
  43. "version": "v0",
  44. "lookupExtractorFactory": {
  45. "type": "map",
  46. "map": {
  47. "AHF77": "Home"
  48. }
  49. }
  50. }
  51. },
  52. "realtime_customer1": {
  53. "country_code": {
  54. "version": "v0",
  55. "lookupExtractorFactory": {
  56. "type": "map",
  57. "map": {
  58. "77483": "United States"
  59. }
  60. }
  61. },
  62. "site_id_customer1": {
  63. "version": "v0",
  64. "lookupExtractorFactory": {
  65. "type": "map",
  66. "map": {
  67. "847632": "Internal Use Only"
  68. }
  69. }
  70. }
  71. },
  72. "realtime_customer2": {
  73. "country_code": {
  74. "version": "v0",
  75. "lookupExtractorFactory": {
  76. "type": "map",
  77. "map": {
  78. "77483": "United States"
  79. }
  80. }
  81. },
  82. "site_id_customer2": {
  83. "version": "v0",
  84. "lookupExtractorFactory": {
  85. "type": "map",
  86. "map": {
  87. "AHF77": "Home"
  88. }
  89. }
  90. }
  91. }
  92. }

All entries in the map will UPDATE existing entries. No entries will be deleted.

Update lookup

A POST to a particular lookup extractor factory via /druid/coordinator/v1/lookups/config/{tier}/{id} will update that specific extractor factory.

For example, a post to /druid/coordinator/v1/lookups/config/realtime_customer1/site_id_customer1 might contain the following:

  1. {
  2. "version": "v1",
  3. "lookupExtractorFactory": {
  4. "type": "map",
  5. "map": {
  6. "847632": "Internal Use Only"
  7. }
  8. }
  9. }

This will replace the site_id_customer1 lookup in the realtime_customer1 with the definition above.

Get all lookups

A GET to /druid/coordinator/v1/lookups/config/all will return all known lookup specs for all tiers.

Get lookup

A GET to a particular lookup extractor factory is accomplished via /druid/coordinator/v1/lookups/config/{tier}/{id}

Using the prior example, a GET to /druid/coordinator/v1/lookups/config/realtime_customer2/site_id_customer2 should return

  1. {
  2. "version": "v1",
  3. "lookupExtractorFactory": {
  4. "type": "map",
  5. "map": {
  6. "AHF77": "Home"
  7. }
  8. }
  9. }

Delete lookup

A DELETE to /druid/coordinator/v1/lookups/config/{tier}/{id} will remove that lookup from the cluster. If it was last lookup in the tier, then tier is deleted as well.

Delete tier

A DELETE to /druid/coordinator/v1/lookups/config/{tier} will remove that tier from the cluster.

List tier names

A GET to /druid/coordinator/v1/lookups/config will return a list of known tier names in the dynamic configuration. To discover a list of tiers currently active in the cluster in addition to ones known in the dynamic configuration, the parameter discover=true can be added as per /druid/coordinator/v1/lookups/config?discover=true.

List lookup names

A GET to /druid/coordinator/v1/lookups/config/{tier} will return a list of known lookup names for that tier.

These end points can be used to get the propagation status of configured lookups to processes using lookups such as Historicals.

API for lookup status

List load status of all lookups

GET /druid/coordinator/v1/lookups/status with optional query parameter detailed.

List load status of lookups in a tier

GET /druid/coordinator/v1/lookups/status/{tier} with optional query parameter detailed.

List load status of single lookup

GET /druid/coordinator/v1/lookups/status/{tier}/{lookup} with optional query parameter detailed.

List lookup state of all processes

GET /druid/coordinator/v1/lookups/nodeStatus with optional query parameter discover to discover tiers from zookeeper or configured lookup tiers are listed.

List lookup state of processes in a tier

GET /druid/coordinator/v1/lookups/nodeStatus/{tier}

List lookup state of single process

GET /druid/coordinator/v1/lookups/nodeStatus/{tier}/{host:port}

Internal API

The Peon, Router, Broker, and Historical processes all have the ability to consume lookup configuration. There is an internal API these processes use to list/load/drop their lookups starting at /druid/listen/v1/lookups. These follow the same convention for return values as the cluster wide dynamic configuration. Following endpoints can be used for debugging purposes but not otherwise.

Get lookups

A GET to the process at /druid/listen/v1/lookups will return a json map of all the lookups currently active on the process. The return value will be a json map of the lookups to their extractor factories.

  1. {
  2. "site_id_customer2": {
  3. "version": "v1",
  4. "lookupExtractorFactory": {
  5. "type": "map",
  6. "map": {
  7. "AHF77": "Home"
  8. }
  9. }
  10. }
  11. }

Get lookup

A GET to the process at /druid/listen/v1/lookups/some_lookup_name will return the LookupExtractorFactory for the lookup identified by some_lookup_name. The return value will be the json representation of the factory.

  1. {
  2. "version": "v1",
  3. "lookupExtractorFactory": {
  4. "type": "map",
  5. "map": {
  6. "AHF77": "Home"
  7. }
  8. }
  9. }

Configuration

See Lookups Dynamic Configuration for Coordinator configuration.

To configure a Broker / Router / Historical / Peon to announce itself as part of a lookup tier, use the druid.zk.paths.lookupTier property.

PropertyDescriptionDefault
druid.lookup.lookupTierThe tier for lookups for this process. This is independent of other tiers.__default
druid.lookup.lookupTierIsDatasourceFor some things like indexing service tasks, the datasource is passed in the runtime properties of a task. This option fetches the tierName from the same value as the datasource for the task. It is suggested to only use this as Peon options for the indexing service, if at all. If true, druid.lookup.lookupTier MUST NOT be specified“false”

To configure the behavior of the dynamic configuration manager, use the following properties on the Coordinator:

PropertyDescriptionDefault
druid.manager.lookups.hostTimeoutTimeout (in ms) PER HOST for processing request2000(2 seconds)
druid.manager.lookups.allHostTimeoutTimeout (in ms) to finish lookup management on all the processes.900000(15 mins)
druid.manager.lookups.periodHow long to pause between management cycles120000(2 mins)
druid.manager.lookups.threadPoolSizeNumber of service processes that can be managed concurrently10

Saving configuration across restarts

It is possible to save the configuration across restarts such that a process will not have to wait for Coordinator action to re-populate its lookups. To do this the following property is set:

PropertyDescriptionDefault
druid.lookup.snapshotWorkingDirWorking path used to store snapshot of current lookup configuration, leaving this property null will disable snapshot/bootstrap utilitynull
druid.lookup.enableLookupSyncOnStartupEnable the lookup synchronization process with Coordinator on startup. The queryable processes will fetch and load the lookups from the Coordinator instead of waiting for the Coordinator to load the lookups for them. Users may opt to disable this option if there are no lookups configured in the cluster.true
druid.lookup.numLookupLoadingThreadsNumber of threads for loading the lookups in parallel on startup. This thread pool is destroyed once startup is done. It is not kept during the lifetime of the JVMAvailable Processors / 2
druid.lookup.coordinatorFetchRetriesHow many times to retry to fetch the lookup bean list from Coordinator, during the sync on startup.3
druid.lookup.lookupStartRetriesHow many times to retry to start each lookup, either during the sync on startup, or during the runtime.3
druid.lookup.coordinatorRetryDelayHow long to delay (in millis) between retries to fetch lookup list from the Coordinator during the sync on startup.60_000

Introspect a Lookup

The Broker provides an API for lookup introspection if the lookup type implements a LookupIntrospectHandler.

A GET request to /druid/v1/lookups/introspect/{lookupId} will return the map of complete values.

ex: GET /druid/v1/lookups/introspect/nato-phonetic

  1. {
  2. "A": "Alfa",
  3. "B": "Bravo",
  4. "C": "Charlie",
  5. ...
  6. "Y": "Yankee",
  7. "Z": "Zulu",
  8. "-": "Dash"
  9. }

The list of keys can be retrieved via GET to /druid/v1/lookups/introspect/{lookupId}/keys"

ex: GET /druid/v1/lookups/introspect/nato-phonetic/keys

  1. [
  2. "A",
  3. "B",
  4. "C",
  5. ...
  6. "Y",
  7. "Z",
  8. "-"
  9. ]

A GET request to /druid/v1/lookups/introspect/{lookupId}/values" will return the list of values.

ex: GET /druid/v1/lookups/introspect/nato-phonetic/values

  1. [
  2. "Alfa",
  3. "Bravo",
  4. "Charlie",
  5. ...
  6. "Yankee",
  7. "Zulu",
  8. "Dash"
  9. ]

Druid version 0.10.0 to 0.10.1 upgrade/downgrade

Overall druid cluster lookups configuration is persisted in metadata store and also individual lookup processes optionally persist a snapshot of loaded lookups on disk. If upgrading from druid version 0.10.0 to 0.10.1, then migration for all persisted metadata is handled automatically. If downgrading from 0.10.1 to 0.9.0 then lookups updates done via Coordinator while 0.10.1 was running, would be lost.