Uses of Interface
org.apache.druid.query.context.ResponseContext.Key
-
Packages that use ResponseContext.Key Package Description org.apache.druid.query.context -
-
Uses of ResponseContext.Key in org.apache.druid.query.context
Classes in org.apache.druid.query.context that implement ResponseContext.Key Modifier and Type Class Description static classResponseContext.AbstractKeyAbstract key class which provides most functionality except the type-specific merge logic.static classResponseContext.BooleanKeyBoolean valued attribute with the semantics that once the flag is set true, it stays true.static classResponseContext.CounterKeyLong valued attribute that holds the accumulation of values assigned.static classResponseContext.LongKeyLong valued attribute that holds the latest value assigned.static classResponseContext.StringKeyString valued attribute that holds the latest value assigned.Fields in org.apache.druid.query.context declared as ResponseContext.Key Modifier and Type Field Description static ResponseContext.KeyResponseContext.Keys. CPU_CONSUMED_NANOSThe total CPU time for threads related to Sequence processing of the query.static ResponseContext.KeyResponseContext.Keys. ETAGEntity tag.static ResponseContext.KeyResponseContext.Keys. MISSING_SEGMENTSLists missing segments.static ResponseContext.KeyResponseContext.Keys. NUM_SCANNED_ROWSThe number of rows scanned byScanQueryEngine.static ResponseContext.KeyResponseContext.Keys. QUERY_FAIL_DEADLINE_MILLISQuery fail time (current time + timeout).static ResponseContext.KeyResponseContext.Keys. QUERY_TOTAL_BYTES_GATHEREDQuery total bytes gathered.static ResponseContext.KeyResponseContext.Keys. REMAINING_RESPONSES_FROM_QUERY_SERVERSMap of most relevant query ID to remaining number of responses from query nodes.static ResponseContext.KeyResponseContext.Keys. TIMEOUT_ATThis variable indicates when a running query should be expired, and is effective only when 'timeout' of queryContext has a positive value.static ResponseContext.KeyResponseContext.Keys. TRUNCATEDIndicates if aResponseContextwas truncated during serialization.static ResponseContext.KeyResponseContext.Keys. UNCOVERED_INTERVALSLists intervals for which NO segment is present.static ResponseContext.KeyResponseContext.Keys. UNCOVERED_INTERVALS_OVERFLOWEDIndicates if the number of uncovered intervals exceeded the limit (true/false).Methods in org.apache.druid.query.context that return ResponseContext.Key Modifier and Type Method Description ResponseContext.KeyResponseContext.Keys. find(String name)Returns a registered key associated with the given name, ornullif the key is not registered.ResponseContext.KeyResponseContext.Keys. keyOf(String name)Returns a registered key associated with the name {@param name}.Methods in org.apache.druid.query.context that return types with arguments of type ResponseContext.Key Modifier and Type Method Description protected Map<ResponseContext.Key,Object>ConcurrentResponseContext. getDelegate()protected Map<ResponseContext.Key,Object>DefaultResponseContext. getDelegate()protected abstract Map<ResponseContext.Key,Object>ResponseContext. getDelegate()Methods in org.apache.druid.query.context with parameters of type ResponseContext.Key Modifier and Type Method Description ObjectResponseContext. add(ResponseContext.Key key, Object value)Adds (merges) a new value associated with a key to an old value.ObjectResponseContext. get(ResponseContext.Key key)ObjectResponseContext. put(ResponseContext.Key key, Object value)Associates the specified object with the specified extension key.voidResponseContext.Keys. registerKey(ResponseContext.Key key)Primary way of registering context keys.voidResponseContext.Keys. registerKeys(ResponseContext.Key[] keys)Register a group of keys.ObjectResponseContext. remove(ResponseContext.Key key)
-