我已将 Elastic 搜索从“ 2.3.4 ”升级到“ 7.10.0 ”。
在对应用程序代码进行更改时,对以下 GetMappings 情况感到困惑:
旧代码(2.3.4):
Map<String, Object> mappingMeta = client.admin().indices().prepareGetMappings("index1").get().mappings().get("index1").get("type1").getSourceAsMap();
新代码(7.10.0):
GetMappingsRequest mappingsRequest = new GetMappingsRequest();
mappingsRequest.indices("index1");
GetMappingsResponse mappingsResponse = client.indices().getMapping(mappingsRequest, RequestOptions.DEFAULT);
Map<String, Object> mappingMeta = mappingsResponse.mappings().get("what_should_come_here? "index1" or "type1").getSourceAsMap();
任何人都可以在从新代码中的响应中获取映射数据时帮助我,get 下应该包含什么(参见新代码块的最后一行,也在 get 参数中询问)?那是 indexName 还是 Type 名称?