protected IndexRequest buildIndexRequest(String index,
BytesReference source,
String id,
@Nullable String routingValue) {
IndexRequest request = new IndexRequest(index, Constants.DEFAULT_MAPPING_TYPE);
request.create(true);
request.source(source, false);
request.id(id);
request.routing(routingValue);
return request;