ElasticsearchStatusException[Elasticsearch exception [type=illegal_argument_exception, reason=request [/blog/_doc/_search] contains unrecognized parameters: [ignore_throttled], [rest_total_hits_as_int]]
]
springboot版本要和es版本对应起来
springboot 2.2.0 对应 es 6.8.3,我用了没问题
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.0.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent>
你看你SpringBoot对应的elasticsearch的版本,下载一个和对应的就行了,亲测有效哟
版本不对应各种奇怪的问题
换版本真香
客户端和服务端版本不一致导致的吧,服务端不识别那些参数
请问解决了吗?我也遇到了,怎么解决该问题呢