当前位置:   article > 正文

ElasticSearch索引mapping添加字段-java_elasticsearch mapping 增加字段

elasticsearch mapping 增加字段

在已存在的索引mapping中添加字段,基于es7.17.6

java代码如下

private static void putMapping() {
        try {
            // 创建PutMappingRequest对象
            PutMappingRequest request = new PutMappingRequest(indexName);

            // 定义字段的映射
            String mappingJson = "{" +
                    "  \"properties\":{" +
                    "      \"field_name\": {" +
                    "        \"type\": \"keyword\"" +
                    "      }" +
                    " }"
            // 将JSON字符串添加到请求中
            request.source(mappingJson, XContentType.JSON);


            // 发送请求更新映射
            client.indices().putMapping(request, RequestOptions.DEFAULT);

            System.out.println("Mapping updated successfully");
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小桥流水78/article/detail/912753
推荐阅读
相关标签
  

闽ICP备14008679号