public class DataSourceQueryQueryToolChest extends QueryToolChest<Result<DataSourceMetadataResultValue>,DataSourceMetadataQuery>
Constructor and Description |
---|
DataSourceQueryQueryToolChest(GenericQueryMetricsFactory queryMetricsFactory) |
Modifier and Type | Method and Description |
---|---|
<T extends LogicalSegment> |
filterSegments(DataSourceMetadataQuery query,
List<T> segments)
This method is called to allow the query to prune segments that it does not believe need to actually
be queried.
|
CacheStrategy |
getCacheStrategy(DataSourceMetadataQuery query)
Returns a CacheStrategy to be used to load data into the cache and remove it from the cache.
|
com.fasterxml.jackson.core.type.TypeReference<Result<DataSourceMetadataResultValue>> |
getResultTypeReference()
Returns a TypeReference object that is just passed through to Jackson in order to deserialize
the results of this type of query.
|
QueryMetrics<Query<?>> |
makeMetrics(DataSourceMetadataQuery query)
Creates a
QueryMetrics object that is used to generate metrics for this specific query type. |
com.google.common.base.Function<Result<DataSourceMetadataResultValue>,Result<DataSourceMetadataResultValue>> |
makePreComputeManipulatorFn(DataSourceMetadataQuery query,
MetricManipulationFn fn)
Creates a Function that can take in a ResultType and return a new ResultType having applied
the MetricManipulatorFn to each of the metrics.
|
QueryRunner<Result<DataSourceMetadataResultValue>> |
mergeResults(QueryRunner<Result<DataSourceMetadataResultValue>> runner)
This method wraps a QueryRunner.
|
canPerformSubquery, createMergeFn, createResultComparator, decorateObjectMapper, getBaseResultType, getBySegmentResultType, makePostComputeManipulatorFn, postMergeQueryDecoration, preMergeQueryDecoration, resultArraySignature, resultsAsArrays
@Inject public DataSourceQueryQueryToolChest(GenericQueryMetricsFactory queryMetricsFactory)
public <T extends LogicalSegment> List<T> filterSegments(DataSourceMetadataQuery query, List<T> segments)
QueryToolChest
filterSegments
in class QueryToolChest<Result<DataSourceMetadataResultValue>,DataSourceMetadataQuery>
T
- A Generic parameter because Java is coolquery
- The query being processedsegments
- The list of candidate segments to be queriedpublic QueryRunner<Result<DataSourceMetadataResultValue>> mergeResults(QueryRunner<Result<DataSourceMetadataResultValue>> runner)
QueryToolChest
ResultMergeQueryRunner
which creates a
CombiningSequence
using the supplied QueryRunner
with
QueryToolChest.createResultComparator(Query)
and QueryToolChest.createMergeFn(Query)
} supplied by this
toolchest.mergeResults
in class QueryToolChest<Result<DataSourceMetadataResultValue>,DataSourceMetadataQuery>
runner
- A QueryRunner that provides a series of ResultType objects in time order (ascending or descending)public QueryMetrics<Query<?>> makeMetrics(DataSourceMetadataQuery query)
QueryToolChest
QueryMetrics
object that is used to generate metrics for this specific query type. This exists
to allow for query-specific dimensions and metrics. That is, the ToolChest is expected to set some
meaningful dimensions for metrics given this query type. Examples might be the topN threshold for
a TopN query or the number of dimensions included for a groupBy query.
QueryToolChests for query types in core (druid-processing) and public extensions (belonging to the Druid source
tree) should use delegate this method to GenericQueryMetricsFactory.makeMetrics(Query)
on an injected
instance of GenericQueryMetricsFactory
, as long as they don't need to emit custom dimensions and/or
metrics.
If some custom dimensions and/or metrics should be emitted for a query type, a plan described in
"Making subinterfaces of QueryMetrics" section in QueryMetrics
's class-level Javadocs should be followed.
One way or another, this method should ensure that QueryMetrics.query(Query)
is called with the given
query passed on the created QueryMetrics object before returning.
makeMetrics
in class QueryToolChest<Result<DataSourceMetadataResultValue>,DataSourceMetadataQuery>
query
- The query that is being processedpublic com.google.common.base.Function<Result<DataSourceMetadataResultValue>,Result<DataSourceMetadataResultValue>> makePreComputeManipulatorFn(DataSourceMetadataQuery query, MetricManipulationFn fn)
QueryToolChest
This exists because the QueryToolChest is the only thing that understands the internal serialization format of ResultType, so it's primary responsibility is to "decompose" that structure and apply the given function to all metrics.
This function is called very early in the processing pipeline on the Broker.
makePreComputeManipulatorFn
in class QueryToolChest<Result<DataSourceMetadataResultValue>,DataSourceMetadataQuery>
query
- The Query that is currently being processedfn
- The function that should be applied to all metrics in the resultspublic com.fasterxml.jackson.core.type.TypeReference<Result<DataSourceMetadataResultValue>> getResultTypeReference()
QueryToolChest
getResultTypeReference
in class QueryToolChest<Result<DataSourceMetadataResultValue>,DataSourceMetadataQuery>
public CacheStrategy getCacheStrategy(DataSourceMetadataQuery query)
QueryToolChest
This is optional. If it returns null, caching is effectively disabled for the query.
getCacheStrategy
in class QueryToolChest<Result<DataSourceMetadataResultValue>,DataSourceMetadataQuery>
query
- The query whose results might be cachedCopyright © 2011–2021 The Apache Software Foundation. All rights reserved.