7.4.0 release highlights
edit7.4.0 release highlights
editResults pinning
editYou can use the new pinned query to define the first records (and the order in which they are returned) in a result set directly within Elasticsearch.
New shape
field type
editA new shape
field type has been added,
which allows you to position and query shapes
in a geometry of your choosing.
Circle ingest processor
editA new circle ingest processor has been added, which translates circles into regular polygons (bounded by the circles). This makes ingesting, indexing, searching, and aggregating circles both easy and efficient.
Aggregations on range fields
editThe histogram
and date histogram
aggregations now support the range
field type.
Range aggregations are useful when counting ranges that overlap with specific buckets (e.g. the number of phone calls that took place during a specific minute).
Cumulative cardinality aggregation
editA new cumulative cardinality aggregation has been added as part of our ongoing effort to provide advanced aggregations.
You can use this new pipeline aggregation to calculate a net-new total of document occurrences within a given time range.
Snapshot lifecycle management
editWe’re introducing snapshot lifecycle management (SLM), which allows an administrator to define policies, via API or Kibana UI, that manage when and how often snapshots are taken. You can use SLM to ensure that appropriate, recent backups are ready if disaster strikes or you need to restore Elasticsearch data.
API key management
editNew cluster privileges to manage API keys have been added, allowing cluster administrators to manage everything, and regular users to manage their own keys. Users can create API keys and use them to provide long-term credentials while interacting with Elasticsearch.
TLS settings for email notifications
editNotifications may contain sensitive information that must be protected over the wire. This requires that communication with the mail server is encrypted and authenticated properly. Elasticsearch now supports custom TLS settings for email notifications, allowing secure connections to servers with custom security configuration.
Automatic query cancellation
editElasticsearch now automatically terminates queries
sent through the _search
endpoint
when the initiating connection is closed.
Support for AdoptOpenJDK
editAdoptOpenJDK 13 is now supported and shipped with Elasticsearch as the pre-bundled JDK.
If you want to use your own JDK,
you can still do so by setting JAVA_HOME
before starting Elasticsearch.
The availability of a notarized AdoptOpenJDK package (per the new requirements for software running on macOS Catalina) facilitates notarization of Elasticsearch for continued support on macOS.
Regression analysis - Experimental
editRegression analysis is an experimental machine learning process for estimating the relationships among a number of feature variables and a dependent variable, then making further predictions based on the described relationship.
New vector distance functions for document script scoring - Experimental
editTwo experimential similarity measurements— Manhattan distance (L1 norm) and Euclidean distance (L2 norm)— have been added. Like the dot product and cosine similarity, the Euclidean and Manhattan distances are provided as predefined Painless functions so that they may be incorporated with other query elements as part of a script_score query.