Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into carlosdelest/esql-mat…
Browse files Browse the repository at this point in the history
…ch-command

# Conflicts:
#	x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java
  • Loading branch information
carlosdelest committed Jul 31, 2024
2 parents 42751b7 + f79c621 commit 3cb8dc0
Show file tree
Hide file tree
Showing 493 changed files with 12,437 additions and 3,102 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public class LicenseAnalyzer {
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE\\.
SOFTWARE\\.?
""").replaceAll("\\s+", "\\\\s*"), Pattern.DOTALL)),
new LicenseMatcher(
"MIT-0",
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog/109017.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 109017
summary: "ESQL: Add `MV_PSERIES_WEIGHTED_SUM` for score calculations used by security\
\ solution"
area: ES|QL
type: "feature"
issues: [ ]
6 changes: 6 additions & 0 deletions docs/changelog/110548.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 110548
summary: "[ES|QL] Add `CombineBinaryComparisons` rule"
area: ES|QL
type: enhancement
issues:
- 108525
5 changes: 5 additions & 0 deletions docs/changelog/110630.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 110630
summary: Telemetry for inference adaptive allocations
area: Machine Learning
type: feature
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/110796.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 110796
summary: Remove needless forking to GENERIC in `TransportMultiSearchAction`
area: Search
type: bug
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/111212.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 111212
summary: Fix score count validation in reranker response
area: Ranking
type: bug
issues:
- 111202
6 changes: 6 additions & 0 deletions docs/changelog/111284.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 111284
summary: Update `semantic_text` field to support indexing numeric and boolean data
types
area: Mapping
type: enhancement
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/111290.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 111290
summary: Fix enrich policy runner exception handling on empty segments response
area: Ingest Node
type: bug
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/111311.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 111311
summary: Adding support for data streams with a match-all template
area: Data streams
type: bug
issues:
- 111204
5 changes: 5 additions & 0 deletions docs/changelog/111316.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 111316
summary: "[Service Account] Add `AutoOps` account"
area: Security
type: enhancement
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/111344.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 111344
summary: Add support for Azure Managed Identity
area: Snapshot/Restore
type: enhancement
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/111363.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 111363
summary: Ensure vector similarity correctly limits `inner_hits` returned for nested
kNN
area: Vector Search
type: bug
issues: [111093]
6 changes: 6 additions & 0 deletions docs/changelog/111366.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 111366
summary: "[Inference API] Replace `model_id` with `inference_id` in inference API\
\ except when stored"
area: Machine Learning
type: bug
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/111367.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 111367
summary: "ESQL: Add Values aggregation tests, fix `ConstantBytesRefBlock` memory handling"
area: ES|QL
type: bug
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/111445.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 111445
summary: Support booleans in routing path
area: TSDB
type: enhancement
issues: []
16 changes: 8 additions & 8 deletions docs/reference/esql/functions/aggregation-functions.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ The <<esql-stats-by>> command supports these aggregate functions:

// tag::agg_list[]
* <<esql-avg>>
* <<esql-agg-count>>
* <<esql-agg-count-distinct>>
* <<esql-count>>
* <<esql-count_distinct>>
* <<esql-max>>
* <<esql-median>>
* <<esql-median_absolute_deviation>>
Expand All @@ -19,13 +19,13 @@ The <<esql-stats-by>> command supports these aggregate functions:
* experimental:[] <<esql-st_centroid_agg>>
* <<esql-sum>>
* <<esql-top>>
* <<esql-agg-values>>
* experimental:[] <<esql-agg-weighted-avg>>
* <<esql-values>>
* experimental:[] <<esql-weighted_avg>>
// end::agg_list[]

include::count.asciidoc[]
include::count-distinct.asciidoc[]
include::layout/avg.asciidoc[]
include::layout/count.asciidoc[]
include::layout/count_distinct.asciidoc[]
include::layout/max.asciidoc[]
include::layout/median.asciidoc[]
include::layout/median_absolute_deviation.asciidoc[]
Expand All @@ -34,5 +34,5 @@ include::layout/percentile.asciidoc[]
include::layout/st_centroid_agg.asciidoc[]
include::layout/sum.asciidoc[]
include::layout/top.asciidoc[]
include::values.asciidoc[]
include::weighted-avg.asciidoc[]
include::layout/values.asciidoc[]
include::layout/weighted_avg.asciidoc[]
25 changes: 25 additions & 0 deletions docs/reference/esql/functions/appendix/count_distinct.asciidoc

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

10 changes: 10 additions & 0 deletions docs/reference/esql/functions/appendix/values.asciidoc

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

85 changes: 0 additions & 85 deletions docs/reference/esql/functions/count-distinct.asciidoc

This file was deleted.

5 changes: 5 additions & 0 deletions docs/reference/esql/functions/description/count.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.

5 changes: 5 additions & 0 deletions docs/reference/esql/functions/description/values.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.

Loading

0 comments on commit 3cb8dc0

Please sign in to comment.