org.elasticsearch.action.bulk.BulkRequest.internalAdd()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(5.0k)|赞(0)|评价(0)|浏览(126)

本文整理了Java中org.elasticsearch.action.bulk.BulkRequest.internalAdd()方法的一些代码示例,展示了BulkRequest.internalAdd()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。BulkRequest.internalAdd()方法的具体详情如下:
包路径:org.elasticsearch.action.bulk.BulkRequest
类名称:BulkRequest
方法名:internalAdd

BulkRequest.internalAdd介绍

暂无

代码示例

代码示例来源:origin: org.elasticsearch/elasticsearch

/**
 * Adds an {@link IndexRequest} to the list of actions to execute. Follows the same behavior of {@link IndexRequest}
 * (for example, if no id is provided, one will be generated, or usage of the create flag).
 */
public BulkRequest add(IndexRequest request) {
  return internalAdd(request, null);
}

代码示例来源:origin: org.elasticsearch/elasticsearch

/**
 * Adds an {@link UpdateRequest} to the list of actions to execute.
 */
public BulkRequest add(UpdateRequest request) {
  return internalAdd(request, null);
}

代码示例来源:origin: org.elasticsearch/elasticsearch

public BulkRequest add(IndexRequest request, @Nullable Object payload) {
  return internalAdd(request, payload);
}

代码示例来源:origin: org.elasticsearch/elasticsearch

public BulkRequest add(UpdateRequest request, @Nullable Object payload) {
  return internalAdd(request, payload);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

/**
 * Adds an {@link IndexRequest} to the list of actions to execute. Follows the same behavior of {@link IndexRequest}
 * (for example, if no id is provided, one will be generated, or usage of the create flag).
 */
public BulkRequest add(IndexRequest request) {
  return internalAdd(request, null);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

/**
 * Adds an {@link UpdateRequest} to the list of actions to execute.
 */
public BulkRequest add(UpdateRequest request) {
  return internalAdd(request, null);
}

代码示例来源:origin: com.strapdata.elasticsearch/elasticsearch

/**
 * Adds an {@link UpdateRequest} to the list of actions to execute.
 */
public BulkRequest add(UpdateRequest request) {
  return internalAdd(request, null);
}

代码示例来源:origin: com.strapdata.elasticsearch/elasticsearch

/**
 * Adds an {@link IndexRequest} to the list of actions to execute. Follows the same behavior of {@link IndexRequest}
 * (for example, if no id is provided, one will be generated, or usage of the create flag).
 */
public BulkRequest add(IndexRequest request) {
  return internalAdd(request, null);
}

代码示例来源:origin: harbby/presto-connectors

/**
 * Adds an {@link UpdateRequest} to the list of actions to execute.
 */
public BulkRequest add(UpdateRequest request) {
  return internalAdd(request, null);
}

代码示例来源:origin: apache/servicemix-bundles

/**
 * Adds an {@link IndexRequest} to the list of actions to execute. Follows the same behavior of {@link IndexRequest}
 * (for example, if no id is provided, one will be generated, or usage of the create flag).
 */
public BulkRequest add(IndexRequest request) {
  return internalAdd(request, null);
}

代码示例来源:origin: apache/servicemix-bundles

/**
 * Adds an {@link UpdateRequest} to the list of actions to execute.
 */
public BulkRequest add(UpdateRequest request) {
  return internalAdd(request, null);
}

代码示例来源:origin: harbby/presto-connectors

/**
 * Adds an {@link IndexRequest} to the list of actions to execute. Follows the same behavior of {@link IndexRequest}
 * (for example, if no id is provided, one will be generated, or usage of the create flag).
 */
public BulkRequest add(IndexRequest request) {
  return internalAdd(request, null);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

public BulkRequest add(UpdateRequest request, @Nullable Object payload) {
  return internalAdd(request, payload);
}

代码示例来源:origin: com.strapdata.elasticsearch/elasticsearch

public BulkRequest add(IndexRequest request, @Nullable Object payload) {
  return internalAdd(request, payload);
}

代码示例来源:origin: com.strapdata.elasticsearch/elasticsearch

public BulkRequest add(UpdateRequest request, @Nullable Object payload) {
  return internalAdd(request, payload);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

public BulkRequest add(IndexRequest request, @Nullable Object payload) {
  return internalAdd(request, payload);
}

代码示例来源:origin: harbby/presto-connectors

public BulkRequest add(IndexRequest request, @Nullable Object payload) {
  return internalAdd(request, payload);
}

代码示例来源:origin: harbby/presto-connectors

public BulkRequest add(UpdateRequest request, @Nullable Object payload) {
  return internalAdd(request, payload);
}

代码示例来源:origin: apache/servicemix-bundles

public BulkRequest add(UpdateRequest request, @Nullable Object payload) {
  return internalAdd(request, payload);
}

代码示例来源:origin: org.elasticsearch/elasticsearch

internalAdd(new IndexRequest(index, type, id).routing(routing).parent(parent).version(version)
      .versionType(versionType).setPipeline(pipeline).setIfSeqNo(ifSeqNo).setIfPrimaryTerm(ifPrimaryTerm)
      .source(sliceTrimmingCarriageReturn(data, from, nextMarker,xContentType), xContentType), payload);
} else {
  internalAdd(new IndexRequest(index, type, id).routing(routing).parent(parent).version(version)
      .versionType(versionType).create("create".equals(opType)).setPipeline(pipeline)
      .setIfSeqNo(ifSeqNo).setIfPrimaryTerm(ifPrimaryTerm)
internalAdd(new IndexRequest(index, type, id).routing(routing).parent(parent).version(version)
    .versionType(versionType).create(true).setPipeline(pipeline)
    .setIfSeqNo(ifSeqNo).setIfPrimaryTerm(ifPrimaryTerm)
internalAdd(updateRequest, payload);

相关文章