forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into lucene-release
# Conflicts: # server/src/main/java/org/elasticsearch/TransportVersions.java
- Loading branch information
Showing
335 changed files
with
7,165 additions
and
2,082 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 100018 | ||
summary: Improve time-series error and documentation | ||
area: "TSDB" | ||
type: enhancement | ||
issues: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pr: 100020 | ||
summary: "[CI] `SearchResponseTests#testSerialization` failing resolved" | ||
area: Search | ||
type: bug | ||
issues: | ||
- 100005 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 99584 | ||
summary: Adding an option for trained models to be platform specific | ||
area: Machine Learning | ||
type: enhancement | ||
issues: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 99832 | ||
summary: APM Metering API | ||
area: Infra/Core | ||
type: enhancement | ||
issues: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 99947 | ||
summary: GET `_data_stream` displays both ILM and DSL information | ||
area: Data streams | ||
type: feature | ||
issues: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pr: 99995 | ||
summary: When a primary is inactive but this is considered expected, the same applies for the replica of this shard. | ||
area: Health | ||
type: enhancement | ||
issues: | ||
- 99951 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+80.6 KB
(120%)
docs/reference/images/index-mgmt/management_index_details.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
[role="xpack"] | ||
[[delete-inference-api]] | ||
=== Delete {infer} API | ||
|
||
Deletes an {infer} model deployment. | ||
|
||
|
||
[discrete] | ||
[[delete-inference-api-request]] | ||
==== {api-request-title} | ||
|
||
`DELETE /_inference/<task_type>/<model_id>` | ||
|
||
[discrete] | ||
[[delete-inference-api-prereqs]] | ||
==== {api-prereq-title} | ||
|
||
* Requires the `manage` <<privileges-list-cluster,cluster privilege>>. | ||
|
||
|
||
[discrete] | ||
[[delete-inference-api-path-params]] | ||
==== {api-path-parms-title} | ||
|
||
<model_id>:: | ||
(Required, string) | ||
The unique identifier of the {infer} model to delete. | ||
|
||
<task_type>:: | ||
(Required, string) | ||
The type of {infer} task that the model performs. | ||
|
||
|
||
[discrete] | ||
[[delete-inference-api-example]] | ||
==== {api-examples-title} | ||
|
||
The following API call deletes the `my-elser-model` {infer} model that can | ||
perform `sparse_embedding` tasks. | ||
|
||
|
||
[source,console] | ||
------------------------------------------------------------ | ||
DELETE /_inference/sparse_embedding/my-elser-model | ||
------------------------------------------------------------ | ||
// TEST[skip:TBD] | ||
|
||
|
||
The API returns the following response: | ||
|
||
[source,console-result] | ||
------------------------------------------------------------ | ||
{ | ||
"acknowledged": true | ||
} | ||
------------------------------------------------------------ | ||
// NOTCONSOLE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
[role="xpack"] | ||
[[get-inference-api]] | ||
=== Get {infer} API | ||
|
||
Retrieves {infer} model information. | ||
|
||
[discrete] | ||
[[get-inference-api-request]] | ||
==== {api-request-title} | ||
|
||
`GET /_inference/_all` | ||
|
||
`GET /_inference/<task_type>/_all` | ||
|
||
`GET /_inference/<task_type>/<model_id>` | ||
|
||
[discrete] | ||
[[get-inference-api-prereqs]] | ||
==== {api-prereq-title} | ||
|
||
* Requires the `manage` <<privileges-list-cluster,cluster privilege>>. | ||
|
||
[discrete] | ||
[[get-inference-api-desc]] | ||
==== {api-description-title} | ||
|
||
You can get information in a single API request for: | ||
|
||
* a single {infer} model by providing the task type and the model ID, | ||
* all of the {infer} models for a certain task type by providing the task type | ||
and a wildcard expression, | ||
* all of the {infer} models by using a wildcard expression. | ||
|
||
|
||
[discrete] | ||
[[get-inference-api-path-params]] | ||
==== {api-path-parms-title} | ||
|
||
`<model_id>`:: | ||
(Optional, string) | ||
The unique identifier of the {infer} model. | ||
|
||
|
||
`<task_type>`:: | ||
(Optional, string) | ||
The type of {infer} task that the model performs. | ||
|
||
|
||
[discrete] | ||
[[get-inference-api-example]] | ||
==== {api-examples-title} | ||
|
||
The following API call retrives information about the `my-elser-model` {infer} | ||
model that can perform `sparse_embedding` tasks. | ||
|
||
|
||
[source,console] | ||
------------------------------------------------------------ | ||
GET _inference/sparse_embedding/my-elser-model | ||
------------------------------------------------------------ | ||
// TEST[skip:TBD] | ||
|
||
|
||
The API returns the following response: | ||
|
||
[source,console-result] | ||
------------------------------------------------------------ | ||
{ | ||
"model_id": "my-elser-model", | ||
"task_type": "sparse_embedding", | ||
"service": "elser_mlnode", | ||
"service_settings": { | ||
"num_allocations": 1, | ||
"num_threads": 1 | ||
}, | ||
"task_settings": {} | ||
} | ||
------------------------------------------------------------ | ||
// NOTCONSOLE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[role="xpack"] | ||
[[inference-apis]] | ||
== {infer-cap} APIs | ||
|
||
You can use the following APIs to manage {infer} models and perform {infer}: | ||
|
||
* <<delete-inference-api>> | ||
* <<get-inference-api>> | ||
* <<post-inference-api>> | ||
* <<put-inference-api>> | ||
|
||
|
||
include::delete-inference.asciidoc[] | ||
include::get-inference.asciidoc[] | ||
include::post-inference.asciidoc[] | ||
include::put-inference.asciidoc[] |
Oops, something went wrong.