ES更新问题 Failed to close the XContentBuilder异常
问题描述
使用RestHighLevelClient对文档进行局部更新的时候报错如下:
Suppressed: java.lang.IllegalStateException: Failed to close the XContentBuilderat org.elasticsearch.common.xcontent.XContentBuilder.close(XContentBuilder.java:1011)at org.elasticsearch.common.xcontent.XContentHelper.toXContent(XContentHelper.java:362)... 8 moreCaused by: java.io.IOException: Unclosed object or array foundat org.elasticsearch.common.xcontent.json.JsonXContentGenerator.close(JsonXContentGenerator.java:469)at org.elasticsearch.common.xcontent.XContentBuilder.close(XContentBuilder.java:1009)... 9 more
相关代码如下:
UpdateRequest request = new UpdateRequest("user","1001");
request.doc(XContentType.JSON, "sex","男");UpdateResponse updateResponse = client.update(request, RequestOptions.DEFAULT);
分析排查问题过程
下面这是ES 7.9.3版本客户端局部更新的文档,每种写法都试过了,报错都一样的
Update API | Java REST Client [7.9] | Elastic
基本排除代码问题,怀疑是客户端版本bug
客户端升级到7.17.1,问题解决
后续发现
因为我一直在elasticsearch仓库找不到对应的issue和问题修复代码,我就继续查了下,无意中发现存在maven依赖冲突,将log4j-core的冲突排掉后,问题竟然也解决了。
所以应该不是7.9.3版本的bug,而是本地依赖冲突,日志相关功能影响到XcontentBuilder关闭,具体的等日后加深理解后再继续分析