Class BulkRequest
Request for Bulk
https://opensearch.org/docs/latest/api-reference/document-apis/bulk/
Inheritance
Inherited Members
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public class BulkRequest : PlainRequestBase<BulkRequestParameters>, IBulkRequest, IRequest<BulkRequestParameters>, IRequest
Constructors
| Edit this page View SourceBulkRequest()
/_bulk
Declaration
public BulkRequest()
BulkRequest(IndexName)
/{index}/_bulk
Declaration
public BulkRequest(IndexName index)
Parameters
Type | Name | Description |
---|---|---|
IndexName | index | Optional, accepts null |
Properties
| Edit this page View SourceOperations
Declaration
public BulkOperationsCollection<IBulkOperation> Operations { get; set; }
Property Value
Type | Description |
---|---|
BulkOperationsCollection<IBulkOperation> |
Pipeline
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.
Declaration
public string Pipeline { get; set; }
Property Value
Type | Description |
---|---|
string |
Refresh
If true
, OpenSearch refreshes the affected shards to make this operation visible to search, if wait_for
then wait for a refresh to
make this operation visible to search, if false
do nothing with refreshes. Valid values: true
, false
, wait_for
.
Declaration
public Refresh? Refresh { get; set; }
Property Value
Type | Description |
---|---|
Refresh? |
RequireAlias
If true
, the request's actions must target an index alias.
Declaration
public bool? RequireAlias { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Routing
A document is routed to a particular shard in an index using the following formula
shard_num = hash(_routing) % num_primary_shards
OpenSearch will use the document id if not provided.
For requests that are constructed from/for a document OpenSearch.Client will automatically infer the routing key if that document has a JoinField or a routing mapping on for its type exists on ConnectionSettings
Declaration
public Routing Routing { get; set; }
Property Value
Type | Description |
---|---|
Routing |
Self
Declaration
protected IBulkRequest Self { get; }
Property Value
Type | Description |
---|---|
IBulkRequest |
SourceEnabled
Whether the _source should be included in the response.
Declaration
public bool? SourceEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool? |
SourceExcludes
A comma-separated list of source fields to exclude from the response.
Declaration
public Fields SourceExcludes { get; set; }
Property Value
Type | Description |
---|---|
Fields |
SourceIncludes
A comma-separated list of source fields to include in the response.
Declaration
public Fields SourceIncludes { get; set; }
Property Value
Type | Description |
---|---|
Fields |
Timeout
Period each action waits for the following operations: automatic index creation, dynamic mapping updates, waiting for active shards.
Declaration
public Time Timeout { get; set; }
Property Value
Type | Description |
---|---|
Time |
Type
Default document type for items which don't provide one.
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
string |
WaitForActiveShards
The number of shard copies that must be active before proceeding with the operation. Set to all or any positive integer up to the total
number of shards in the index (number_of_replicas+1
).
Declaration
public string WaitForActiveShards { get; set; }
Property Value
Type | Description |
---|---|
string |