当前位置: 首页>>代码示例>>Java>>正文


Java Health类代码示例

本文整理汇总了Java中io.searchbox.cluster.Health的典型用法代码示例。如果您正苦于以下问题:Java Health类的具体用法?Java Health怎么用?Java Health使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Health类属于io.searchbox.cluster包,在下文中一共展示了Health类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: ping

import io.searchbox.cluster.Health; //导入依赖的package包/类
@Override
public boolean ping() {
    try {
        JestResult result = esClient.execute(new Health.Builder().build());
        return result.isSucceeded();
    } catch (IOException e) {
        return false;
    }
}
 
开发者ID:polarsys,项目名称:eplmp,代码行数:10,代码来源:IndexerManagerBean.java

示例2: initialize

import io.searchbox.cluster.Health; //导入依赖的package包/类
/**
 * Called to initialize the storage.
 */
@Override
public void initialize() {
    try {
        esClient.execute(new Health.Builder().build());
        // TODO Do we need a loop to wait for all nodes to join the cluster?
        Action<JestResult> action = new IndicesExists.Builder(getIndexName()).build();
        JestResult result = esClient.execute(action);
        if (! result.isSucceeded()) {
            createIndex(getIndexName());
        }
    } catch (Exception e) {
        throw new RuntimeException(e);
    }
}
 
开发者ID:apiman,项目名称:apiman,代码行数:18,代码来源:EsStorage.java

示例3: initializeClient

import io.searchbox.cluster.Health; //导入依赖的package包/类
/**
 * Called to initialize the storage.
 * @param client the jest client
 * @param indexName the name of the ES index to initialize
 * @param defaultIndexName the default ES index - used to determine which -settings.json file to use
 */
protected void initializeClient(JestClient client, String indexName, String defaultIndexName) {
    try {
        client.execute(new Health.Builder().build());
        Action<JestResult> action = new IndicesExists.Builder(indexName).build();
        JestResult result = client.execute(action);
        if (!result.isSucceeded()) {
            createIndex(client, indexName, defaultIndexName + "-settings.json"); //$NON-NLS-1$
        }
    } catch (Exception e) {
        throw new RuntimeException(e);
    }
}
 
开发者ID:apiman,项目名称:apiman,代码行数:19,代码来源:AbstractClientFactory.java


注:本文中的io.searchbox.cluster.Health类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。