首页 > 移动平台 > 详细

ES查询index对应的mapping信息

时间:2018-01-18 20:00:08      阅读:1325      评论:0      收藏:0      [点我收藏+]
private void getMappingByIndex(String indices) throws IOException
    {
        
        GetMappingsRequest getMappingsRequest = new GetMappingsRequest();
        getMappingsRequest.indices(indices).types(new String[0]);
        
        GetMappingsResponse response = client.admin().indices().getMappings(getMappingsRequest).actionGet();
        ImmutableOpenMap<String, ImmutableOpenMap<String, MappingMetaData>> mappingsByIndex = response.getMappings();
        for (ObjectObjectCursor<String, ImmutableOpenMap<String, MappingMetaData>> indexEntry : mappingsByIndex) {
            if (indexEntry.value.isEmpty()) {
                continue;
            }
               System.out.println(indexEntry.key);
            for (ObjectObjectCursor<String, MappingMetaData> typeEntry : indexEntry.value) {
                System.out.println((typeEntry.key));
                System.out.println(typeEntry.value.sourceAsMap());
            }
        }

    }

 

ES查询index对应的mapping信息

原文:https://www.cnblogs.com/woniu4/p/8312626.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!