-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 9.0 #8485
Open
flobernd
wants to merge
15
commits into
main
Choose a base branch
from
release-9.0
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Release 9.0 #8485
+500,301
−334,151
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ut value ranges (e.g. `long`)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changelog
1. Summary
1.1 Request Method/API Changes
1.1.1 Synchronous Request APIs
Synchronous request APIs are no longer marked as
obsolete
. We received some feedback about this deprecation and decided to revert it.1.1.2 Separate Type Arguments for Request/Response
It is now possible to specify separate type arguments for requests/responses when executing request methods:
The regular APIs with merged type arguments are still available.
1.2 Improved Fluent API
The enhanced fluent API generation is likely the most notable change in the 9.0 client.
This section describes the main syntax constructs generated based on the type of the property in the corresponding object.
1.2.1
ICollection<E>
Note: This syntax already existed in 8.x.
1.2.2
IDictionary<K, V>
The 9.0 client introduces full fluent API support for dictionary types.
Warning
The
Add{Element}
methods have different semantics compared to the standard setter methods.Standard fluent setters set or replace a value.
In contrast, the new additive methods append new elements to the dictionary.
For dictionaries where the value type does not contain required properties that must be initialized, another syntax is generated that allows easy addition of new entries by just specifying the key:
If the value type in the dictionary is a collection, additional
params
overloads are generated:1.2.3
ICollection<KeyValuePair<K, V>>
Elasticsearch often uses
ICollection<KeyValuePair<K, V>>
types for ordered dictionaries.The 9.0 client abstracts this implementation detail by providing a fluent API that can be used exactly like the one for
IDictionary<K, V>
types:1.2.4 Union Types
Fluent syntax is now as well available for all auto-generated union- and variant-types.
1.3 Improved Descriptor Design
The 9.0 release features a completely overhauled descriptor design.
Descriptors now wrap the object representation. This brings several internal quality-of-life improvements as well as noticeable benefits to end-users.
1.3.1 Wrap
Use the wrap constructor to create a new descriptor for an existing object:
All fluent methods of the descriptor will mutate the existing
request
passed to the wrap constructor.Note
Descriptors are now implemented as
struct
instead ofclass
, reducing allocation overhead as much as possible.1.3.2 Unwrap / Inspect
Descriptor values can now be inspected by unwrapping the object using an implicit conversion operator:
Unwrapping does not allocate or copy.
1.3.3 Removal of Side Effects
In 8.x, execution of (most but not all) lambda actions passed to descriptors was deferred until the actual request was made. It was never clear to the user when, and how often an action would be executed.
In 9.0, descriptor actions are always executed immediately. This ensures no unforeseen side effects occur if the user-provided lambda action mutates external state (it is still recommended to exclusively use pure/invariant actions). Consequently, the effects of all changes performed by a descriptor method are immediately applied to the wrapped object.
1.4 Request Path Parameter Properties
In 8.x, request path parameters like
Index
,Id
, etc. could only be set by calling the corresponding constructor of the request. Afterwards, there was no way to read or change the current value.In the 9.0 client, all request path parameters are exposed as
get/set
properties, allowing for easy access:1.5 Field Name Inference
The
Field
type and especially its implicit conversion operations allowed fornull
return values. This led to a poor developer experience, as the null-forgiveness operator (!
) had to be used frequently without good reason.This is no longer required in 9.0:
1.6 Uniform Date/Time/Duration Types
The encoding of date, time and duration values in Elasticsearch often varies depending on the context. In addition to string representations in ISO 8601 and RFC 3339 format, also Unix timestamps (in seconds, milliseconds, nanoseconds) or simply seconds, milliseconds, nanoseconds are frequently used.
In 8.x, most date/time values are mapped as
DateTimeOffset
, which is incorrect or at least unnecessary, since Elasticsearch works (almost) exclusively with UTC data. In addition, the various non-ISO/RFC representations were often not deserialized correctly.9.0 now represents all date/time values uniformly as
DateTime
and also uses the nativeTimeSpan
type for all durations.Note
There are some places where the Elasticsearch custom date/time/duration types are continued to be used. This is always the case when the type has special semantics and/or offers functionality that goes beyond that of the native date/time/duration types (e.g.
Duration
,DateMath
).1.7 Improved Container Design
In 8.x, container types like
Query
orAggregation
had to be initialized using static factory methods.This made it mandatory to assign the created container to a temporary variable if additional properties of the container (not the contained variant) needed to be set:
Additionally, it was not possible to inspect the contained variant.
In 9.0, each possible container variant is represented as a regular property of the container. This allows for determining and inspecting the contained variant and initializing container properties in one go when using an object initializer:
Warning
A container can still only contain a single variant. Setting multiple variants at once is invalid.
Consecutive assignments of variant properties (e.g., first setting
Max
, thenMin
) will cause the previous variant to be replaced.1.8 Sorting
Applying a sort order to a search request using the fluent API is now more convenient:
The improvements are even more evident when specifying a sort order for aggregations:
1.9 Safer Object Creation
In version 9.0, users are better guided to correctly initialize objects and thus prevent invalid requests.
For this purpose, at least one constructor is now created that enforces the initialization of all required properties. Existing parameterless constructors or constructor variants that allow the creation of incomplete objects are preserved for backwards compatibility reasons, but are marked as obsolete.
For NET7+ TFMs, required properties are marked with the
required
keyword, and a non-deprecated parameterless constructor is unconditionally generated.Note
Please note that the use of descriptors still provides the chance to create incomplete objects/requests, as descriptors do not enforce the initialization of all required properties for usability reasons.
1.9 Serialization
Serialization in version 9.0 has been completely overhauled, with a primary focus on robustness and performance. Additionally, initial milestones have been set for future support of native AOT.
In 9.0, round-trip serialization is now supported for all types (limited to all JSON serializable types).
Warning
Note that only the body is serialized for request types. Path- and query properties must be handled manually.
Note
It is important to use the
RequestResponseSerializer
when (de-)serializing client internal types. Direct use ofJsonSerializer
will not work.2. Breaking Changes
This section contains an extensive list of breaking changes.
The 💥 icon indicates changes that are most likely breaking for users, whereas the⚠️ icon indicates breaking changes that will not affect most users (e.g., changes in fluent descriptors that do not affect the lambda expression syntax).
2.1 💥
Container types now use regular properties for their variants instead of static factory methods (read more).
This change primarily affects the
Query
andAggregation
types.2.2 💥
Removed the generic version of some request descriptors for which the corresponding requests do not contain inferrable properties.
These descriptors were generated unintentionally.
When migrating, the generic type parameter must be removed from the type, e.g.,
AsyncSearchStatusRequestDescriptor<TDocument>
should become justAsyncSearchStatusRequestDescriptor
.List of affected descriptors:
AsyncQueryDeleteRequestDescriptor<TDocument>
AsyncQueryGetRequestDescriptor<TDocument>
AsyncSearchStatusRequestDescriptor<TDocument>
DatabaseConfigurationDescriptor<TDocument>
DatabaseConfigurationFullDescriptor<TDocument>
DeleteAsyncRequestDescriptor<TDocument>
DeleteAsyncSearchRequestDescriptor<TDocument>
DeleteDataFrameAnalyticsRequestDescriptor<TDocument>
DeleteGeoipDatabaseRequestDescriptor<TDocument>
DeleteIpLocationDatabaseRequestDescriptor<TDocument>
DeleteJobRequestDescriptor<TDocument>
DeletePipelineRequestDescriptor<TDocument>
DeleteScriptRequestDescriptor<TDocument>
DeleteSynonymRequestDescriptor<TDocument>
EqlDeleteRequestDescriptor<TDocument>
EqlGetRequestDescriptor<TDocument>
GetAsyncRequestDescriptor<TDocument>
GetAsyncSearchRequestDescriptor<TDocument>
GetAsyncStatusRequestDescriptor<TDocument>
GetDataFrameAnalyticsRequestDescriptor<TDocument>
GetDataFrameAnalyticsStatsRequestDescriptor<TDocument>
GetEqlStatusRequestDescriptor<TDocument>
GetGeoipDatabaseRequestDescriptor<TDocument>
GetIpLocationDatabaseRequestDescriptor<TDocument>
GetJobsRequestDescriptor<TDocument>
GetPipelineRequestDescriptor<TDocument>
GetRollupCapsRequestDescriptor<TDocument>
GetRollupIndexCapsRequestDescriptor<TDocument>
GetScriptRequestDescriptor<TDocument>
GetSynonymRequestDescriptor<TDocument>
IndexModifyDataStreamActionDescriptor<TDocument>
PreprocessorDescriptor<TDocument>
PutGeoipDatabaseRequestDescriptor<TDocument>
PutIpLocationDatabaseRequestDescriptor<TDocument>
PutScriptRequestDescriptor<TDocument>
PutSynonymRequestDescriptor<TDocument>
QueryVectorBuilderDescriptor<TDocument>
RankDescriptor<TDocument>
RenderSearchTemplateRequestDescriptor<TDocument>
SmoothingModelDescriptor<TDocument>
StartDataFrameAnalyticsRequestDescriptor<TDocument>
StartJobRequestDescriptor<TDocument>
StopDataFrameAnalyticsRequestDescriptor<TDocument>
StopJobRequestDescriptor<TDocument>
TokenizationConfigDescriptor<TDocument>
UpdateDataFrameAnalyticsRequestDescriptor<TDocument>
2.3 💥
Removed
(TDocument, IndexName)
descriptor constructors and related request APIs for all requests withIndexName
andId
path parameters.For example:
These overloads caused invocation ambiguities since both,
IndexName
andId
implement implicit conversion operators fromstring
.Alternative with same semantics:
2.4 💥
Removed
AggregationRange
/AggregationRangeDescriptor
.Replaced with
IAggregationRange
/IAggregationRangeBuilder
and corresponding implementationsDateAggregationRange
/DateAggregationRangeDescriptor
,NumberAggregationRange
/NumberAggregationRangeDescriptor
, andTermAggregationRange
/TermAggregationRangeDescriptor
.This change is driven by a modification in the Elasticsearch specification, which is used to generate large parts of the client.
Object API:
Fluent API:
2.5 💥
Renamed
DateRangeExpression
/DateRangeExpressionDescriptor
toDateAggregationRange
/DateAggregationRangeDescriptor
.This change is related to 2.3.
2.6 💥
In places where previously
long
ordouble
was used to represent a date/time/duration value,DateTime
orTimeSpan
is now used instead.2.7 💥
Removed
ExtendedBoundsDate
/ExtendedBoundsDateDescriptor
,ExtendedBoundsFloat
/ExtendedBoundsFloatDescriptor
.Replaced by
ExtendedBounds<T>
,ExtendedBoundsOfFieldDateMathDescriptor
, andExtendedBoundsOfDoubleDescriptor
.2.8⚠️
Removed
Field.Format
property and corresponding constructor and inferrer overloads.This property has not been used for some time (replaced by the
FieldAndFormat
type).2.9⚠️
Field
/Fields
static factory methods and conversion operators no longer return nullable references but throw exceptions instead (Field
) if the inputstring
/Expression
/PropertyInfo
argument isnull
.This makes implicit conversions to
Field
more user-friendly without requiring the null-forgiveness operator (!
) (read more).2.10⚠️
Removed
FieldValue.IsLazyDocument
,FieldValue.IsComposite
, and the corresponding members in theFieldValue.ValueKind
enum.These values have not been used for some time.
2.11⚠️
Removed static
FieldSort.Empty
member.Sorting got reworked which makes this member obsolete (read more).
2.12⚠️
All descriptor types are now implemented as
struct
instead ofclass
.References
Closes #8485
Closes #8002
Closes #7792
Closes #8013
Closes #7812
Closes #8335
Closes #8338
Closes #8349
Closes #8227
Closes #8191
Closes #8150
Closes #8479
Closes #8465
Closes #8436
Closes #8435
Closes #8378
Closes #8347
Closes #8309
Closes #8255
Closes #8485
Closes #8149
Closes #8114
Closes #8016
Closes #7968
Closes #7913
Closes #7872
Closes #7855
Closes #7825
Closes #7594
Closes #7508