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: src/Endpoints/AsyncSearch.php
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -152,11 +152,11 @@ public function status(array $params = [])
152
152
* index: list, // A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices
153
153
* wait_for_completion_timeout: time, // Specify the time that the request should block waiting for the final response
154
154
* keep_on_completion: boolean, // Control whether the response should be stored in the cluster if it completed within the provided [wait_for_completion] time (default: false)
155
-
* keep_alive: time, // Update the time interval in which the results (partial or final) for this search will be available
156
155
* batched_reduce_size: number, // The number of shard results that should be reduced at once on the coordinating node. This value should be used as the granularity at which progress results will be made available.
157
156
* request_cache: boolean, // Specify if request cache should be used for this request or not, defaults to true
158
157
* analyzer: string, // The analyzer to use for the query string
159
158
* analyze_wildcard: boolean, // Specify whether wildcard and prefix queries should be analyzed (default: false)
159
+
* ccs_minimize_roundtrips: boolean, // When doing a cross-cluster search, setting it to true may improve overall search latency, particularly when searching clusters with a large number of shards. However, when set to true, the progress of searches on the remote clusters will not be received until the search finishes on all clusters.
160
160
* default_operator: enum, // The default operator for query string query (AND or OR)
161
161
* df: string, // The field to use as default where no field prefix is given in the query string
162
162
* explain: boolean, // Specify whether to return detailed information about score computation as part of a hit
@@ -169,6 +169,7 @@ public function status(array $params = [])
169
169
* expand_wildcards: enum, // Whether to expand wildcard expression to concrete indices that are open, closed or both.
170
170
* lenient: boolean, // Specify whether format-based query failures (such as providing text to a numeric field) should be ignored
171
171
* preference: string, // Specify the node or shard the operation should be performed on (default: random)
172
+
* rest_total_hits_as_int: boolean, // Indicates whether hits.total should be rendered as an integer or an object in the rest search response
172
173
* q: string, // Query in the Lucene query string syntax
173
174
* routing: list, // A comma-separated list of specific routing values
174
175
* search_type: enum, // Search operation type
@@ -214,7 +215,7 @@ public function submit(array $params = [])
Copy file name to clipboardExpand all lines: src/Traits/ClientEndpointsTrait.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1237,6 +1237,7 @@ public function mtermvectors(array $params = [])
1237
1237
* ignore_unavailable: boolean, // Whether specified concrete indices should be ignored when unavailable (missing or closed)
1238
1238
* expand_wildcards: enum, // Whether to expand wildcard expression to concrete indices that are open, closed or both.
1239
1239
* keep_alive: string, // Specific the time to live for the point in time
1240
+
* allow_partial_search_results: boolean, // Specify whether to tolerate shards missing when creating the point-in-time, or otherwise throw an exception. (default: false)
1240
1241
* pretty: boolean, // Pretty format the returned JSON response. (DEFAULT: false)
1241
1242
* human: boolean, // Return human readable values for statistics. (DEFAULT: true)
1242
1243
* error_trace: boolean, // Include the stack trace of returned errors. (DEFAULT: false)
@@ -1258,7 +1259,7 @@ public function openPointInTime(array $params = [])
0 commit comments