org.elasticsearch.ElasticsearchStatusException: Elasticsearch exception [type=illegal_argument_excep

这篇具有很好参考价值的文章主要介绍了org.elasticsearch.ElasticsearchStatusException: Elasticsearch exception [type=illegal_argument_excep。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

org.elasticsearch.ElasticsearchStatusException: Elasticsearch exception [type=illegal_argument_excep,elasticsearch,大数据,搜索引擎,bug

org.elasticsearch.ElasticsearchStatusException: Elasticsearch exception [type=illegal_argument_exception, reason=request [/zc/_search] contains unrecognized parameters: [ccs_minimize_roundtrips], [ignore_throttled]]

原因:

该异常是由于在对索引进行搜索请求时,使用了不被识别的参数导致的。具体来说,异常信息中列出了两个不被识别的参数,分别是ccs_minimize_roundtripsignore_throttled

  • ccs_minimize_roundtrips参数是用于跨群集搜索(cross-cluster search)中,用来减少往返请求次数的优化参数。但是,该参数在当前的搜索请求中不被识别,可能是由于 Elasticsearch 版本不支持该参数或者配置不正确。

  • ignore_throttled参数用于在搜索请求中忽略被限流(throttled)的分片。同样地,该参数在当前的搜索请求中不被识别,可能是由于 Elasticsearch 版本不支持该参数或者配置有误。

解决方案:

1.检查当前的 Elasticsearch 版本是否支持指定的参数

2.服务器版本和pom文件版本问题

检查pom中es版本

org.elasticsearch.ElasticsearchStatusException: Elasticsearch exception [type=illegal_argument_excep,elasticsearch,大数据,搜索引擎,bug

<properties>
    <java.version>1.8</java.version>
    <elasticsearch.version>7.12.1</elasticsearch.version>
</properties>
<dependencies>
    <!--elasticsearch-->
    <dependency>
        <groupId>org.elasticsearch.client</groupId>
        <artifactId>elasticsearch-rest-high-level-client</artifactId>
    </dependency>
</dependencies>

进入http://localhost:9200/

检查es服务器版本 ,是否与pom文件中版本一致

org.elasticsearch.ElasticsearchStatusException: Elasticsearch exception [type=illegal_argument_excep,elasticsearch,大数据,搜索引擎,bug

更换成支持指定参数的版本且运行es服务器版本和pom文件中es版本一致文章来源地址https://www.toymoban.com/news/detail-716449.html

到了这里,关于org.elasticsearch.ElasticsearchStatusException: Elasticsearch exception [type=illegal_argument_excep的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 操作elasticsearch出现cluster_block_exception

    在操作ES的时候报403的错误并且提示 reason blocked by FORBIDDEN/12/index read-only / allow delete 主要是ES存储空间不足,es触发了自动保护机制,将索引设置为只读模式 PUT 地址/ 索引 / _settings 我使用的是谷歌插件elasticsearch-head

    2024年02月17日
    浏览(35)
  • 记录Elasticsearch circuit_breaking_exception异常解决

    Flink消费Kafka数据写入ES 组件版本: CDH:6.3.0 Flink:1.12.1 Elasticsearch:7.7.0 Caused by: ElasticsearchStatusException[Elasticsearch exception [type=circuit_breaking_exception, reason=[parent] Data too large, data for [http_request] would be [1979396994/1.8gb], which is larger than the limit of [1972122419/1.8gb], real usage: [1977917952/1.8gb

    2023年04月21日
    浏览(40)
  • ElasticSearch|too_many_buckets_exception解决方法

    报错信息 ES 执行聚合查询时报错,报错信息如下: 原因定位 因为聚合查询的桶数超过了 ES 集群配置的最大桶数的上限。ES 聚合查询最大桶数的参数文档如下(地址): search.max_buckets (Dynamic, integer) Maximum number of aggregation buckets allowed in a single response. Defaults to 65,536. Requests t

    2024年02月04日
    浏览(38)
  • failed to load elasticsearch nodes : org.elasticsearch.client.transport.NoNodeAvailableException: No

    今天在学习mall项目时配置Elasticsearch遇到上面这个问题,由于作者SpringBoot使用的是2.1.3版本,使用起步依赖导入的ES版本是6.3.4。而我使用的ES版本是7.6.1,如是我将起步依赖的ES版本改为7.6.1。改完后再启动发现抛出上面这个错误,最后确认是使用的SpringData版本与ElasticSearch版本

    2024年02月16日
    浏览(48)
  • ES排序报错:Elasticsearch exception [type=illegal_argument_exception, reason=Text

    翻译过来就是: 对于需要每个文档字段数据(如聚合和排序)的操作,文本字段没有进行优化,因此这些操作在默认情况下是禁用的。请使用字段代替。或者,在[createTime]上设置fielddata=true,以便通过反求倒排索引来加载字段数据。注意,这可能会使用有效内存。] 更改后

    2024年02月11日
    浏览(69)
  • 【cluster_block_exception】写操作elasticsearch索引报错

    今天线上elk的数据太多,服务器的空间不足了。所以打算删除一些没用用的数据。我是用下面的request: 但是出错了。 { _index: ‘’, _type: ‘type’, _id: ‘record id’, status: 403, error: { type: ‘cluster_block_exception’, reason: ‘blocked by: [FORBIDDEN/8/index write (api)];’ } } (都是比较简单的英

    2024年02月13日
    浏览(38)
  • 解决Elasticsearch集群 master_not_discovered_exception 异常

    错误描述 查看集群健康返回以下错误: 我通过docker命令在三台机器上分别启动es应用后,单个节点可以通过网络访问,但是他们彼此之间却显示无法通信,导致选举失败,发现不了主节点。 问题排查 查看es日志发现: java.net.NoRouteToHostException: No route to host (Host unreachable) 重要

    2024年02月01日
    浏览(41)
  • Caused by: ElasticsearchException[Elasticsearch exception [type=mapper_parsing_exception, reason=Roo

     我们在使用RestClient创建索引库时出现了这个错误。 可以检查一下 CreateIndexRequest 类型变量request 是否导入正确的包 有两个同名的包,我们选择: import org.elasticsearch.client.indices.CreateIndexRequest;     测试成功  创建的DSL的索引库  以上解决办法参考 Elasticsearch exception [type=mapp

    2024年01月23日
    浏览(53)
  • Elasticsearch exception [type=index_not_found_exception, reason=no such index [**]]

     1.代码运行出现找不到Index,先排除index是否存在。   2.springboot和ES映射,默认是把对象类型映射为index,class对象默认是大写开头,所以要看是都是因为大小写不匹配。如若因为大小写原因导致,可以通过@Document注解指定index  

    2024年02月14日
    浏览(44)
  • Elasticsearch exception [type=search_phase_execution_exception, reason=all shards failed]

    Elasticsearch exception [type=search_phase_execution_exception, reason=all shards failed] 今天在做项目遇到这个问题,Es那边出现了问题,谷粒商城去Es中查数据的时候,根据品牌id去查询数据报错。   {\\\"error\\\":{\\\"root_cause\\\":[{ \\\"type\\\":\\\"query_shard_exception\\\",\\\"reason\\\":\\\"failed to create query: {n  \\\"bool\\\" : {n    \\\"fil

    2024年02月02日
    浏览(41)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包