赞
踩
在使用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了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。