org.elasticsearch.client.IndicesAdminClient.syncedFlush()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(6.0k)|赞(0)|评价(0)|浏览(127)

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

IndicesAdminClient.syncedFlush介绍

[英]Explicitly sync flush one or more indices (write sync id to shards for faster recovery).
[中]显式同步刷新一个或多个索引(将同步id写入碎片以加快恢复)。

代码示例

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

@Override
  public RestChannelConsumer prepareRequest(final RestRequest request, final NodeClient client) throws IOException {
    IndicesOptions indicesOptions = IndicesOptions.fromRequest(request, IndicesOptions.lenientExpandOpen());
    SyncedFlushRequest syncedFlushRequest = new SyncedFlushRequest(Strings.splitStringByCommaToArray(request.param("index")));
    syncedFlushRequest.indicesOptions(indicesOptions);
    return channel -> client.admin().indices().syncedFlush(syncedFlushRequest, new RestBuilderListener<SyncedFlushResponse>(channel) {
      @Override
      public RestResponse buildResponse(SyncedFlushResponse results, XContentBuilder builder) throws Exception {
        builder.startObject();
        results.toXContent(builder, request);
        builder.endObject();
        return new BytesRestResponse(results.restStatus(), builder);
      }
    });
  }
}

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

@Override
  public void handleRequest(final RestRequest request, final RestChannel channel, final Client client) {
    IndicesOptions indicesOptions = IndicesOptions.fromRequest(request, IndicesOptions.lenientExpandOpen());
    SyncedFlushRequest syncedFlushRequest = new SyncedFlushRequest(Strings.splitStringByCommaToArray(request.param("index")));
    syncedFlushRequest.indicesOptions(indicesOptions);
    client.admin().indices().syncedFlush(syncedFlushRequest, new RestBuilderListener<SyncedFlushResponse>(channel) {
      @Override
      public RestResponse buildResponse(SyncedFlushResponse results, XContentBuilder builder) throws Exception {
        builder.startObject();
        results.toXContent(builder, request);
        builder.endObject();
        return new BytesRestResponse(results.restStatus(), builder);
      }
    });
  }
}

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

@Override
  public RestChannelConsumer prepareRequest(final RestRequest request, final NodeClient client) throws IOException {
    IndicesOptions indicesOptions = IndicesOptions.fromRequest(request, IndicesOptions.lenientExpandOpen());
    SyncedFlushRequest syncedFlushRequest = new SyncedFlushRequest(Strings.splitStringByCommaToArray(request.param("index")));
    syncedFlushRequest.indicesOptions(indicesOptions);
    return channel -> client.admin().indices().syncedFlush(syncedFlushRequest, new RestBuilderListener<SyncedFlushResponse>(channel) {
      @Override
      public RestResponse buildResponse(SyncedFlushResponse results, XContentBuilder builder) throws Exception {
        builder.startObject();
        results.toXContent(builder, request);
        builder.endObject();
        return new BytesRestResponse(results.restStatus(), builder);
      }
    });
  }
}

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

@Override
  public RestChannelConsumer prepareRequest(final RestRequest request, final NodeClient client) throws IOException {
    IndicesOptions indicesOptions = IndicesOptions.fromRequest(request, IndicesOptions.lenientExpandOpen());
    SyncedFlushRequest syncedFlushRequest = new SyncedFlushRequest(Strings.splitStringByCommaToArray(request.param("index")));
    syncedFlushRequest.indicesOptions(indicesOptions);
    return channel -> client.admin().indices().syncedFlush(syncedFlushRequest, new RestBuilderListener<SyncedFlushResponse>(channel) {
      @Override
      public RestResponse buildResponse(SyncedFlushResponse results, XContentBuilder builder) throws Exception {
        builder.startObject();
        results.toXContent(builder, request);
        builder.endObject();
        return new BytesRestResponse(results.restStatus(), builder);
      }
    });
  }
}

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

@Override
  public RestChannelConsumer prepareRequest(final RestRequest request, final NodeClient client) throws IOException {
    IndicesOptions indicesOptions = IndicesOptions.fromRequest(request, IndicesOptions.lenientExpandOpen());
    SyncedFlushRequest syncedFlushRequest = new SyncedFlushRequest(Strings.splitStringByCommaToArray(request.param("index")));
    syncedFlushRequest.indicesOptions(indicesOptions);
    return channel -> client.admin().indices().syncedFlush(syncedFlushRequest, new RestBuilderListener<SyncedFlushResponse>(channel) {
      @Override
      public RestResponse buildResponse(SyncedFlushResponse results, XContentBuilder builder) throws Exception {
        builder.startObject();
        results.toXContent(builder, request);
        builder.endObject();
        return new BytesRestResponse(results.restStatus(), builder);
      }
    });
  }
}

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

/**
 * Maybe refresh, force merge, or flush then always make sure there aren't too many in flight async operations.
 */
private void postIndexAsyncActions(String[] indices, List<CountDownLatch> inFlightAsyncOperations, boolean maybeFlush) throws InterruptedException {
  if (rarely()) {
    if (rarely()) {
      client().admin().indices().prepareRefresh(indices).setIndicesOptions(IndicesOptions.lenientExpandOpen()).execute(
        new LatchedActionListener<>(newLatch(inFlightAsyncOperations)));
    } else if (maybeFlush && rarely()) {
      if (randomBoolean()) {
        client().admin().indices().prepareFlush(indices).setIndicesOptions(IndicesOptions.lenientExpandOpen()).execute(
          new LatchedActionListener<>(newLatch(inFlightAsyncOperations)));
      } else {
        client().admin().indices().syncedFlush(syncedFlushRequest(indices).indicesOptions(IndicesOptions.lenientExpandOpen()),
          new LatchedActionListener<>(newLatch(inFlightAsyncOperations)));
      }
    } else if (rarely()) {
      client().admin().indices().prepareForceMerge(indices).setIndicesOptions(IndicesOptions.lenientExpandOpen()).setMaxNumSegments(between(1, 10)).setFlush(maybeFlush && randomBoolean()).execute(
        new LatchedActionListener<>(newLatch(inFlightAsyncOperations)));
    }
  }
  while (inFlightAsyncOperations.size() > MAX_IN_FLIGHT_ASYNC_INDEXES) {
    int waitFor = between(0, inFlightAsyncOperations.size() - 1);
    inFlightAsyncOperations.remove(waitFor).await();
  }
}

相关文章

微信公众号

最新文章

更多

IndicesAdminClient类方法