-
Notifications
You must be signed in to change notification settings - Fork 21
Closed
Labels
Description
Problem
At present, the Put Request does not support fields such as sequence number and primary term which can lead the open search specific store to perform an index request without checking if the document's last modification was assigned the given sequence or primary term. This affects the concurrency mechanism for open search specific store.
Propose to add these fields similar to how it is done for Update Request
public UpdateDataObjectRequest(
String index,
String id,
String tenantId,
Long ifSeqNo,
Long ifPrimaryTerm,
int retryOnConflict,
ToXContentObject dataObject
)