Uses of Interface
org.elasticsearch.action.DocWriteRequest
-
-
Uses of DocWriteRequest in org.elasticsearch.action
Methods in org.elasticsearch.action that return DocWriteRequest Modifier and Type Method Description static DocWriteRequest<?>DocWriteRequest. readDocumentRequest(StreamInput in)read a document write (index/delete/update) requestMethods in org.elasticsearch.action with parameters of type DocWriteRequest Modifier and Type Method Description static ActionRequestValidationExceptionDocWriteRequest. validateSeqNoBasedCASParams(DocWriteRequest request, ActionRequestValidationException validationException)static voidDocWriteRequest. writeDocumentRequest(StreamOutput out, DocWriteRequest<?> request)write a document write (index/delete/update) request -
Uses of DocWriteRequest in org.elasticsearch.action.bulk
Methods in org.elasticsearch.action.bulk that return DocWriteRequest Modifier and Type Method Description DocWriteRequest<?>BulkItemRequest. request()Methods in org.elasticsearch.action.bulk that return types with arguments of type DocWriteRequest Modifier and Type Method Description List<DocWriteRequest<?>>BulkRequest. requests()The list of requests in this bulk request.Methods in org.elasticsearch.action.bulk with parameters of type DocWriteRequest Modifier and Type Method Description BulkRequestBulkRequest. add(DocWriteRequest<?> request)Add a request to the current BulkRequest.BulkRequestBulkRequest. add(DocWriteRequest<?>... requests)Adds a list of requests to be executed.static IndexRequestTransportBulkAction. getIndexWriteRequest(DocWriteRequest docWriteRequest)Retrieves theIndexRequestfrom the providedDocWriteRequestfor index or upsert actions.Method parameters in org.elasticsearch.action.bulk with type arguments of type DocWriteRequest Modifier and Type Method Description BulkRequestBulkRequest. add(Iterable<DocWriteRequest<?>> requests)Adds a list of requests to be executed.Constructors in org.elasticsearch.action.bulk with parameters of type DocWriteRequest Constructor Description BulkItemRequest(int id, DocWriteRequest<?> request) -
Uses of DocWriteRequest in org.elasticsearch.action.delete
Classes in org.elasticsearch.action.delete that implement DocWriteRequest Modifier and Type Class Description classDeleteRequestA request to delete a document from an index based on its type and id. -
Uses of DocWriteRequest in org.elasticsearch.action.index
Classes in org.elasticsearch.action.index that implement DocWriteRequest Modifier and Type Class Description classIndexRequestIndex request to index a typed JSON document into a specific index and make it searchable. -
Uses of DocWriteRequest in org.elasticsearch.action.update
Classes in org.elasticsearch.action.update that implement DocWriteRequest Modifier and Type Class Description classUpdateRequest -
Uses of DocWriteRequest in org.elasticsearch.ingest
Method parameters in org.elasticsearch.ingest with type arguments of type DocWriteRequest Modifier and Type Method Description voidIngestService. executeBulkRequest(int numberOfActionRequests, Iterable<DocWriteRequest<?>> actionRequests, BiConsumer<Integer,Exception> onFailure, BiConsumer<Thread,Exception> onCompletion, IntConsumer onDropped)
-