成功解决elasticsearch6以上查看分词器效果:request body or source parameter is required

系统管理员 2021-01-24 16:16 1421阅读 0赞

报错信息如下:

  1. {
  2. "error": {
  3. "root_cause": [
  4. {
  5. "type": "parse_exception",
  6. "reason": "request body or source parameter is required"
  7. }
  8. ],
  9. "type": "parse_exception",
  10. "reason": "request body or source parameter is required"
  11. },
  12. "status": 400
  13. }

es版本:6.2.1
之前的es版本是5.4.2,查看分词器效果可以直接在URL中指定分词器和查询词,方法是GET,如下:

  1. http://localhost:9200/_analyze?analyzer=ik_smart&text=手机充值
  2. http://127.0.0.1:9200/_analyze?analyzer=standard&text=End users and developers looking for free JDK versions

es6.4.3查看分词效果,可以使用GET或者POST方法,但是分词器和查询词需要以json的形式写在body里。

例1:

  1. http://localhost:9200/_analyze?pretty=true
  2. {
  3. "analyzer":"standard",
  4. "text": "End users and developers looking for free JDK versions"
  5. }

例2:

  1. http://localhost:9200/_analyze?pretty=true
  2. {
  3. "analyzer":"ik_smart",
  4. "text": "手机电脑充值"
  5. }

在这里插入图片描述

发表评论

表情:
评论列表 (有 0 条评论,1421人围观)

还没有评论,来说两句吧...

相关阅读