舟山彭于晏 2022-06-15 12:31 采纳率: 50%
浏览 107
已结题

Es 通过javaapi的方式创建索引且字段加分词器时出现的错误

通过Java api 的方式创建索引,想着是对name字段设置对应的分词器,但是执行代码一直出错,也是第一次接触es,不知道怎么处理,什么地方的格式有问题

import org.apache.http.HttpHost;
import org.elasticsearch.client.RequestOptions;
import org.elasticsearch.client.RestClient;
import org.elasticsearch.client.RestHighLevelClient;
import org.elasticsearch.client.indices.CreateIndexRequest;
import org.elasticsearch.client.indices.CreateIndexResponse;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.xcontent.XContentBuilder;
import org.elasticsearch.common.xcontent.XContentFactory;
import org.junit.jupiter.api.Test;
import java.io.IOException;

//创建索引
public class creat_es_index {
private static final String IP = "IP地址";
private static final Integer Dk = 9200;
private static final String FWFS = "http";

@Test
public void esindex() throws IOException {
    //创建es客户端
    RestHighLevelClient restHighLevelClient = new RestHighLevelClient(
            RestClient.builder(new HttpHost(IP,Dk,FWFS))
    );
    CreateIndexRequest createIndexRequest = new CreateIndexRequest("ceshi");
    createIndexRequest.settings(Settings.builder()
            .put("number_of_shards", 3)
            .put("number_of_replicas", 0));
    XContentBuilder builder = XContentFactory.jsonBuilder();
    builder.startObject();{
        builder.startObject("properties");
        {
            // 流水号
            builder.startObject("name");
            {
                builder.field("type", "text").field("analyzer","ik_max_word");
            }
            builder.endObject();

            // 手机号
            builder.startObject("age");
            {
                builder.field("type", "keyword");
            }
            builder.endObject();

            // 发送时间
            builder.startObject("sex");
            {
                builder.field("type", "keyword");
            }
            builder.endObject();
        }
        builder.endObject();
    }
    builder.endObject();
    createIndexRequest.mapping(builder);
    CreateIndexResponse createIndexResponse = restHighLevelClient.indices().create(createIndexRequest, RequestOptions.DEFAULT);
    if (createIndexResponse.isAcknowledged()==true){
        System.out.println("索引创建成功");
    }else {
        System.out.println("索引创建失败");
    }
    //关闭es客户端
    restHighLevelClient.close();
}

}

运行结果及报错内容

img

希望有会的能指导一下

  • 写回答

1条回答 默认 最新

  • 皮蛋不吃粥 2022-06-15 13:10
    关注

    es上面安装了ik分词器了么

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 6月23日
  • 已采纳回答 6月15日
  • 创建了问题 6月15日

悬赏问题

  • ¥15 PointNet++的onnx模型只能使用一次
  • ¥20 西南科技大学数字信号处理
  • ¥15 有两个非常“自以为是”烦人的问题急期待大家解决!
  • ¥30 STM32 INMP441无法读取数据
  • ¥15 R语言绘制密度图,一个密度曲线内fill不同颜色如何实现
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧,别用大模型回答,大模型的答案没啥用
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。