本文整理了Java中org.elasticsearch.cluster.metadata.MetaData.getTotalOpenIndexShards()
方法的一些代码示例,展示了MetaData.getTotalOpenIndexShards()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。MetaData.getTotalOpenIndexShards()
方法的具体详情如下:
包路径:org.elasticsearch.cluster.metadata.MetaData
类名称:MetaData
方法名:getTotalOpenIndexShards
[英]Gets the total number of open shards from all indices. Includes replicas, but does not include shards that are part of closed indices.
[中]获取所有索引中打开的碎片总数。包括副本,但不包括作为闭合索引一部分的碎片。
代码示例来源:origin: org.elasticsearch/elasticsearch
int currentOpenShards = state.getMetaData().getTotalOpenIndexShards();
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch
int currentOpenShards = state.getMetaData().getTotalOpenIndexShards();
内容来源于网络,如有侵权,请联系作者删除!