Package org.elasticsearch.join.query
Class HasChildQueryBuilder
java.lang.Object
org.elasticsearch.index.query.AbstractQueryBuilder<HasChildQueryBuilder>
org.elasticsearch.join.query.HasChildQueryBuilder
- All Implemented Interfaces:
NamedWriteable,Writeable,ToXContent,ToXContentObject,QueryBuilder,Rewriteable<QueryBuilder>
public class HasChildQueryBuilder extends AbstractQueryBuilder<HasChildQueryBuilder>
A query builder for
has_child query.-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHasChildQueryBuilder.LateParsingQueryA query that rewrites into another query usingJoinUtil.createJoinQuery(String, Query, Query, IndexSearcher, ScoreMode, OrdinalMap, int, int)that executes the actual join.Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V extends java.lang.Object>, Writeable.Writer<V extends java.lang.Object> -
Field Summary
Fields Modifier and Type Field Description static booleanDEFAULT_IGNORE_UNMAPPEDThe default value for ignore_unmapped.static intDEFAULT_MAX_CHILDRENThe default maximum number of children that are required to match for the parent to be considered a match.static intDEFAULT_MIN_CHILDRENThe default minimum number of children that are required to match for the parent to be considered a match.static java.lang.StringNAMEFields inherited from class org.elasticsearch.index.query.AbstractQueryBuilder
boost, BOOST_FIELD, DEFAULT_BOOST, NAME_FIELD, queryName -
Constructor Summary
Constructors Constructor Description HasChildQueryBuilder(java.lang.String type, QueryBuilder query, org.apache.lucene.search.join.ScoreMode scoreMode)HasChildQueryBuilder(StreamInput in)Read from a stream. -
Method Summary
Modifier and Type Method Description java.lang.StringchildType()Returns the child typeprotected booleandoEquals(HasChildQueryBuilder that)protected intdoHashCode()protected QueryBuilderdoRewrite(QueryRewriteContext queryShardContext)protected org.apache.lucene.search.QuerydoToQuery(QueryShardContext context)protected voiddoWriteTo(StreamOutput out)protected voiddoXContent(XContentBuilder builder, ToXContent.Params params)protected voidextractInnerHitBuilders(java.util.Map<java.lang.String,InnerHitContextBuilder> innerHits)static HasChildQueryBuilderfromXContent(XContentParser parser)java.lang.StringgetWriteableName()booleanignoreUnmapped()Gets whether the query builder will ignore unmapped types (and run aMatchNoDocsQueryin place of this query) or throw an exception if the type is unmapped.HasChildQueryBuilderignoreUnmapped(boolean ignoreUnmapped)Sets whether the query builder should ignore unmapped types (and run aMatchNoDocsQueryin place of this query) or throw an exception if the type is unmapped.InnerHitBuilderinnerHit()Returns inner hit definition in the scope of this query and reusing the defined type and query.HasChildQueryBuilderinnerHit(InnerHitBuilder innerHit)intmaxChildren()Returns the maximum number of children that are required to match for the parent to be considered a match.intminChildren()Returns the minimum number of children that are required to match for the parent to be considered a match.HasChildQueryBuilderminMaxChildren(int minChildren, int maxChildren)Defines the minimum number of children that are required to match for the parent to be considered a match and the maximum number of children that are required to match for the parent to be considered a match.QueryBuilderquery()Returns the children query to execute.org.apache.lucene.search.join.ScoreModescoreMode()Returns how the scores from the matching child documents are mapped into the parent document.Methods inherited from class org.elasticsearch.index.query.AbstractQueryBuilder
addValidationError, boost, boost, checkNegativeBoost, declareStandardFields, equals, getName, hashCode, parseInnerQueryBuilder, printBoostAndQueryName, queryName, queryName, requireValue, rewrite, throwParsingExceptionOnMultipleFields, toQuery, toString, toXContent, writeTo
-
Field Details
-
NAME
public static final java.lang.String NAME- See Also:
- Constant Field Values
-
DEFAULT_MAX_CHILDREN
public static final int DEFAULT_MAX_CHILDRENThe default maximum number of children that are required to match for the parent to be considered a match.- See Also:
- Constant Field Values
-
DEFAULT_MIN_CHILDREN
public static final int DEFAULT_MIN_CHILDRENThe default minimum number of children that are required to match for the parent to be considered a match.- See Also:
- Constant Field Values
-
DEFAULT_IGNORE_UNMAPPED
public static final boolean DEFAULT_IGNORE_UNMAPPEDThe default value for ignore_unmapped.- See Also:
- Constant Field Values
-
-
Constructor Details
-
HasChildQueryBuilder
public HasChildQueryBuilder(java.lang.String type, QueryBuilder query, org.apache.lucene.search.join.ScoreMode scoreMode) -
HasChildQueryBuilder
Read from a stream.- Throws:
java.io.IOException
-
-
Method Details
-
doWriteTo
- Specified by:
doWriteToin classAbstractQueryBuilder<HasChildQueryBuilder>- Throws:
java.io.IOException
-
minMaxChildren
Defines the minimum number of children that are required to match for the parent to be considered a match and the maximum number of children that are required to match for the parent to be considered a match. -
innerHit
Returns inner hit definition in the scope of this query and reusing the defined type and query. -
innerHit
-
query
Returns the children query to execute. -
childType
public java.lang.String childType()Returns the child type -
scoreMode
public org.apache.lucene.search.join.ScoreMode scoreMode()Returns how the scores from the matching child documents are mapped into the parent document. -
minChildren
public int minChildren()Returns the minimum number of children that are required to match for the parent to be considered a match. The default is 1 -
maxChildren
public int maxChildren()Returns the maximum number of children that are required to match for the parent to be considered a match. The default is 2147483647 -
ignoreUnmapped
Sets whether the query builder should ignore unmapped types (and run aMatchNoDocsQueryin place of this query) or throw an exception if the type is unmapped. -
ignoreUnmapped
public boolean ignoreUnmapped()Gets whether the query builder will ignore unmapped types (and run aMatchNoDocsQueryin place of this query) or throw an exception if the type is unmapped. -
doXContent
protected void doXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException- Specified by:
doXContentin classAbstractQueryBuilder<HasChildQueryBuilder>- Throws:
java.io.IOException
-
fromXContent
- Throws:
java.io.IOException
-
getWriteableName
public java.lang.String getWriteableName() -
doToQuery
protected org.apache.lucene.search.Query doToQuery(QueryShardContext context) throws java.io.IOException- Specified by:
doToQueryin classAbstractQueryBuilder<HasChildQueryBuilder>- Throws:
java.io.IOException
-
doEquals
- Specified by:
doEqualsin classAbstractQueryBuilder<HasChildQueryBuilder>
-
doHashCode
protected int doHashCode()- Specified by:
doHashCodein classAbstractQueryBuilder<HasChildQueryBuilder>
-
doRewrite
- Overrides:
doRewritein classAbstractQueryBuilder<HasChildQueryBuilder>- Throws:
java.io.IOException
-
extractInnerHitBuilders
protected void extractInnerHitBuilders(java.util.Map<java.lang.String,InnerHitContextBuilder> innerHits)- Overrides:
extractInnerHitBuildersin classAbstractQueryBuilder<HasChildQueryBuilder>
-