ES查询index对应的mapping信息

Posted woniu4

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES查询index对应的mapping信息相关的知识,希望对你有一定的参考价值。

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信息的主要内容,如果未能解决你的问题,请参考以下文章

Elasticsearch必知必会的干货知识二:ES索引操作技巧

es查询mapping出来的顺序不对

在elasticsearch中建立index,并添加type定义mapping

ES 基本操作

ES-01 -ES内置的REST接口

[elasticsearch]ES迁移笔记