Skip to content

Commit

Permalink
Merge branch 'main' into auto-ops/service-account
Browse files Browse the repository at this point in the history
  • Loading branch information
pickypg committed Jul 26, 2024
2 parents 37fb2de + 7f78fda commit 2313b94
Show file tree
Hide file tree
Showing 127 changed files with 6,335 additions and 2,568 deletions.
5 changes: 5 additions & 0 deletions docs/changelog/110734.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 110734
summary: Fix bug in ML serverless autoscaling which prevented trained model updates from triggering a scale up
area: Machine Learning
type: bug
issues: [ ]
6 changes: 6 additions & 0 deletions docs/changelog/110816.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 110816
summary: GET _cluster/settings with include_defaults returns the expected fallback value if defined in elasticsearch.yml
area: Infra/Settings
type: bug
issues:
- 110815
5 changes: 5 additions & 0 deletions docs/changelog/110971.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 110971
summary: "Search in ES|QL: Add MATCH operator"
area: ES|QL
type: feature
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/111071.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 111071
summary: Use native scalar scorer for int8_flat index
area: Vector Search
type: enhancement
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/111238.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 111238
summary: Fix validation of TEXT fields with case insensitive comparison
area: EQL
type: bug
issues:
- 111235
2 changes: 1 addition & 1 deletion docs/reference/cat/recovery.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The cat recovery API returns information about shard recoveries, both
ongoing and completed. It is a more compact view of the JSON
<<indices-recovery,index recovery>> API.

include::{es-ref-dir}/indices/recovery.asciidoc[tag=shard-recovery-desc]
include::{es-ref-dir}/modules/shard-recovery-desc.asciidoc[]


[[cat-recovery-path-params]]
Expand Down
6 changes: 4 additions & 2 deletions docs/reference/esql/esql-multi-index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ FROM events_*

[source,bash]
----
Cannot use field [client_ip] due to ambiguities being mapped as
Cannot use field [client_ip] due to ambiguities being mapped as
[2] incompatible types:
[ip] in [events_ip],
[keyword] in [events_keyword]
Expand All @@ -113,12 +113,14 @@ Cannot use field [client_ip] due to ambiguities being mapped as
[[esql-multi-index-union-types]]
=== Union types

experimental::[]

{esql} has a way to handle <<esql-multi-index-invalid-mapping, field type mismatches>>. When the same field is mapped to multiple types in multiple indices,
the type of the field is understood to be a _union_ of the various types in the index mappings.
As seen in the preceding examples, this _union type_ cannot be used in the results,
and cannot be referred to by the query
-- except when it's passed to a type conversion function that accepts all the types in the _union_ and converts the field
to a single type. {esql} offers a suite of <<esql-type-conversion-functions,type conversion functions>> to achieve this.
to a single type. {esql} offers a suite of <<esql-type-conversion-functions,type conversion functions>> to achieve this.

In the above examples, the query can use a command like `EVAL client_ip = TO_IP(client_ip)` to resolve
the union of `ip` and `keyword` to just `ip`.
Expand Down
12 changes: 6 additions & 6 deletions docs/reference/esql/functions/aggregation-functions.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ The <<esql-stats-by>> command supports these aggregate functions:
* <<esql-agg-count>>
* <<esql-agg-count-distinct>>
* <<esql-max>>
* <<esql-agg-median>>
* <<esql-agg-median-absolute-deviation>>
* <<esql-median>>
* <<esql-median_absolute_deviation>>
* <<esql-min>>
* <<esql-percentile>>
* experimental:[] <<esql-agg-st-centroid>>
* experimental:[] <<esql-st_centroid_agg>>
* <<esql-sum>>
* <<esql-top>>
* <<esql-agg-values>>
Expand All @@ -25,13 +25,13 @@ The <<esql-stats-by>> command supports these aggregate functions:

include::count.asciidoc[]
include::count-distinct.asciidoc[]
include::median.asciidoc[]
include::median-absolute-deviation.asciidoc[]
include::st_centroid_agg.asciidoc[]
include::layout/avg.asciidoc[]
include::layout/max.asciidoc[]
include::layout/median.asciidoc[]
include::layout/median_absolute_deviation.asciidoc[]
include::layout/min.asciidoc[]
include::layout/percentile.asciidoc[]
include::layout/st_centroid_agg.asciidoc[]
include::layout/sum.asciidoc[]
include::layout/top.asciidoc[]
include::values.asciidoc[]
Expand Down
7 changes: 7 additions & 0 deletions docs/reference/esql/functions/appendix/median.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions docs/reference/esql/functions/description/median.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions docs/reference/esql/functions/examples/median.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions docs/reference/esql/functions/examples/st_centroid_agg.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 49 additions & 0 deletions docs/reference/esql/functions/kibana/definition/median.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions docs/reference/esql/functions/kibana/docs/median.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions docs/reference/esql/functions/kibana/docs/st_centroid_agg.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions docs/reference/esql/functions/layout/median.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 2313b94

Please sign in to comment.