public class PeakQpsSearcher extends Searcher
Modifier and Type | Class and Description |
---|---|
private class |
PeakQpsSearcher.Fetcher |
static class |
PeakQpsSearcher.QpsHit
Meta hit which carries the peak qps and mean qps since the last time this
data was requested.
|
(package private) static class |
PeakQpsSearcher.QueryRate |
(package private) static class |
PeakQpsSearcher.QueryRatePerSecond |
Modifier and Type | Field and Description |
---|---|
private com.yahoo.concurrent.ThreadLocalDirectory<Deque<PeakQpsSearcher.QueryRatePerSecond>,Long> |
directory |
private com.yahoo.processing.request.CompoundName |
propertyName |
private com.yahoo.statistics.Value |
qpsStatistics |
private boolean |
useMetaHit |
Constructor and Description |
---|
PeakQpsSearcher(MeasureQpsConfig config,
com.yahoo.statistics.Statistics manager) |
Modifier and Type | Method and Description |
---|---|
private static PeakQpsSearcher.QueryRatePerSecond |
consume(Deque<Deque<PeakQpsSearcher.QueryRatePerSecond>> consumeFrom) |
(package private) static com.yahoo.concurrent.ThreadLocalDirectory<Deque<PeakQpsSearcher.QueryRatePerSecond>,Long> |
createDirectory() |
private com.yahoo.collections.Tuple2<Integer,Double> |
maxAndMean(List<PeakQpsSearcher.QueryRatePerSecond> l) |
(package private) static List<PeakQpsSearcher.QueryRatePerSecond> |
merge(List<Deque<PeakQpsSearcher.QueryRatePerSecond>> measurements) |
Result |
search(Query query,
Execution execution)
Override this to implement your searcher.
|
ensureFilled, fill, getLogger, process, toString
getAnnotatedDependencies, getDefaultAnnotatedDependencies, getDependencies, initDependencies
private final com.yahoo.concurrent.ThreadLocalDirectory<Deque<PeakQpsSearcher.QueryRatePerSecond>,Long> directory
private final com.yahoo.statistics.Value qpsStatistics
private final com.yahoo.processing.request.CompoundName propertyName
private final boolean useMetaHit
public PeakQpsSearcher(MeasureQpsConfig config, com.yahoo.statistics.Statistics manager)
static com.yahoo.concurrent.ThreadLocalDirectory<Deque<PeakQpsSearcher.QueryRatePerSecond>,Long> createDirectory()
static List<PeakQpsSearcher.QueryRatePerSecond> merge(List<Deque<PeakQpsSearcher.QueryRatePerSecond>> measurements)
private static PeakQpsSearcher.QueryRatePerSecond consume(Deque<Deque<PeakQpsSearcher.QueryRatePerSecond>> consumeFrom)
public Result search(Query query, Execution execution)
Searcher
Searcher implementation subclasses will, depending on their type of logic, do one of the following:
Hits come in two kinds - concrete hits are actual content of the kind requested by the user, meta hits are hits which provides information about the collection of hits, on the query, the service and so on.
The query specifies a window into a larger result list that must be returned from the searcher through hits and offset; Searchers which returns list of hits in the top level in the result must return at least hits number of hits (or if impossible; all that are available), starting at the given offset. In addition, searchers are allowed to return any number of meta hits (although this number is expected to be low). For hits contained in nested hit groups, the concept of a window defined by hits and offset is not well defined and does not apply.
Error handling in searchers:
private com.yahoo.collections.Tuple2<Integer,Double> maxAndMean(List<PeakQpsSearcher.QueryRatePerSecond> l)
Copyright © 2018. All rights reserved.