我试图在 elasticsearch 6.2.1 的 RestHighLevelClient 中插入映射
从以下链接中,我找到了以下用于插入映射的代码
RestHighLevelClient client = new RestHighLevelClient(RestClient.builder(new HttpHost(ipaddress, port, "http")));
client.indices().putMapping(putMappingRequest);
但我无法在 client.indices() 中找到 putMapping(putMappingRequest)
这是我在项目中添加的 Maven 依赖项
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-high-level-client</artifactId>
<version>6.2.1</version>
谁能帮我找到适合我要求的正确 jar 文件或使用 RestHighLevelClient 插入映射的任何其他方式
非常感谢任何帮助。