| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 | 
[[breaking_50_java_api_changes]]=== Java API changes==== Count api has been removedThe deprecated count api has been removed from the Java api, use the search api instead and set size to 0.The following call[source,java]-----client.prepareCount(indices).setQuery(query).get();-----can be replaced with[source,java]-----client.prepareSearch(indices).setSource(new SearchSourceBuilder().size(0).query(query)).get();-----==== Elasticsearch will no longer detect logging implementationsElasticsearch now logs only to log4j 1.2. Previously if log4j wasn't on theclasspath it made some effort to degrade to slf4j or java.util.logging. Now itwill fail to work without the log4j 1.2 api. The log4j-over-slf4j bridge oughtto work when using the java client, as should log4j 2's log4j-1.2-api. TheElasticsearch server now only supports log4j as configured by `logging.yml`and will fail if log4j isn't present.==== Groovy dependenciesIn previous versions of Elasticsearch, the Groovy scripting capabilitiesdepended on the `org.codehaus.groovy:groovy-all` artifact.  In additionto pulling in the Groovy language, this pulls in a very large set offunctionality, none of which is needed for scripting withinElasticsearch. Aside from the inherent difficulties in managing such alarge set of dependencies, this also increases the surface area forsecurity issues. This dependency has been reduced to the core Groovylanguage `org.codehaus.groovy:groovy` artifact.==== DocumentAlreadyExistsException removed`DocumentAlreadyExistsException` is removed and a `VersionConflictException` is thrown instead (with a bettererror description). This will influence code that use the `IndexRequest.opType()` or `IndexRequest.create()`to index a document only if it doesn't already exist.==== Changes to Query Builders===== BoostingQueryBuilderRemoved setters for mandatory positive/negative query. Both arguments now haveto be supplied at construction time already and have to be non-null.===== SpanContainingQueryBuilderRemoved setters for mandatory big/little inner span queries. Both arguments now haveto be supplied at construction time already and have to be non-null. Updatedstatic factory methods in QueryBuilders accordingly.===== SpanOrQueryBuilderMaking sure that query contains at least one clause by making initial clause mandatoryin constructor.===== SpanNearQueryBuilderRemoved setter for mandatory slop parameter, needs to be set in constructor now. Alsomaking sure that query contains at least one clause by making initial clause mandatoryin constructor. Updated the static factory methods in QueryBuilders accordingly.===== SpanNotQueryBuilderRemoved setter for mandatory include/exclude span query clause, needs to be set in constructor now.Updated the static factory methods in QueryBuilders and tests accordingly.===== SpanWithinQueryBuilderRemoved setters for mandatory big/little inner span queries. Both arguments now haveto be supplied at construction time already and have to be non-null. Updatedstatic factory methods in QueryBuilders accordingly.===== QueryFilterBuilderRemoved the setter `queryName(String queryName)` since this field is not supportedin this type of query. Use `FQueryFilterBuilder.queryName(String queryName)` insteadwhen in need to wrap a named query as a filter.===== WrapperQueryBuilderRemoved `wrapperQueryBuilder(byte[] source, int offset, int length)`. Instead simplyuse  `wrapperQueryBuilder(byte[] source)`. Updated the static factory methods inQueryBuilders accordingly.===== QueryStringQueryBuilderRemoved ability to pass in boost value using `field(String field)` method in form e.g. `field^2`.Use the `field(String, float)` method instead.===== OperatorRemoved the enums called `Operator` from `MatchQueryBuilder`, `QueryStringQueryBuilder`,`SimpleQueryStringBuilder`, and `CommonTermsQueryBuilder` in favour of using the enumdefined in `org.elasticsearch.index.query.Operator` in an effort to consolidate thecodebase and avoid duplication.===== queryName and boost supportSupport for `queryName` and `boost` has been streamlined to all of the queries. That isa breaking change till queries get sent over the network as serialized json ratherthan in `Streamable` format. In fact whenever additional fields are added to the jsonrepresentation of the query, older nodes might throw error when they find unknown fields.===== InnerHitsBuilderInnerHitsBuilder now has a dedicated addParentChildInnerHits and addNestedInnerHits methodsto differentiate between inner hits for nested vs. parent / child documents. This changemakes the type / path parameter mandatory.===== MatchQueryBuilderMoving MatchQueryBuilder.Type and MatchQueryBuilder.ZeroTermsQuery enum to MatchQuery.Type.Also reusing new Operator enum.===== MoreLikeThisQueryBuilderRemoved `MoreLikeThisQueryBuilder.Item#id(String id)`, `Item#doc(BytesReference doc)`,`Item#doc(XContentBuilder doc)`. Use provided constructors instead.Removed `MoreLikeThisQueryBuilder#addLike` in favor of texts and/or items being providedat construction time. Using arrays there instead of lists now.Removed `MoreLikeThisQueryBuilder#addUnlike` in favor to using the `unlike` methodswhich take arrays as arguments now rather than the lists used before.The deprecated `docs(Item... docs)`, `ignoreLike(Item... docs)`,`ignoreLike(String... likeText)`, `addItem(Item... likeItems)` have been removed.===== GeoDistanceQueryBuilderRemoving individual setters for lon() and lat() values, both values should be set together using point(lon, lat).===== GeoDistanceRangeQueryBuilderRemoving setters for to(Object ...) and from(Object ...) in favour of the only two allowed inputarguments (String, Number). Removing setter for center point (point(), geohash()) because parameteris mandatory and should already be set in constructor.Also removing setters for lt(), lte(), gt(), gte() since they can all be replaced by equivalentcalls to to/from() and inludeLower()/includeUpper().===== GeoPolygonQueryBuilderRequire shell of polygon already to be specified in constructor instead of adding it pointwise.This enables validation, but makes it necessary to remove the addPoint() methods.===== MultiMatchQueryBuilderMoving MultiMatchQueryBuilder.ZeroTermsQuery enum to MatchQuery.ZeroTermsQuery.Also reusing new Operator enum.Removed ability to pass in boost value using `field(String field)` method in form e.g. `field^2`.Use the `field(String, float)` method instead.===== MissingQueryBuilderThe MissingQueryBuilder which was deprecated in 2.2.0 is removed. As a replacement use ExistsQueryBuilderinside a mustNot() clause. So instead of using `new ExistsQueryBuilder(name)` now use`new BoolQueryBuilder().mustNot(new ExistsQueryBuilder(name))`.===== NotQueryBuilderThe NotQueryBuilder which was deprecated in 2.1.0 is removed. As a replacement use BoolQueryBuilderwith added mustNot() clause. So instead of using `new NotQueryBuilder(filter)` now use`new BoolQueryBuilder().mustNot(filter)`.===== TermsQueryBuilderRemove the setter for `termsLookup()`, making it only possible to either use a TermsLookup object orindividual values at construction time. Also moving individual settings for the TermsLookup (lookupIndex,lookupType, lookupId, lookupPath) to the separate TermsLookup class, using constructor only and movingchecks for validation there. Removed `TermsLookupQueryBuilder` in favour of `TermsQueryBuilder`.===== FunctionScoreQueryBuilder`add` methods have been removed, all filters and functions must be provided as constructor arguments bycreating an array of `FunctionScoreQueryBuilder.FilterFunctionBuilder` objects, containing one elementfor each filter/function pair.`scoreMode` and `boostMode` can only be provided using corresponding enum members insteadof string values: see `FilterFunctionScoreQuery.ScoreMode` and `CombineFunction`.`CombineFunction.MULT` has been renamed to `MULTIPLY`.===== IdsQueryBuilderFor simplicity, only one way of adding the ids to the existing list (empty by default)  is left: `addIds(String...)`===== ShapeBuilders`InternalLineStringBuilder` is removed in favour of `LineStringBuilder`, `InternalPolygonBuilder` in favour of PolygonBuilder` and `Ring` has been replaced with `LineStringBuilder`. Also the abstract base classes `BaseLineStringBuilder` and `BasePolygonBuilder` haven been merged with their corresponding implementations.===== RescoreBuilder`RecoreBuilder.Rescorer` was merged with `RescoreBuilder`, which now is an abstract superclass. QueryRescoreBuilder currently is its only implementation.===== PhraseSuggestionBuilderThe inner DirectCandidateGenerator class has been moved out to its own class called DirectCandidateGeneratorBuilder.===== SortBuildersThe `sortMode` setter in `FieldSortBuilder`, `GeoDistanceSortBuilder` and `ScriptSortBuilder` nowaccept a `SortMode` enum instead of a String constant. Also the getter returns the same enum type.
 |