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
@@ -61,6 +68,36 @@ public BulkDescriptor Update<T, K>(Func<BulkUpdateDescriptor<T, K>, BulkUpdateDe
61
68
returnthis;
62
69
}
63
70
71
+
/// <summary>
72
+
/// When making bulk calls, you can require a minimum number of active shards in the partition
73
+
/// through the consistency parameter. The values allowed are one, quorum, and all. It defaults to the node level
74
+
/// setting of action.write_consistency, which in turn defaults to quorum.
75
+
/// <pre>
76
+
/// For example, in a N shards with 2 replicas index, there will have to be at least 2 active shards within the relevant partition (quorum) for the
77
+
/// operation to succeed. In a N shards with 1 replica scenario, there will need to be a single shard active (in this case, one and quorum is the same).
0 commit comments