Class BulkAllDescriptor<T>
Inheritance
BulkAllDescriptor<T>
Assembly: OpenSearch.Client.dll
Syntax
public class BulkAllDescriptor<T> : DescriptorBase<BulkAllDescriptor<T>, IBulkAllRequest<T>>, IDescriptor, IBulkAllRequest<T> where T : class
Type Parameters
Constructors
|
Edit this page
View Source
BulkAllDescriptor(IEnumerable<T>)
Declaration
public BulkAllDescriptor(IEnumerable<T> documents)
Parameters
Methods
|
Edit this page
View Source
BackOffRetries(int?)
In case of a HTTP 429 (Too Many Requests) response status code, how many times should we automatically back off before failing
Declaration
public BulkAllDescriptor<T> BackOffRetries(int? backoffs)
Parameters
Type |
Name |
Description |
int? |
backoffs |
|
Returns
|
Edit this page
View Source
BackOffTime(Time)
In case of a HTTP 429 (Too Many Requests) response status code, how long should we wait before retrying
Declaration
public BulkAllDescriptor<T> BackOffTime(Time time)
Parameters
Type |
Name |
Description |
Time |
time |
|
Returns
|
Edit this page
View Source
BackPressure(int, int?)
Simple back pressure implementation that makes sure the minimum max concurrency between producer and consumer
is not amplified by the greedier of the two by more then a given back pressure factor
When set each scroll request will additionally wait on WaitAsync(CancellationToken) as well as
MaxDegreeOfParallelism(int?) if set. Not that the consumer has to call Release()
on the same instance every time it is done.
Declaration
public BulkAllDescriptor<T> BackPressure(int maxConcurrency, int? backPressureFactor = null)
Parameters
Type |
Name |
Description |
int |
maxConcurrency |
The minimum maximum concurrency which would be the bottleneck of the producer consumer pipeline
|
int? |
backPressureFactor |
The maximum amplification back pressure of the greedier part of the producer consumer pipeline
|
Returns
|
Edit this page
View Source
BufferToBulk(Action<BulkDescriptor, IList<T>>)
Declaration
public BulkAllDescriptor<T> BufferToBulk(Action<BulkDescriptor, IList<T>> modifier)
Parameters
Returns
|
Edit this page
View Source
BulkResponseCallback(Action<BulkResponse>)
Be notified every time a bulk response returns, this includes retries.
OnNext(T) is only called for successful batches.
Declaration
public BulkAllDescriptor<T> BulkResponseCallback(Action<BulkResponse> callback)
Parameters
Returns
|
Edit this page
View Source
ContinueAfterDroppedDocuments(bool)
Halt the bulk all request if any of the documents returned is a failure that can not be retried.
When true, will feed dropped documents to DroppedDocumentCallback
Declaration
public BulkAllDescriptor<T> ContinueAfterDroppedDocuments(bool proceed = true)
Parameters
Type |
Name |
Description |
bool |
proceed |
|
Returns
|
Edit this page
View Source
DroppedDocumentCallback(Action<BulkResponseItemBase, T>)
If a bulk operation fails because it receives documents it can not retry they will be fed to this callback.
If ContinueAfterDroppedDocuments is set to true
processing will continue, so this callback can be used
to feed into a dead letter queue. Otherwise bulk all indexing will be halted.
Declaration
public BulkAllDescriptor<T> DroppedDocumentCallback(Action<BulkResponseItemBase, T> callback)
Parameters
Returns
|
Edit this page
View Source
Index(IndexName)
Declaration
public BulkAllDescriptor<T> Index(IndexName index)
Parameters
Returns
|
Edit this page
View Source
Index<TOther>()
Declaration
public BulkAllDescriptor<T> Index<TOther>() where TOther : class
Returns
Type Parameters
|
Edit this page
View Source
MaxDegreeOfParallelism(int?)
The maximum number of bulk operations we want to have in flight at a time
Declaration
public BulkAllDescriptor<T> MaxDegreeOfParallelism(int? parallelism)
Parameters
Type |
Name |
Description |
int? |
parallelism |
|
Returns
|
Edit this page
View Source
Pipeline(string)
The pipeline id to preprocess all the incoming documents with
Declaration
public BulkAllDescriptor<T> Pipeline(string pipeline)
Parameters
Type |
Name |
Description |
string |
pipeline |
|
Returns
|
Edit this page
View Source
RefreshIndices(Indices)
The indices you wish to refresh after the bulk all completes, defaults to Index
Declaration
public BulkAllDescriptor<T> RefreshIndices(Indices indicesToRefresh)
Parameters
Type |
Name |
Description |
Indices |
indicesToRefresh |
|
Returns
|
Edit this page
View Source
RefreshOnCompleted(bool)
Refresh the index after performing ALL the bulk operations (NOTE this is an additional request)
Declaration
public BulkAllDescriptor<T> RefreshOnCompleted(bool refresh = true)
Parameters
Type |
Name |
Description |
bool |
refresh |
|
Returns
|
Edit this page
View Source
RetryDocumentPredicate(Func<BulkResponseItemBase, T, bool>)
A predicate to control which documents should be retried.
Defaults to failed bulk items with a HTTP 429 (Too Many Requests) response status code.
Declaration
public BulkAllDescriptor<T> RetryDocumentPredicate(Func<BulkResponseItemBase, T, bool> predicate)
Parameters
Returns
|
Edit this page
View Source
Routing(Routing)
Specific per bulk operation routing value
Declaration
public BulkAllDescriptor<T> Routing(Routing routing)
Parameters
Type |
Name |
Description |
Routing |
routing |
|
Returns
|
Edit this page
View Source
Size(int?)
The number of documents to send per bulk
Declaration
public BulkAllDescriptor<T> Size(int? size)
Parameters
Type |
Name |
Description |
int? |
size |
|
Returns
|
Edit this page
View Source
Timeout(Time)
Explicit per operation timeout
Declaration
public BulkAllDescriptor<T> Timeout(Time timeout)
Parameters
Type |
Name |
Description |
Time |
timeout |
|
Returns
Implements
Extension Methods