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
- **`name` (Optional, string)**: The name of the template to return.
2976
2976
Accepts wildcard expressions. If omitted, all templates are returned.
2977
-
- **`h` (Optional, string \| string[])**: List of columns to appear in the response. Supports simple wildcards.
2977
+
- **`h` (Optional, Enum("name" \| "index_patterns" \| "order" \| "version" \| "composed_of") \| Enum("name" \| "index_patterns" \| "order" \| "version" \| "composed_of")[])**: A list of columns names to display. It supports simple wildcards.
2978
2978
- **`s` (Optional, string \| string[])**: List of columns that determine how the table should be sorted.
2979
2979
Sorting defaults to ascending and can be changed by setting `:asc`
2980
2980
or `:desc` as a suffix to the column name.
@@ -7162,6 +7162,7 @@ Supports a list of values, such as `open,hidden`.
7162
7162
- **`allow_no_indices` (Optional, boolean)**: If `false`, the request returns an error if any wildcard expression, index alias, or `_all` value targets only missing or closed indices.
7163
7163
This behavior applies even if the request targets other open indices.
7164
7164
For example, a request targeting `foo*,bar*` returns an error if an index starts with `foo` but no index starts with `bar`.
7165
+
- **`mode` (Optional, Enum("standard" \| "time_series" \| "logsdb" \| "lookup") \| Enum("standard" \| "time_series" \| "logsdb" \| "lookup")[])**: Filter indices by index mode - standard, lookup, time_series, etc. List of IndexMode. Empty means no filter.
- **`service` (Enum("elser"))**: The type of service supported for the specified task type. In this case, `elser`.
8067
8068
- **`service_settings` ({ adaptive_allocations, num_allocations, num_threads })**: Settings used to install the inference model. These settings are specific to the `elser` service.
@@ -8108,7 +8110,7 @@ client.inference.putGooglevertexai({ task_type, googlevertexai_inference_id, ser
8108
8110
- **`service` (Enum("googlevertexai"))**: The type of service supported for the specified task type. In this case, `googlevertexai`.
8109
8111
- **`service_settings` ({ location, model_id, project_id, rate_limit, service_account_json })**: Settings used to install the inference model. These settings are specific to the `googlevertexai` service.
- **`repository` (string)**: The name of the repository.
14064
14066
- **`blob_count` (Optional, number)**: The total number of blobs to write to the repository during the test.
14065
-
For realistic experiments, you should set it to at least `2000`.
14067
+
For realistic experiments, set this parameter to at least `2000`.
14066
14068
- **`concurrency` (Optional, number)**: The number of operations to run concurrently during the test.
14069
+
For realistic experiments, leave this parameter unset.
14067
14070
- **`detailed` (Optional, boolean)**: Indicates whether to return detailed results, including timing information for every operation performed during the analysis.
14068
14071
If false, it returns only a summary of the analysis.
14069
14072
- **`early_read_node_count` (Optional, number)**: The number of nodes on which to perform an early read operation while writing each blob.
14070
14073
Early read operations are only rarely performed.
14074
+
For realistic experiments, leave this parameter unset.
14071
14075
- **`max_blob_size` (Optional, number \| string)**: The maximum size of a blob to be written during the test.
14072
-
For realistic experiments, you should set it to at least `2gb`.
14076
+
For realistic experiments, set this parameter to at least `2gb`.
14073
14077
- **`max_total_data_size` (Optional, number \| string)**: An upper limit on the total size of all the blobs written during the test.
14074
-
For realistic experiments, you should set it to at least `1tb`.
14078
+
For realistic experiments, set this parameter to at least `1tb`.
14075
14079
- **`rare_action_probability` (Optional, number)**: The probability of performing a rare action such as an early read, an overwrite, or an aborted write on each blob.
14080
+
For realistic experiments, leave this parameter unset.
14076
14081
- **`rarely_abort_writes` (Optional, boolean)**: Indicates whether to rarely cancel writes before they complete.
14082
+
For realistic experiments, leave this parameter unset.
14077
14083
- **`read_node_count` (Optional, number)**: The number of nodes on which to read a blob after writing.
14084
+
For realistic experiments, leave this parameter unset.
14078
14085
- **`register_operation_count` (Optional, number)**: The minimum number of linearizable register operations to perform in total.
14079
-
For realistic experiments, you should set it to at least `100`.
14086
+
For realistic experiments, set this parameter to at least `100`.
14080
14087
- **`seed` (Optional, number)**: The seed for the pseudo-random number generator used to generate the list of operations performed during the test.
14081
14088
To repeat the same set of operations in multiple experiments, use the same seed in each experiment.
14082
14089
Note that the operations are performed concurrently so might not always happen in the same order on each run.
14090
+
For realistic experiments, leave this parameter unset.
14083
14091
- **`timeout` (Optional, string \| -1 \| 0)**: The period of time to wait for the test to complete.
14084
14092
If no response is received before the timeout expires, the test is cancelled and returns an error.
14093
+
For realistic experiments, set this parameter sufficiently long to allow the test to complete.
0 commit comments