ElasticSearch判断索引是否存在,JavaAPI代码实现

今天想要解决一个问题,便是对索引进行容错,因此首先想要判断索引是否存在。在网上搜索了许久都没有解决,最后还是自己一个一个去尝试解决的,特在这里进行叙述,方便后来者进行查看

方法

public class countStatusTest {
    @Autowired
    private RestHighLevelClient client;
/**
     * 判断指定的索引名是否存在
     * @param indexName 索引名
     * @return  存在:true; 不存在:false;
     */
    public boolean isExistsIndex(String indexName) throws Exception {
        GetIndexRequest existsRequest = new GetIndexRequest();
        existsRequest.indices(indexName);
        boolean exists = client.indices().exists(existsRequest, RequestOptions.DEFAULT);
        return exists;
    }
}

关于client是什么?

client是自己的es客户端,具体是怎么实现的请看我的ElasticSearch栏目进行查看,便比较清晰了
至于为什么不进行代码贴出,这是因为我们每个人的环境不一样,我是使用springboot进行整合的项目,所以直接使用bean进行注入了
具体client代码请看:

  1. ElasticSearch(7)springbooot整合ES
  2. ElasticSearch(13)JavaAPI操作es集群

你可能感兴趣的:(#,ELK,elasticsearch,搜索引擎,大数据)