Class TopHitsAggregationBuilder
java.lang.Object
org.opensearch.search.aggregations.AggregationBuilder
org.opensearch.search.aggregations.AbstractAggregationBuilder<TopHitsAggregationBuilder>
org.opensearch.search.aggregations.metrics.TopHitsAggregationBuilder
- All Implemented Interfaces:
org.opensearch.core.common.io.stream.NamedWriteable
,org.opensearch.core.common.io.stream.Writeable
,org.opensearch.core.xcontent.ToXContent
,org.opensearch.core.xcontent.ToXContentFragment
,Rewriteable<AggregationBuilder>
,BaseAggregationBuilder
public class TopHitsAggregationBuilder
extends AbstractAggregationBuilder<TopHitsAggregationBuilder>
Aggregation Builder for top_hits agg
- Opensearch.internal:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opensearch.search.aggregations.AggregationBuilder
AggregationBuilder.BucketCardinality, AggregationBuilder.CommonFields
Nested classes/interfaces inherited from interface org.opensearch.core.xcontent.ToXContent
org.opensearch.core.xcontent.ToXContent.DelegatingMapParams, org.opensearch.core.xcontent.ToXContent.MapParams, org.opensearch.core.xcontent.ToXContent.Params
Nested classes/interfaces inherited from interface org.opensearch.core.common.io.stream.Writeable
org.opensearch.core.common.io.stream.Writeable.Reader<V>, org.opensearch.core.common.io.stream.Writeable.WriteableRegistry, org.opensearch.core.common.io.stream.Writeable.Writer<V>
-
Field Summary
Fields inherited from class org.opensearch.search.aggregations.AbstractAggregationBuilder
metadata
Fields inherited from class org.opensearch.search.aggregations.AggregationBuilder
factoriesBuilder, name
Fields inherited from interface org.opensearch.index.query.Rewriteable
MAX_REWRITE_ROUNDS
Fields inherited from interface org.opensearch.core.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
ModifierConstructorDescriptionTopHitsAggregationBuilder
(org.opensearch.core.common.io.stream.StreamInput in) Read from a stream.protected
TopHitsAggregationBuilder
(TopHitsAggregationBuilder clone, AggregatorFactories.Builder factoriesBuilder, Map<String, Object> metadata) -
Method Summary
Modifier and TypeMethodDescriptionA rough count of the number of buckets thatAggregator
s built by this builder will contain per owning parent bucket.protected org.opensearch.search.aggregations.metrics.TopHitsAggregatorFactory
doBuild
(QueryShardContext queryShardContext, AggregatorFactory parent, AggregatorFactories.Builder subfactoriesBuilder) docValueField
(String docValueField) Adds a field to load from doc values and return as part of the search request.docValueField
(String docValueField, String format) Adds a field to load from doc values and return as part of the search request.Gets the field-data fields.protected void
doWriteTo
(org.opensearch.core.common.io.stream.StreamOutput out) boolean
boolean
explain()
Indicates whether each search hit will be returned with an explanation of the hit (ranking)explain
(boolean explain) Should eachSearchHit
be returned with an explanation of the hit (ranking).fetchField
(String field) Adds a field to load and return as part of the search request.fetchField
(String field, String format) Adds a field to load and return as part of the search request.Gets the fields to load and return as part of the search request.Gets theFetchSourceContext
which defines how the _source should be fetched.fetchSource
(boolean fetch) Indicates whether the response should contain the stored _source for every hitfetchSource
(String[] includes, String[] excludes) Indicate that _source should be returned with every hit, with an "include" and/or "exclude" set which can include simple wildcard elements.fetchSource
(String include, String exclude) Indicate that _source should be returned with every hit, with an "include" and/or "exclude" set which can include simple wildcard elements.fetchSource
(FetchSourceContext fetchSourceContext) Indicate how the _source should be fetched.int
from()
Gets the from index to start the search from.from
(int from) From index to start the search from.getType()
The name of the type of aggregation built by this builder.int
hashCode()
Gets the highlighter builder for this request.highlighter
(HighlightBuilder highlightBuilder) Adds highlight to perform as part of the search.protected org.opensearch.core.xcontent.XContentBuilder
internalXContent
(org.opensearch.core.xcontent.XContentBuilder builder, org.opensearch.core.xcontent.ToXContent.Params params) static TopHitsAggregationBuilder
scriptField
(String name, Script script) Adds a script field under the given name with the provided script.scriptField
(String name, Script script, boolean ignoreFailure) Adds a script field under the given name with the provided script.Gets the script fields.scriptFields
(List<SearchSourceBuilder.ScriptField> scriptFields) Indicates whetherSearchHit
s should be returned with the sequence number and primary term of the last modification of the document.seqNoAndPrimaryTerm
(Boolean seqNoAndPrimaryTerm) Should eachSearchHit
be returned with the sequence number and primary term of the last modification of the document.protected AggregationBuilder
shallowCopy
(AggregatorFactories.Builder factoriesBuilder, Map<String, Object> metadata) Create a shallow copy of this builder and replacingAggregationBuilder.factoriesBuilder
andmetadata
.int
size()
Gets the number of search hits to return.size
(int size) The number of search hits to return.Add a sort against the given field name.Adds a sort against the given field name and the sort ordering.sort
(SortBuilder<?> sort) Adds a sort builder.List
<SortBuilder<?>> sorts()
Gets the bytes representing the sort builders for this request.sorts
(List<SortBuilder<?>> sorts) Adds a sort builder.storedField
(String field) Adds a stored field to load and return (note, it must be stored) as part of the search request.Gets the stored fields contextstoredFields
(List<String> fields) Sets the stored fields to load and return as part of the search request.subAggregations
(AggregatorFactories.Builder subFactories) Registers sub-factories with this factory.boolean
Indicates whether scores will be tracked for this request.trackScores
(boolean trackScores) Applies when sorting, and controls if scores will be tracked as well.boolean
version()
Indicates whether the document's version will be included in the search hits.version
(boolean version) Should eachSearchHit
be returned with a version associated with it.Methods inherited from class org.opensearch.search.aggregations.AbstractAggregationBuilder
build, getMetadata, getWriteableName, setMetadata, subAggregation, subAggregation, toXContent, writeTo
Methods inherited from class org.opensearch.search.aggregations.AggregationBuilder
buildPipelineTree, doRewrite, getName, getPipelineAggregations, getSubAggregations, rewrite, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.opensearch.core.xcontent.ToXContentFragment
isFragment
-
Field Details
-
NAME
- See Also:
-
-
Constructor Details
-
TopHitsAggregationBuilder
-
TopHitsAggregationBuilder
protected TopHitsAggregationBuilder(TopHitsAggregationBuilder clone, AggregatorFactories.Builder factoriesBuilder, Map<String, Object> metadata) -
TopHitsAggregationBuilder
public TopHitsAggregationBuilder(org.opensearch.core.common.io.stream.StreamInput in) throws IOException Read from a stream.- Throws:
IOException
-
-
Method Details
-
shallowCopy
protected AggregationBuilder shallowCopy(AggregatorFactories.Builder factoriesBuilder, Map<String, Object> metadata) Description copied from class:AggregationBuilder
Create a shallow copy of this builder and replacingAggregationBuilder.factoriesBuilder
andmetadata
. Used byAggregationBuilder.rewrite(QueryRewriteContext)
.- Specified by:
shallowCopy
in classAggregationBuilder
-
doWriteTo
- Specified by:
doWriteTo
in classAbstractAggregationBuilder<TopHitsAggregationBuilder>
- Throws:
IOException
-
from
From index to start the search from. Defaults to0
. -
from
public int from()Gets the from index to start the search from. -
size
The number of search hits to return. Defaults to10
. -
size
public int size()Gets the number of search hits to return. -
sort
Adds a sort against the given field name and the sort ordering.- Parameters:
name
- The name of the fieldorder
- The sort ordering
-
sort
Add a sort against the given field name.- Parameters:
name
- The name of the field to sort by
-
sort
Adds a sort builder. -
sorts
Adds a sort builder. -
sorts
Gets the bytes representing the sort builders for this request. -
highlighter
Adds highlight to perform as part of the search. -
highlighter
Gets the highlighter builder for this request. -
fetchSource
Indicates whether the response should contain the stored _source for every hit -
fetchSource
Indicate that _source should be returned with every hit, with an "include" and/or "exclude" set which can include simple wildcard elements.- Parameters:
include
- An optional include (optionally wildcarded) pattern to filter the returned _sourceexclude
- An optional exclude (optionally wildcarded) pattern to filter the returned _source
-
fetchSource
public TopHitsAggregationBuilder fetchSource(@Nullable String[] includes, @Nullable String[] excludes) Indicate that _source should be returned with every hit, with an "include" and/or "exclude" set which can include simple wildcard elements.- Parameters:
includes
- An optional list of include (optionally wildcarded) pattern to filter the returned _sourceexcludes
- An optional list of exclude (optionally wildcarded) pattern to filter the returned _source
-
fetchSource
Indicate how the _source should be fetched. -
fetchSource
Gets theFetchSourceContext
which defines how the _source should be fetched. -
storedField
Adds a stored field to load and return (note, it must be stored) as part of the search request. To disable the stored fields entirely (source and metadata fields) usestoredField("_none_")
. -
storedFields
Sets the stored fields to load and return as part of the search request. To disable the stored fields entirely (source and metadata fields) usestoredField("_none_")
. -
storedFields
Gets the stored fields context -
docValueField
Adds a field to load from doc values and return as part of the search request. -
docValueField
Adds a field to load from doc values and return as part of the search request. -
docValueFields
Gets the field-data fields. -
fetchField
Adds a field to load and return as part of the search request. -
fetchField
Adds a field to load and return as part of the search request. -
fetchFields
Gets the fields to load and return as part of the search request. -
scriptField
Adds a script field under the given name with the provided script.- Parameters:
name
- The name of the fieldscript
- The script
-
scriptField
Adds a script field under the given name with the provided script.- Parameters:
name
- The name of the fieldscript
- The script
-
scriptFields
-
scriptFields
Gets the script fields. -
explain
Should eachSearchHit
be returned with an explanation of the hit (ranking). -
explain
public boolean explain()Indicates whether each search hit will be returned with an explanation of the hit (ranking) -
version
Should eachSearchHit
be returned with a version associated with it. -
version
public boolean version()Indicates whether the document's version will be included in the search hits. -
seqNoAndPrimaryTerm
Should eachSearchHit
be returned with the sequence number and primary term of the last modification of the document. -
seqNoAndPrimaryTerm
Indicates whetherSearchHit
s should be returned with the sequence number and primary term of the last modification of the document. -
trackScores
Applies when sorting, and controls if scores will be tracked as well. Defaults tofalse
. -
trackScores
public boolean trackScores()Indicates whether scores will be tracked for this request. -
subAggregations
Description copied from class:AbstractAggregationBuilder
Registers sub-factories with this factory. The sub-factory will be responsible for the creation of sub-aggregators under the aggregator created by this factory.- Specified by:
subAggregations
in interfaceBaseAggregationBuilder
- Overrides:
subAggregations
in classAbstractAggregationBuilder<TopHitsAggregationBuilder>
- Parameters:
subFactories
- The sub-factories- Returns:
- this factory (fluent interface)
-
bucketCardinality
Description copied from class:AggregationBuilder
A rough count of the number of buckets thatAggregator
s built by this builder will contain per owning parent bucket.- Specified by:
bucketCardinality
in classAggregationBuilder
-
doBuild
protected org.opensearch.search.aggregations.metrics.TopHitsAggregatorFactory doBuild(QueryShardContext queryShardContext, AggregatorFactory parent, AggregatorFactories.Builder subfactoriesBuilder) throws IOException - Specified by:
doBuild
in classAbstractAggregationBuilder<TopHitsAggregationBuilder>
- Throws:
IOException
-
internalXContent
protected org.opensearch.core.xcontent.XContentBuilder internalXContent(org.opensearch.core.xcontent.XContentBuilder builder, org.opensearch.core.xcontent.ToXContent.Params params) throws IOException - Specified by:
internalXContent
in classAbstractAggregationBuilder<TopHitsAggregationBuilder>
- Throws:
IOException
-
parse
public static TopHitsAggregationBuilder parse(String aggregationName, org.opensearch.core.xcontent.XContentParser parser) throws IOException - Throws:
IOException
-
equals
- Overrides:
equals
in classAbstractAggregationBuilder<TopHitsAggregationBuilder>
-
hashCode
public int hashCode()- Overrides:
hashCode
in classAbstractAggregationBuilder<TopHitsAggregationBuilder>
-
getType
Description copied from interface:BaseAggregationBuilder
The name of the type of aggregation built by this builder.
-