elasticsearch判断索引是否存在
一、判断索引是否存在
指定索引名,判断指定的索引是否存在集群中
/** * 判断指定的索引名是否存在 * @param indexName 索引名 * @return 存在:true; 不存在:false; */ public boolean isExistsIndex(String indexName){ IndicesExistsResponse response = getClient().admin().indices().exists( new IndicesExistsRequest().indices(new String[]{indexName})).actionGet(); return response.isExists(); }
二、判断索引指定类型是否存在
/** * 判断指定的索引的类型是否存在 * @param indexName 索引名 * @param indexType 索引类型 * @return 存在:true; 不存在:false; */ public boolean isExistsType(String indexName,String indexType){ TypesExistsResponse response = getClient().admin().indices() .typesExists(new TypesExistsRequest(new String[]{indexName}, indexType) ).actionGet(); System.out.println(FastJSONHelper.serialize(response)); return response.isExists(); } 输出的JSON格式内容: { "context":{ "empty":true }, "contextEmpty":true, "exists":true, "headers":[] }
我的网站 http://www.a-du.net
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步