在使用spring-boot-starter-data-elasticsearch 判断索引是否存在时日志返回 warnings :
[ignore_throttled] parameter is deprecated because frozen indices have been deprecated. Consider cold or frozen tiers in place of frozen indices.
[ignore_throttled]参数已被弃用,因为冻结索引已被弃用。考虑用冷层或冻结层代替冻结指数。
引入的maven包
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
</dependency>
代码如下:
[ignore_throttled]参数已被弃用 应该是版本的问题,在java中经常会有某个参数在高版本中被废弃使用了。那我们换成对应的版本。
怎么找对应的版本呢。去官网啊
链接地址:
Spring Data Elasticsearch - Reference Documentation
具体版本对应关系
下表显示了Spring Data发布序列使用的Elasticsearch版本和其中包含的Spring Data Elasticsearch版本,以及引用特定Spring Data发布系列的Spring Boot版本。给出的Elasticsearch版本显示了Spring Data Elasticsearch是用哪些客户端库构建和测试的。
换成对应的版本就行.我们ES版本是7.17.0 换成对应的版本client 就OK了
springboot版本由 2.5.6——>2.7.0
升级spring-boot-starter-data-elasticsearch
再次运行 没有那个warnings了文章来源:https://www.toymoban.com/news/detail-714094.html
文章来源地址https://www.toymoban.com/news/detail-714094.html
到了这里,关于【ES】[ignore_throttled] parameter is deprecated because frozen indices have been deprecated. Consider的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!