Skip to content

Commit 9e901c5

Browse files
authored
[DOCS] Edits 7.3 release highlights (#45066)
1 parent fdc6c98 commit 9e901c5

File tree

2 files changed

+28
-25
lines changed

2 files changed

+28
-25
lines changed

docs/reference/release-notes/highlights-7.3.0.asciidoc

Lines changed: 28 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,16 @@
44
<titleabbrev>7.3.0</titleabbrev>
55
++++
66

7-
coming[7.3.0]
8-
97
//NOTE: The notable-highlights tagged regions are re-used in the
108
//Installation and Upgrade Guide
119

1210
// tag::notable-highlights[]
1311
[float]
1412
==== Voting-only master nodes
1513

16-
A new <<voting-only-node,`node.voting-only`>> role has been introduced that
17-
allows nodes to participate in elections even though they are not eligible to become the master.
14+
A new {ref}/modules-node.html#voting-only-node[`node.voting-only`] role has been
15+
introduced that allows nodes to participate in elections even though they are
16+
not eligible to become the master.
1817
The benefit is that these nodes still help with high availability while
1918
requiring less CPU and heap than master nodes.
2019

@@ -27,8 +26,8 @@ distribution of {es}.
2726
[float]
2827
==== Reloading of search-time synonyms
2928

30-
A new <<indices-reload-analyzers,Analyzer reload API>> allows to reload the
31-
definition of search-time analyzers and their associated resources. A common
29+
A new {ref}/indices-reload-analyzers.html[Analyzer reload API] allows to reload
30+
the definition of search-time analyzers and their associated resources. A common
3231
use-case for this API is the reloading of search-time synonyms. In earlier
3332
versions of Elasticsearch, users could force synonyms to be reloaded by closing
3433
the index and then opening it again. With this new API, synonyms can be updated
@@ -43,12 +42,12 @@ of {es}.
4342
[float]
4443
==== New `flattened` field type
4544

46-
A new <<flattened,`flattened`>> field type has been added, which can index
45+
A new {ref}/flattened.html[`flattened`] field type has been added, which can index
4746
arbitrary `json` objects into a single field. This helps avoid hitting issues
4847
due to many fields in mappings, at the cost of more limited search
4948
functionality.
5049

51-
NOTE: The <<flattened,`flattened`>> field type is only available with the
50+
NOTE: The `flattened` field type is only available with the
5251
default distribution of {es}.
5352

5453
// end::notable-highlights[]
@@ -57,9 +56,12 @@ default distribution of {es}.
5756
[float]
5857
==== Functions on vector fields
5958

60-
Painless now support computing the <<vector-functions,cosine similarity>> and
61-
the <<vector-functions,dot product>> of a query vector and either values of a
62-
<<sparse-vector,`sparse_vector`>> or <<dense-vector,`dense_vector`>> field.
59+
Painless now support computing the
60+
{ref}/query-dsl-script-score-query.html#vector-functions[cosine similarity] and
61+
the {ref}/query-dsl-script-score-query.html#vector-functions[dot product] of a
62+
query vector and either values of a
63+
{ref}/sparse-vector.html[`sparse_vector`] or
64+
{ref}/dense-vector.html[`dense_vector`] field.
6365

6466
NOTE: These functions are only available with the default distribution of {es}.
6567

@@ -69,8 +71,9 @@ NOTE: These functions are only available with the default distribution of {es}.
6971
[float]
7072
==== Prefix and wildcard support for intervals
7173

72-
<<query-dsl-intervals-query,Intervals>> now support querying by
73-
<<intervals-prefix,prefix>> or <<intervals-wildcard,wildcard>>.
74+
{ref}/query-dsl-intervals-query.html[Intervals] now support querying by
75+
{ref}/query-dsl-intervals-query.html#intervals-prefix[prefix] or
76+
{ref}/query-dsl-intervals-query.html#intervals-wildcard[wildcard].
7477

7578
// end::notable-highlights[]
7679

@@ -79,19 +82,19 @@ NOTE: These functions are only available with the default distribution of {es}.
7982
==== Rare terms aggregation
8083

8184
A new
82-
<<search-aggregations-bucket-rare-terms-aggregation,Rare Terms aggregation>>
85+
{ref}/search-aggregations-bucket-rare-terms-aggregation.html[Rare Terms aggregation]
8386
allows to find the least frequent values in a field. It is intended to replace
8487
the `"order" : { "_count" : "asc" }` option of the
85-
<<search-aggregations-bucket-terms-aggregation,terms aggregations>>.
88+
{ref}/search-aggregations-bucket-terms-aggregation.html[terms aggregations].
8689

8790
// end::notable-highlights[]
8891

8992
// tag::notable-highlights[]
9093
[float]
9194
==== Aliases are replicated via {ccr}
9295

93-
Read aliases are now replicated via <<ccr-put-follow,{ccr}>>. Note that write
94-
aliases are still not replicated since they only make sense for indices that
96+
Read aliases are now replicated via {ref}/ccr-put-follow.html[{ccr}]. Note that
97+
write aliases are still not replicated since they only make sense for indices that
9598
are being written to while follower indices do not receive direct writes.
9699

97100
// end::notable-highlights[]
@@ -100,16 +103,16 @@ are being written to while follower indices do not receive direct writes.
100103
[float]
101104
==== SQL supports frozen indices
102105

103-
{es-sql} now supports querying <<frozen-indices, frozen indices>> via the new
104-
<<sql-index-frozen,`FROZEN`>> keyword.
106+
{es-sql} now supports querying {ref}/frozen-indices.html[frozen indices] via the
107+
new {ref}/sql-index-frozen.html[`FROZEN`] keyword.
105108

106109
// end::notable-highlights[]
107110

108111
// tag::notable-highlights[]
109112
[float]
110113
==== Fixed memory leak when using templates in document-level security
111114

112-
{xpack-ref}/document-level-security.html[Document-level security] was using an
115+
{stack-ov}/document-level-security.html[Document-level security] was using an
113116
unbounded cache for the set of visible documents. This could lead to a memory
114117
leak when using a templated query as a role query. The cache has been fixed to
115118
evict based on memory usage and has a limit of 50MB.
@@ -120,9 +123,9 @@ evict based on memory usage and has a limit of 50MB.
120123
[float]
121124
==== More memory-efficient aggregations on `keyword` fields
122125

123-
<<search-aggregations-bucket-terms-aggregation,Terms aggregations>> generally
124-
need to build
125-
<<search-aggregations-bucket-terms-aggregation-execution-hint,global ordinals>>
126+
{ref}/search-aggregations-bucket-terms-aggregation.html[Terms aggregations]
127+
generally need to build
128+
{ref}/search-aggregations-bucket-terms-aggregation.html#search-aggregations-bucket-terms-aggregation-execution-hint[global ordinals]
126129
in order to run. Unfortunately this operation became more memory-intensive in
127130
6.0 due to the move to doc-value iterators in order to improve handling of
128131
sparse fields. Memory pressure of global ordinals now goes back to a more
@@ -170,7 +173,8 @@ bulk of the data in the index. We assign to each analysed data point an
170173
index.
171174

172175
In addition to new {oldetection} functionality, we are introducing the
173-
{ref}/evaluate-dfanalytics.html[evaluate {dfanalytics} API], which enables you to compute a range of performance metrics such
176+
{ref}/evaluate-dfanalytics.html[evaluate {dfanalytics} API], which enables you
177+
to compute a range of performance metrics such
174178
as confusion matrices, precision, recall, the
175179
https://en.wikipedia.org/wiki/Receiver_operating_characteristic[receiver-operating characteristics (ROC) curve]
176180
and the area under the ROC curve. If you are running {oldetection} on a source

docs/reference/sql/index.asciidoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
:sql-specs: {sql-tests}/src/main/resources/
88
:jdbc-tests: {sql-tests}/src/main/java/org/elasticsearch/xpack/sql/qa/jdbc
99
:security-tests: {sql-tests}/security/src/test/java/org/elasticsearch/xpack/sql/qa/security
10-
:es-sql: Elasticsearch SQL
1110

1211
[partintro]
1312
--

0 commit comments

Comments
 (0)