org.elasticsearch.cluster.metadata.IndexMetaData.getWaitForActiveShards()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(4.1k)|赞(0)|评价(0)|浏览(64)

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

IndexMetaData.getWaitForActiveShards介绍

[英]Returns the configured #SETTING_WAIT_FOR_ACTIVE_SHARDS, which defaults to an active shard count of 1 if not specified.
[中]返回配置的#设置_WAIT _FOR _ACTIVE _shard,如果未指定,则默认为活动shard计数为1。

代码示例

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

/**
 * Resolves derived values in the request. For example, the target shard id of the incoming request, if not set at request construction.
 * Additional processing or validation of the request should be done here.
 *
 * @param indexMetaData index metadata of the concrete index this request is going to operate on
 * @param request       the request to resolve
 */
protected void resolveRequest(final IndexMetaData indexMetaData, final Request request) {
  if (request.waitForActiveShards() == ActiveShardCount.DEFAULT) {
    // if the wait for active shard count has not been set in the request,
    // resolve it from the index settings
    request.waitForActiveShards(indexMetaData.getWaitForActiveShards());
  }
}

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

ActiveShardCount waitForActiveShards = request.waitForActiveShards();
if (waitForActiveShards == ActiveShardCount.DEFAULT) {
  waitForActiveShards = tmpImd.getWaitForActiveShards();

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

/**
 * Resolves derived values in the request. For example, the target shard id of the incoming request, if not set at request construction.
 * Additional processing or validation of the request should be done here.
 *
 * @param indexMetaData index metadata of the concrete index this request is going to operate on
 * @param request       the request to resolve
 */
protected void resolveRequest(final IndexMetaData indexMetaData, final Request request) {
  if (request.waitForActiveShards() == ActiveShardCount.DEFAULT) {
    // if the wait for active shard count has not been set in the request,
    // resolve it from the index settings
    request.waitForActiveShards(indexMetaData.getWaitForActiveShards());
  }
}

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

/**
 * Resolves derived values in the request. For example, the target shard id of the incoming request, if not set at request construction.
 * Additional processing or validation of the request should be done here.
 *
 * @param indexMetaData index metadata of the concrete index this request is going to operate on
 * @param request       the request to resolve
 */
protected void resolveRequest(final IndexMetaData indexMetaData, final Request request) {
  if (request.waitForActiveShards() == ActiveShardCount.DEFAULT) {
    // if the wait for active shard count has not been set in the request,
    // resolve it from the index settings
    request.waitForActiveShards(indexMetaData.getWaitForActiveShards());
  }
}

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

/**
 * Resolves derived values in the request. For example, the target shard id of the incoming request,
 * if not set at request construction
 * Additional processing or validation of the request should be done here.
 *
 * @param metaData      cluster state metadata
 * @param indexMetaData index metadata of the concrete index this request is going to operate on
 * @param request       the request to resolve
 */
protected void resolveRequest(MetaData metaData, IndexMetaData indexMetaData, Request request) {
  if (request.waitForActiveShards() == ActiveShardCount.DEFAULT) {
    // if the wait for active shard count has not been set in the request,
    // resolve it from the index settings
    request.waitForActiveShards(indexMetaData.getWaitForActiveShards());
  }
}

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

ActiveShardCount waitForActiveShards = request.waitForActiveShards();
if (waitForActiveShards == ActiveShardCount.DEFAULT) {
  waitForActiveShards = tmpImd.getWaitForActiveShards();

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

ActiveShardCount waitForActiveShards = request.waitForActiveShards();
if (waitForActiveShards == ActiveShardCount.DEFAULT) {
  waitForActiveShards = tmpImd.getWaitForActiveShards();

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

ActiveShardCount waitForActiveShards = request.waitForActiveShards();
if (waitForActiveShards == ActiveShardCount.DEFAULT) {
  waitForActiveShards = tmpImd.getWaitForActiveShards();

相关文章

微信公众号

最新文章

更多

IndexMetaData类方法