public class SelectQueryQueryToolChest extends QueryToolChest<Result<SelectResultValue>,SelectQuery>
Constructor and Description |
---|
SelectQueryQueryToolChest(com.fasterxml.jackson.databind.ObjectMapper jsonMapper,
IntervalChunkingQueryRunnerDecorator intervalChunkingQueryRunnerDecorator,
com.google.common.base.Supplier<SelectQueryConfig> configSupplier) |
Modifier and Type | Method and Description |
---|---|
<T extends LogicalSegment> |
filterSegments(SelectQuery 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<Result<SelectResultValue>,Object,SelectQuery> |
getCacheStrategy(SelectQuery 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<SelectResultValue>> |
getResultTypeReference()
Returns a TypeReference object that is just passed through to Jackson in order to deserialize
the results of this type of query.
|
com.metamx.emitter.service.ServiceMetricEvent.Builder |
makeMetricBuilder(SelectQuery query)
Creates a builder that is used to generate a metric for this specific query type.
|
com.google.common.base.Function<Result<SelectResultValue>,Result<SelectResultValue>> |
makePreComputeManipulatorFn(SelectQuery 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<SelectResultValue>> |
mergeResults(QueryRunner<Result<SelectResultValue>> queryRunner)
This method wraps a QueryRunner.
|
QueryRunner<Result<SelectResultValue>> |
preMergeQueryDecoration(QueryRunner<Result<SelectResultValue>> runner)
Wraps a QueryRunner.
|
makePostComputeManipulatorFn, postMergeQueryDecoration
@Inject public SelectQueryQueryToolChest(com.fasterxml.jackson.databind.ObjectMapper jsonMapper, IntervalChunkingQueryRunnerDecorator intervalChunkingQueryRunnerDecorator, com.google.common.base.Supplier<SelectQueryConfig> configSupplier)
public QueryRunner<Result<SelectResultValue>> mergeResults(QueryRunner<Result<SelectResultValue>> queryRunner)
QueryToolChest
mergeResults
in class QueryToolChest<Result<SelectResultValue>,SelectQuery>
queryRunner
- A QueryRunner that provides a series of ResultType objects in time order (ascending or descending)public com.metamx.emitter.service.ServiceMetricEvent.Builder makeMetricBuilder(SelectQuery query)
QueryToolChest
makeMetricBuilder
in class QueryToolChest<Result<SelectResultValue>,SelectQuery>
query
- The query that is being processedpublic com.google.common.base.Function<Result<SelectResultValue>,Result<SelectResultValue>> makePreComputeManipulatorFn(SelectQuery 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<SelectResultValue>,SelectQuery>
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<SelectResultValue>> getResultTypeReference()
QueryToolChest
getResultTypeReference
in class QueryToolChest<Result<SelectResultValue>,SelectQuery>
public CacheStrategy<Result<SelectResultValue>,Object,SelectQuery> getCacheStrategy(SelectQuery query)
QueryToolChest
This is optional. If it returns null, caching is effectively disabled for the query.
getCacheStrategy
in class QueryToolChest<Result<SelectResultValue>,SelectQuery>
query
- The query whose results might be cachedpublic QueryRunner<Result<SelectResultValue>> preMergeQueryDecoration(QueryRunner<Result<SelectResultValue>> runner)
QueryToolChest
In fact, the return value of this method is always passed to mergeResults, so it is equivalent to just implement this functionality as extra decoration on the QueryRunner during mergeResults().
In the interests of potentially simplifying these interfaces, the recommendation is to actually not override this method and instead apply anything that might be needed here in the mergeResults() call.
preMergeQueryDecoration
in class QueryToolChest<Result<SelectResultValue>,SelectQuery>
runner
- The runner to be wrappedpublic <T extends LogicalSegment> List<T> filterSegments(SelectQuery query, List<T> segments)
QueryToolChest
filterSegments
in class QueryToolChest<Result<SelectResultValue>,SelectQuery>
T
- A Generic parameter because Java is coolquery
- The query being processedsegments
- The list of candidate segments to be queriedCopyright © 2011–2017. All rights reserved.