Alphabetize
This commit is contained in:
parent
6abaa71599
commit
c4c00409ee
|
@ -46,12 +46,12 @@ All bulk URL parameters are optional.
|
||||||
Parameter | Type | Description
|
Parameter | Type | Description
|
||||||
:--- | :--- | :---
|
:--- | :--- | :---
|
||||||
pipeline | String | The pipeline ID for preprocessing documents.
|
pipeline | String | The pipeline ID for preprocessing documents.
|
||||||
wait_for_active_shards | String | Specifies the number of active shards that must be available before OpenSearch processes the bulk request. Default is 1 (only the primary shard). Set to `all` or a positive integer. Values greater than 1 require replicas. For example, if you specify a value of 3, the index must have two replicas distributed across two additional nodes for the request to succeed.
|
|
||||||
refresh | Enum | Whether to refresh the affected shards after performing the indexing operations. Default is `false`. `true` makes the changes show up in search results immediately, but hurts cluster performance. `wait_for` waits for a refresh. Requests take longer to return, but cluster performance doesn't suffer.
|
refresh | Enum | Whether to refresh the affected shards after performing the indexing operations. Default is `false`. `true` makes the changes show up in search results immediately, but hurts cluster performance. `wait_for` waits for a refresh. Requests take longer to return, but cluster performance doesn't suffer.
|
||||||
require_alias | Boolean | Set to `true` to require that all actions target an index alias rather than an index. Default is `false`.
|
require_alias | Boolean | Set to `true` to require that all actions target an index alias rather than an index. Default is `false`.
|
||||||
routing | String | Routes the request to the specified shard.
|
routing | String | Routes the request to the specified shard.
|
||||||
timeout | Time | How long to wait for the request to return. Default `1m`.
|
timeout | Time | How long to wait for the request to return. Default `1m`.
|
||||||
type | String | (Deprecated) The default document type for documents that don't specify a type. Default is `_doc`. We highly recommend ignoring this parameter and using a type of `_doc` for all indices.
|
type | String | (Deprecated) The default document type for documents that don't specify a type. Default is `_doc`. We highly recommend ignoring this parameter and using a type of `_doc` for all indices.
|
||||||
|
wait_for_active_shards | String | Specifies the number of active shards that must be available before OpenSearch processes the bulk request. Default is 1 (only the primary shard). Set to `all` or a positive integer. Values greater than 1 require replicas. For example, if you specify a value of 3, the index must have two replicas distributed across two additional nodes for the request to succeed.
|
||||||
{% comment %}_source | List | asdf
|
{% comment %}_source | List | asdf
|
||||||
_source_excludes | list | asdf
|
_source_excludes | list | asdf
|
||||||
_source_includes | list | asdf{% endcomment %}
|
_source_includes | list | asdf{% endcomment %}
|
||||||
|
|
Loading…
Reference in New Issue