ES更新问题 Failed to close the XContentBuilder异常
问题描述
使用RestHighLevelClient对文档进行局部更新的时候报错如下:
Suppressed: java.lang.IllegalStateException: Failed to close the XContentBuilder
at org.elasticsearch.common.xcontent.XContentBuilder.close(XContentBuilder.java:1011)
at org.elasticsearch.common.xcontent.XContentHelper.toXContent(XContentHelper.java:362)
... 8 more
Caused by: java.io.IOException: Unclosed object or array found
at 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,问题解决
总结
ES客户端7.9.3版本局部更新存在bug,兄弟们注意避坑
原文地址:https://blog.csdn.net/qq_29914229/article/details/144037203
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!