public class FederationSearcher extends ForkingSearcher
ForkingSearcher.CommentedSearchChain
Modifier and Type | Field and Description |
---|---|
static String |
FEDERATION |
static String |
LOG_COUNT_PREFIX
Logging field name constants
|
static com.yahoo.processing.request.CompoundName |
PROVIDERNAME |
static com.yahoo.processing.request.CompoundName |
SOURCENAME
The name of the query property containing the source name added to the query to each source by this
|
Constructor and Description |
---|
FederationSearcher(com.yahoo.component.ComponentId id,
SearchChainResolver searchChainResolver) |
FederationSearcher(FederationConfig config,
StrictContractsConfig strict,
com.yahoo.component.provider.ComponentRegistry<TargetSelector> targetSelectors) |
Modifier and Type | Method and Description |
---|---|
com.yahoo.errorhandling.Results<SearchChainInvocationSpec,UnresolvedSearchChainException> |
defaultSearchChains(Properties sourceToProviderMap) |
void |
fill(Result result,
String summaryClass,
Execution execution)
Fill hit properties with data using the given summary class.
|
Collection<ForkingSearcher.CommentedSearchChain> |
getSearchChainsForwarded(SearchChainRegistry registry)
Returns which searchers this searcher may forward to, for debugging and tracing
|
static Properties |
getSourceProperties(Query query)
Returns the set of properties set for the source or provider given in the query (if any).
|
Result |
search(Query query,
Execution execution)
Override this to implement your searcher.
|
ensureFilled, getLogger, process, toString
getAnnotatedDependencies, getDefaultAnnotatedDependencies, getDependencies, initDependencies
public static final String FEDERATION
public static final com.yahoo.processing.request.CompoundName SOURCENAME
public static final com.yahoo.processing.request.CompoundName PROVIDERNAME
public static final String LOG_COUNT_PREFIX
@Inject public FederationSearcher(FederationConfig config, StrictContractsConfig strict, com.yahoo.component.provider.ComponentRegistry<TargetSelector> targetSelectors)
public FederationSearcher(com.yahoo.component.ComponentId id, SearchChainResolver searchChainResolver)
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:
public Collection<ForkingSearcher.CommentedSearchChain> getSearchChainsForwarded(SearchChainRegistry registry)
ForkingSearcher
getSearchChainsForwarded
in class ForkingSearcher
public static Properties getSourceProperties(Query query)
public void fill(Result result, String summaryClass, Execution execution)
Searcher
This needs to be overridden by federating searchers to contact search sources again by propagating the fill call down through the search chain, and by source searchers which talks to fill capable backends to request the data to be filled. Other searchers do not need to override this.
public com.yahoo.errorhandling.Results<SearchChainInvocationSpec,UnresolvedSearchChainException> defaultSearchChains(Properties sourceToProviderMap)
Copyright © 2018. All rights reserved.