elasticsearch 数据库扩容

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

遇见的问题:

Failed to execute phase [query], all shards failed; shardFailures {[eo918sbJQ8-luXJZR5LyVQ]
[todayonduty][0]: RemoteTransportException[[node-1][192.168.10.113:9300]
[indices:data/read/search[phase/query]]]; nested: IllegalArgumentException[Inner result window
is too large, the inner hit definition's [null]'s from + size must be less than or equal to: [100] but
was [1000]. This limit can be set by changing the [index.max_inner_result_window] index level
setting.]; }{[eo918sbJQ8-luXJZR5LyVQ][todayonduty][1]: RemoteTransportException[[node-1]
[192.168.10.113:9300][indices:data/read/search[phase/query]]]; nested:
IllegalArgumentException[Inner result window is too large, the inner hit definition's [null]'s from +
size must be less than or equal to: [100] but was [1000]. This limit can be set by changing the
[index.max_inner_result_window] index level setting.]; }{[eo918sbJQ8-luXJZR5LyVQ]
[todayonduty][2]: RemoteTransportException[[node-1][192.168.10.113:9300]
[indices:data/read/search[phase/query]]]; nested: IllegalArgumentException[Inner result window
is too large, the inner hit definition's [null]'s from + size must be less than or equal to: [100] but
was [1000]. This limit can be set by changing the [index.max_inner_result_window] index level
setting.]; }{[eo918sbJQ8-luXJZR5LyVQ][todayonduty][3]: RemoteTransportException[[node-1]
[192.168.10.113:9300][indices:data/read/search[phase/query]]]; nested:
IllegalArgumentException[Inner result window is too large, the inner hit definition's [null]'s from +
size must be less than or equal to: [100] but was [1000]. This limit can be set by changing the
[index.max_inner_result_window] index level setting.]; }{[eo918sbJQ8-luXJZR5LyVQ]
[todayonduty][4]: RemoteTransportException[[node-1][192.168.10.113:9300][indices:data/read/search[phase/query]]]; nested: IllegalArgumentException[Inner result window
is too large, the inner hit definition's [null]'s from + size must be less than or equal to: [100] but
was [1000]. This limit can be set by changing the [index.max_inner_result_window] index level
setting.]; }

解决办法:文章来源地址https://www.toymoban.com/news/detail-404032.html

PUT */_settings?preserve_existing=true 
{
  "max_result_window": "2000000000"
}


#查询子嵌套结果扩容
PUT */_settings?preserve_existing=true 
{
  "max_inner_result_window": "2000000000"
}

到了这里,关于elasticsearch 数据库扩容的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

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

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

相关文章

  • Failed to load driver class com.mysql.cj.jdbc.Driver异常-IntellIJ Idea-后端项目连接数据库_添加MyBatis依赖配置问题

    前言 :后端项目连接数据库配置时,添加了如下application.properties的数据库连接配置 项目点击运行,就出现以下系列问题 这种情况通常是由于以下原因之—引起的: 1.没有在项目中引入mysql-connectorjar包,或者引入的包版本与JDBC驱动不匹配。解决方法:在项目pom.xml中添加相关依

    2024年02月05日
    浏览(81)
  • 【es数据库】python 使用Elasticsearch数据库

    Elasticsearch是一个开源的高扩展性搜索引擎,它可以快速地存储、搜索和分析大量的数据。 使用Python语言和Elasticsearch,可以轻松地创建和操作“数据库”和“数据库表”,而且具备分布式和高扩展性的特点,适用于大规模数据存储与搜索场景。 ES是一种文档数据库,它并不像

    2024年02月12日
    浏览(42)
  • Elasticsearch数据库

    Elasticsearch和MongoDB/Redis/Memcache一样,是非关系型数据库。是一个接近实时的搜索平台,从索引这个文档到这个文档能够被搜索到只有一个轻微的延迟,企业应用定位:采用Restful API标准的可扩展和高可用的实时数据分析的全文搜索工具。 可拓展:支持一主多从且扩容简易,只

    2024年02月04日
    浏览(39)
  • Elasticsearch的数据库与数据仓库整合

    Elasticsearch是一个开源的搜索和分析引擎,基于Lucene库,具有实时搜索、文本分析、数据聚合等功能。在大数据时代,Elasticsearch在数据库和数据仓库领域得到了广泛的应用。本文将从以下几个方面进行讨论: 背景介绍 核心概念与联系 核心算法原理和具体操作步骤以及数学模

    2024年02月21日
    浏览(43)
  • ElasticSearch与数据库集成

    Elasticsearch 是一个开源的搜索和分析引擎,基于 Lucene 库,用于实时搜索和分析大规模文本数据。它可以将数据存储在内存中,以提供快速、实时的搜索和分析功能。Elasticsearch 通常与数据库集成,以提供更高效的搜索和分析功能。 在现代应用程序中,数据量越来越大,传统的

    2024年02月20日
    浏览(39)
  • (已解决)java连接数据库失败PKIX path building failed

    环境:eclipse,sql server 2022,JDK19 用的JDBC:mssql-jdbc-12.2.0.jre11.jar 连接数据库时发生错误: com.microsoft.sqlserver.jdbc.SQLServerException : 驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接。错误:“PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException : unabl

    2024年02月08日
    浏览(43)
  • Elasticsearch的图数据库&图数据处理

    Elasticsearch是一个开源的搜索和分析引擎,它基于Lucene库构建,具有高性能、可扩展性和实时性。Elasticsearch的核心功能包括文本搜索、数据聚合、实时分析等。 图数据库是一种特殊类型的数据库,它用于存储和管理网络结构的数据。图数据库使用图形结构来表示数据,其中数

    2024年02月21日
    浏览(50)
  • Elasticsearch:什么是向量数据库?

    向量数据库是将信息存储为向量的数据库,向量是数据对象的数值表示,也称为向量嵌入。 它利用这些向量嵌入的强大功能来对非结构化数据和半结构化数据(例如图像、文本或传感器数据)的海量数据集进行索引和搜索。 向量数据库是为了管理向量嵌入而构建的,因此为

    2024年01月21日
    浏览(41)
  • Elasticsearch:向量数据库的真相

    通过工作示例了解什么是向量数据库、它们如何实现 “相似性” 搜索以及它们可以在明显的 LLM 空间之外的哪些地方使用。除非你一直生活在岩石下,否则你可能听说过诸如生成式人工智能和大型语言模型(LLM)之类的术语。 除此之外,你很有可能听说过向量数据库,它为

    2024年02月04日
    浏览(44)
  • Elasticsearch 对比传统数据库:深入挖掘 Elasticsearch 的优势

    当你为项目选择数据库或搜索引擎时,了解每个选项的细微差别至关重要。 今天,我们将深入探讨 Elasticsearch 的优势,并探讨它与传统 SQL 和 NoSQL 数据库的比较。 Elasticsearch 以强大的 Apache Lucene 库为基础,是一个分布式搜索和分析引擎。 它以其速度、可扩展性以及快速索引

    2024年02月10日
    浏览(48)

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

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

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

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

二维码1

领取红包

二维码2

领红包