Java API获取ES(Elasticsearch) mapping的信息

整整两天的疯狂搜索,在CSDN看不到solution,终于在ES的社区看到了胜利的曙光,我要在CSDN写下这篇文章,节省别人的时间。

首先在这就不重复讲解如何创建index,设置field等方法。

官方传送门https://www.elastic.co/guide/en/elasticsearch/client/java-api/2.3/index.html

这里主要讲当你的ES已经存在创建index的情况下,你需要获取这些index的信息的API使用。

首先获取ES中的所有的index

ImmutableOpenMap> mappings = client.admin().indices()
                .getMappings(new GetMappingsRequest()).actionGet().getMappings();
         Object[] indexList = mappings.keys().toArray();

然后获取ES中对应index下的type

这里衔接上面的代码

ImmutableOpenMap mapping = mappings.get("your index");

 

最后获取指定index,type下的mapping的信息,即是我们所看到的properties属性

这里的代码是独立的,不需要衔接上面,但是index,type需要你已经创建的。

ImmutableOpenMap mappings = client.admin().cluster().prepareState().execute()
                .actionGet().getState().getMetaData().getIndices().get("your index").getMappings();
        String  source = mappings.get("your type").source().toString();

当然如果你需要的是一个数据结构,方便后面使用可以用这段代码

mappings.get(type).getSourceAsMap();

贴上结果,看看是不是你们想要的。

{
    "qinfo": {
        "properties": {
            "DATACFLG": {
                "type": "string"
            },
            "LIEFERANT": {
                "type": "string"
            },
            "LOEKZ": {
                "type": "string"
            },
            "MATNR": {
                "type": "string"
            },
            "STSMA": {
                "type": "string"
            },
            "WERKS": {
                "type": "string"
            },
            "ZAEHL": {
                "type": "string"
            },
            "ZCRTDAT": {
                "type": "string"
            },
            "ZCRTTIM": {
                "type": "string"
            },
            "deletionFlag": {
                "type": "string",
                "index": "not_analyzed"
            },
            "importTime": {
                "type": "date",
                "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd HH:mm:ss:SSS||yyyy-MM-dd||yyyy-MM-dd'T'HH:mm:ss||yyyy-MM-dd'T'HH:mm:ss:SSS||yyyyMMddHHmmss||yyyyMMddHHmmssSSS||yyyyMMdd HHmmssSSS||yyyyMMddHHmmss||yyyyMMdd"
            },
            "mpnNum": {
                "type": "string",
                "index": "not_analyzed"
            },
            "plant": {
                "type": "string",
                "index": "not_analyzed"
            },
            "stsFlag": {
                "type": "string",
                "index": "not_analyzed"
            },
            "vendorCode": {
                "type": "string",
                "index": "not_analyzed"
            }
        }
    }
}

你可能感兴趣的:(Database,Elasticsreach)