Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into remove_duplicate_cent…
Browse files Browse the repository at this point in the history
…roid_code
  • Loading branch information
craigtaverner committed Nov 7, 2024
2 parents b8b1f8c + 6ce3e71 commit 081ff96
Show file tree
Hide file tree
Showing 91 changed files with 1,477 additions and 629 deletions.
2 changes: 0 additions & 2 deletions .buildkite/pipelines/periodic-packaging.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ steps:
matrix:
setup:
image:
- windows-2016
- windows-2019
- windows-2022
agents:
provider: gcp
Expand Down
2 changes: 0 additions & 2 deletions .buildkite/pipelines/periodic-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,6 @@ steps:
matrix:
setup:
image:
- windows-2016
- windows-2019
- windows-2022
agents:
provider: gcp
Expand Down
2 changes: 0 additions & 2 deletions .buildkite/pipelines/periodic-platform-support.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ steps:
matrix:
setup:
image:
- windows-2016
- windows-2019
- windows-2022
GRADLE_TASK:
- checkPart1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ steps:
matrix:
setup:
image:
- windows-2019
- windows-2022
PACKAGING_TASK:
- default-windows-archive
agents:
Expand Down
2 changes: 0 additions & 2 deletions .buildkite/pipelines/pull-request/packaging-tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ steps:
matrix:
setup:
image:
- windows-2016
- windows-2019
- windows-2022
PACKAGING_TASK:
- default-windows-archive
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog/113713.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 113713
summary: Adding inference endpoint validation for `AzureAiStudioService`
area: Machine Learning
type: enhancement
issues: []
15 changes: 15 additions & 0 deletions docs/changelog/114207.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
pr: 114207
summary: Remove `cluster.routing.allocation.disk.watermark.enable_for_single_data_node` setting
area: Allocation
type: breaking
issues: []
breaking:
title: Remove `cluster.routing.allocation.disk.watermark.enable_for_single_data_node` setting
area: 'Cluster and node setting'
details: >-
Prior to 7.8, whenever a cluster had only a single data node, the watermarks would not be respected.
In order to change this in 7.8+ in a backwards compatible way, we introduced the
`cluster.routing.allocation.disk.watermark.enable_for_single_data_node`
node setting. The setting was deprecated in 7.14 and was made to accept only true in 8.0
impact: No known end user impact
notable: false
5 changes: 5 additions & 0 deletions docs/changelog/115655.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 115655
summary: Better sizing `BytesRef` for Strings in Queries
area: Search
type: enhancement
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/115792.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 115792
summary: Add ES|QL `bit_length` function
area: ES|QL
type: enhancement
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/116274.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 116274
summary: "[ES|QL] Verify aggregation filter's type is boolean to avoid `class_cast_exception`"
area: ES|QL
type: bug
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/116292.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 116292
summary: Add missing header in `put_data_lifecycle` rest-api-spec
area: Data streams
type: bug
issues: []
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ PUT _connector/my-{service-name-stub}-connector
"index_name": "my-elasticsearch-index",
"name": "Content synced from {service-name}",
"service_type": "{service-name-stub}",
"is_native": "true"
"is_native": true
}
----
// TEST[skip:can't test in isolation]
Expand Down
14 changes: 9 additions & 5 deletions docs/reference/connector/docs/connectors-ms-sql.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ include::_connectors-create-native.asciidoc[]
To use this connector as a *managed connector*, use the *Connector* workflow.
See <<es-native-connectors>>.
Users require the `sysadmin` server role.
Users require the `sysadmin` SQL Server role.
Note that SQL Server Authentication is required.
Windows Authentication is not supported.
For additional operations, see <<es-connectors-usage>>.
Expand Down Expand Up @@ -75,10 +77,10 @@ Port::
The port where the Microsoft SQL Server is hosted. Default value is `1433`.
Username::
The username of the account for Microsoft SQL Server.
The username of the account for Microsoft SQL Server (SQL Server Authentication only).
Password::
The password of the account to be used for the Microsoft SQL Server.
The password of the account to be used for the Microsoft SQL Server (SQL Server Authentication only).
Database::
Name of the Microsoft SQL Server database.
Expand Down Expand Up @@ -310,6 +312,8 @@ include::_connectors-create-client.asciidoc[]
===== Usage
Users require the `sysadmin` server role.
Note that SQL Server Authentication is required.
Windows Authentication is not supported.
To use this connector as a *self-managed connector*, see <<es-build-connector>>
For additional usage operations, see <<es-connectors-usage>>.
Expand Down Expand Up @@ -350,10 +354,10 @@ Examples:
The port where the Microsoft SQL Server is hosted. Default value is `9090`.
`username`::
The username of the account for Microsoft SQL Server.
The username of the account for Microsoft SQL Server. (SQL Server Authentication only)
`password`::
The password of the account to be used for the Microsoft SQL Server.
The password of the account to be used for the Microsoft SQL Server. (SQL Server Authentication only)
`database`::
Name of the Microsoft SQL Server database.
Expand Down
5 changes: 5 additions & 0 deletions docs/reference/esql/functions/description/bit_length.asciidoc

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/bit_length.asciidoc

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/bit_length.md

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

15 changes: 15 additions & 0 deletions docs/reference/esql/functions/layout/bit_length.asciidoc

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

6 changes: 6 additions & 0 deletions docs/reference/esql/functions/parameters/bit_length.asciidoc

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

1 change: 1 addition & 0 deletions docs/reference/esql/functions/signature/bit_length.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions docs/reference/esql/functions/string-functions.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
{esql} supports these string functions:

// tag::string_list[]
* <<esql-bit_length>>
* <<esql-concat>>
* <<esql-ends_with>>
* <<esql-from_base64>>
Expand All @@ -30,6 +31,7 @@
* <<esql-trim>>
// end::string_list[]

include::layout/bit_length.asciidoc[]
include::layout/concat.asciidoc[]
include::layout/ends_with.asciidoc[]
include::layout/from_base64.asciidoc[]
Expand Down
10 changes: 10 additions & 0 deletions docs/reference/esql/functions/types/bit_length.asciidoc

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

6 changes: 6 additions & 0 deletions docs/reference/query-dsl/rule-query.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
The old syntax using `rule_query` and `ruleset_id` is deprecated and will be removed in a future release, so it is strongly advised to migrate existing rule queries to the new API structure.
====

[TIP]
====
The rule query is not supported for use alongside reranking.
If you want to use query rules in conjunction with reranking, use the <<rule-retriever, rule retriever>> instead.
====

Applies <<query-rules-apis,query rules>> to the query before returning results.
Query rules can be used to promote documents in the manner of a <<query-dsl-pinned-query>> based on matching defined rules, or to identify specific documents to exclude from a contextual result set.
If no matching query rules are defined, the "organic" matches for the query are returned.
Expand Down
Loading

0 comments on commit 081ff96

Please sign in to comment.