Class LookupLoadingSpec

java.lang.Object
org.apache.druid.server.lookup.cache.LookupLoadingSpec

public class LookupLoadingSpec extends Object
This class defines the spec for loading of lookups for a given task. It contains 2 fields:
  1. mode: This mode defines whether lookups need to be loaded for the given task, or not. It can take 3 values:
    • ALL: Load all the lookups.
    • NONE: Load no lookups.
    • ONLY_REQUIRED: Load only the lookups defined in lookupsToLoad
  2. lookupsToLoad: Defines the lookups to load when the lookupLoadingMode is set to ONLY_REQUIRED.