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
// Boosts the `_score` of documents from specified indexes.
5709
-
repeatedFloatMapindices_boost=9;
5704
+
map<string, float>indices_boost=9;
5710
5705
5711
5706
// Array of wildcard (`*`) patterns. The request returns doc values for field names matching these patterns in the `hits.fields` property of the response.
5712
5707
repeatedFieldAndFormatdocvalue_fields=10;
@@ -5878,7 +5873,7 @@ message ShardFailure {
5878
5873
5879
5874
optionalstringstatus=5;
5880
5875
5881
-
optionalboolprimary=6;
5876
+
boolprimary=6;
5882
5877
}
5883
5878
messageShardInfo {
5884
5879
int32failed=1;
@@ -6265,7 +6260,7 @@ message SortCombinations {
6265
6260
// The path to a field or an array of paths. Some APIs support wildcards in the path, which allows you to select multiple fields.
6266
6261
stringfield=1;
6267
6262
6268
-
StringMapfield_with_direction=2;
6263
+
SortOrderMapfield_with_direction=2;
6269
6264
6270
6265
FieldSortMapfield_with_order=3;
6271
6266
@@ -6292,6 +6287,9 @@ enum SortOrder {
6292
6287
SORT_ORDER_ASC=1;
6293
6288
SORT_ORDER_DESC=2;
6294
6289
}
6290
+
messageSortOrderMap {
6291
+
map<string, SortOrder> sort_order_map=1;
6292
+
}
6295
6293
messageSourceConfig {
6296
6294
oneofsource_config {
6297
6295
boolfetch=1;
@@ -7011,7 +7009,7 @@ message TermsAggregation {
7011
7009
// Coerced unmapped fields into the specified type.
7012
7010
optionalstringvalue_type=14;
7013
7011
7014
-
repeatedStringMaporder=15;
7012
+
map<string, SortOrder>order=15;
7015
7013
7016
7014
optionalScriptscript=16;
7017
7015
@@ -7252,18 +7250,15 @@ message UpdateAction {
7252
7250
// When `true`, uses the contents of `doc` as the value of `upsert`.
7253
7251
optionalbooldoc_as_upsert=3;
7254
7252
7255
-
// The sequence number of the document.
7256
-
optionalint64if_seq_no=4;
7257
-
7258
-
optionalScriptscript=5;
7253
+
optionalScriptscript=4;
7259
7254
7260
7255
// When `true`, executes the script whether or not the document exists.
7261
-
optionalboolscripted_upsert=6;
7256
+
optionalboolscripted_upsert=5;
7262
7257
7263
7258
// If the document does not already exist, the contents of `upsert` are inserted as a new document. If the document exists, the `script` is executed.
// Name of the data stream, index, or index alias to perform bulk actions on.
13
-
stringindex=1;
14
-
15
-
repeatedBulkRequestBodybulk_request_body=2;
12
+
repeatedBulkRequestBodybulk_request_body=1;
16
13
17
14
// `true` or `false` to return the `_source` field or not, or a list of fields to return.
18
-
optionalSourceConfigParamx_source=3;
15
+
optionalSourceConfigParamx_source=2;
19
16
20
17
// A comma-separated list of source fields to exclude from the response.
21
-
repeatedstringx_source_excludes=4;
18
+
repeatedstringx_source_excludes=3;
22
19
23
20
// A comma-separated list of source fields to include in the response.
24
-
repeatedstringx_source_includes=5;
21
+
repeatedstringx_source_includes=4;
22
+
23
+
// Name of the data stream, index, or index alias to perform bulk actions on.
24
+
optionalstringindex=5;
25
25
26
26
// ID of the pipeline to use to preprocess incoming documents. If the index has a default ingest pipeline specified, then setting the value to `_none` disables the default ingest pipeline for this request. If a final pipeline is configured it will always run, regardless of the value of this parameter.
27
27
optionalstringpipeline=6;
@@ -49,53 +49,53 @@ message BulkRequest {
49
49
}
50
50
51
51
messageSearchRequest {
52
-
// A comma-separated list of data streams, indexes, and aliases to search. Supports wildcards (`*`). To search all data streams and indexes, omit this parameter or use `*` or `_all`.
53
-
repeatedstringindex=1;
54
-
55
52
// Indicates which source fields are returned for matching documents. These fields are returned in the `hits._source` property of the search response. Valid values are: `true` to return the entire document source; `false` to not return the document source; `<string>` to return the source fields that are specified as a comma-separated list (supports wildcard (`*`) patterns).
56
-
optionalSourceConfigParamx_source=2;
53
+
optionalSourceConfigParamx_source=1;
57
54
58
55
// A comma-separated list of source fields to exclude from the response. You can also use this parameter to exclude fields from the subset specified in `_source_includes` query parameter. If the `_source` parameter is `false`, this parameter is ignored.
59
-
repeatedstringx_source_excludes=3;
56
+
repeatedstringx_source_excludes=2;
60
57
61
58
// A comma-separated list of source fields to include in the response. If this parameter is specified, only these source fields are returned. You can exclude fields from this subset using the `_source_excludes` query parameter. If the `_source` parameter is `false`, this parameter is ignored.
62
-
repeatedstringx_source_includes=4;
59
+
repeatedstringx_source_includes=3;
63
60
64
61
// If `false`, the request returns an error if any wildcard expression, index alias, or `_all` value targets only missing or closed indexes. This behavior applies even if the request targets other open indexes. For example, a request targeting `foo*,bar*` returns an error if an index starts with `foo` but no index starts with `bar`.
65
-
optionalboolallow_no_indices=5;
62
+
optionalboolallow_no_indices=4;
66
63
67
64
// If `true`, returns partial results if there are shard request timeouts or shard failures. If `false`, returns an error with no partial results.
68
-
optionalboolallow_partial_search_results=6;
65
+
optionalboolallow_partial_search_results=5;
69
66
70
67
// If `true`, wildcard and prefix queries are analyzed. This parameter can only be used when the q query string parameter is specified.
71
-
optionalboolanalyze_wildcard=7;
68
+
optionalboolanalyze_wildcard=6;
72
69
73
70
// The number of shard results that should be reduced at once on the coordinating node. This value should be used as a protection mechanism to reduce the memory overhead per search request if the potential number of shards in the request can be large.
74
-
optionalint32batched_reduce_size=8;
71
+
optionalint32batched_reduce_size=7;
75
72
76
73
// The time after which the search request will be canceled. Request-level parameter takes precedence over `cancel_after_time_interval` cluster setting.
77
-
optionalstringcancel_after_time_interval=9;
74
+
optionalstringcancel_after_time_interval=8;
78
75
79
76
// If `true`, network round-trips between the coordinating node and the remote clusters are minimized when executing cross-cluster search (CCS) requests.
80
-
optionalboolccs_minimize_roundtrips=10;
77
+
optionalboolccs_minimize_roundtrips=9;
81
78
82
79
// The default operator for query string query: AND or OR. This parameter can only be used when the `q` query string parameter is specified.
83
-
optionalOperatordefault_operator=11;
80
+
optionalOperatordefault_operator=10;
84
81
85
82
// Field to use as default where no field prefix is given in the query string. This parameter can only be used when the q query string parameter is specified.
86
-
optionalstringdf=12;
83
+
optionalstringdf=11;
87
84
88
85
// A comma-separated list of fields to return as the docvalue representation for each hit.
89
-
repeatedstringdocvalue_fields=13;
86
+
repeatedstringdocvalue_fields=12;
90
87
91
88
// Type of index that wildcard patterns can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. Supports comma-separated values, such as `open,hidden`.
92
-
repeatedExpandWildcardexpand_wildcards=14;
89
+
repeatedExpandWildcardexpand_wildcards=13;
93
90
94
91
// If `true`, concrete, expanded or aliased indexes will be ignored when frozen.
95
-
optionalboolignore_throttled=15;
92
+
optionalboolignore_throttled=14;
96
93
97
94
// If `false`, the request returns an error if it targets a missing or closed index.
98
-
optionalboolignore_unavailable=16;
95
+
optionalboolignore_unavailable=15;
96
+
97
+
// A comma-separated list of data streams, indexes, and aliases to search. Supports wildcards (`*`). To search all data streams and indexes, omit this parameter or use `*` or `_all`.
98
+
repeatedstringindex=16;
99
99
100
100
// Defines the number of concurrent shard requests per node this search executes concurrently. This value should be used to limit the impact of the search on the cluster in order to limit the number of concurrent shard requests.
101
101
optionalint32max_concurrent_shard_requests=17;
@@ -116,7 +116,7 @@ message SearchRequest {
116
116
optionalboolrequest_cache=22;
117
117
118
118
// Indicates whether `hits.total` should be rendered as an integer or an object in the rest search response.
119
-
optionalboolrest_total_hits_as_int=23;
119
+
optionalbooltotal_hits_as_int=23;
120
120
121
121
// A custom value used to route operations to a specific shard.
0 commit comments