You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference.asciidoc
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6302,6 +6302,13 @@ ELSER the config is not required.
6302
6302
** *`model_size_bytes` (Optional, number)*: The estimated memory usage in bytes to keep the trained model in memory.
6303
6303
This property is supported only if defer_definition_decompression is true
6304
6304
or the model definition is not supplied.
6305
+
** *`platform_architecture` (Optional, string)*: The platform architecture (if applicable) of the trained mode. If the model
6306
+
only works on one platform, because it is heavily optimized for a particular
6307
+
processor architecture and OS combination, then this field specifies which.
6308
+
The format of the string must match the platform identifiers used by Elasticsearch,
6309
+
so one of, `linux-x86_64`, `linux-aarch64`, `darwin-x86_64`, `darwin-aarch64`,
6310
+
or `windows-x86_64`. For portable models (those that work independent of processor
6311
+
architecture or OS features), leave this field unset.
6305
6312
** *`tags` (Optional, string[])*: An array of tags to organize the model.
6306
6313
** *`defer_definition_decompression` (Optional, boolean)*: If set to `true` and a `compressed_definition` is provided, the request defers definition decompression and skips relevant validations.
Copy file name to clipboardExpand all lines: src/api/api/async_search.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ export default class AsyncSearch {
45
45
46
46
/**
47
47
* Deletes an async search by ID. If the search is still running, the search request will be cancelled. Otherwise, the saved search results are deleted.
48
-
* @see {@link https://www.elastic.co/guide/en/elasticsearch/reference/master/async-search.html | Elasticsearch API documentation}
48
+
* @see {@link https://www.elastic.co/guide/en/elasticsearch/reference/8.11/async-search.html | Elasticsearch API documentation}
@@ -71,7 +71,7 @@ export default class Autoscaling {
71
71
72
72
/**
73
73
* Gets the current autoscaling capacity based on the configured autoscaling policy. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported.
74
-
* @see {@link https://www.elastic.co/guide/en/elasticsearch/reference/master/autoscaling-get-autoscaling-capacity.html | Elasticsearch API documentation}
74
+
* @see {@link https://www.elastic.co/guide/en/elasticsearch/reference/8.11/autoscaling-get-autoscaling-capacity.html | Elasticsearch API documentation}
0 commit comments