elasticsearch
文章平均质量分 79
_delin
这个作者很懒,什么都没留下…
展开
-
elasticsearch java api使用,es java封装
最近需要使用到elasticsearch,封装了一些方法,在此记录下。1. 创建索引public static boolean createIndex(String index) { if (!isIndexExist(index)) { LOG.info("Index is not exits!"); } CreateInde原创 2017-04-20 20:30:54 · 11477 阅读 · 11 评论 -
es UpdateByQuery 出现 VersionConflictEngineException
问题出在多次更新统一doc出现版本不一致,抛出异常,修改不成功。 解决方法: 确认你的操作不会造成数据不一致的情况下, UpdateByQueryRequestBuilder实现类增加执行方法abortOnVersionConflict(false)like thisUpdateByQueryRequestBuilder ubqrb = UpdateByQueryAction.INSTANCE原创 2017-08-25 15:05:08 · 11402 阅读 · 1 评论 -
elasticsearch UpdateByQuery的使用
上一篇发了解决elasticsearch UpdateByQuery的问题,后来遇到好多小伙伴问我,为什么他使用不了UpdateByQuery,遂科普下。 在于你可能没有引入reindex包:<dependency> <groupId>org.elasticsearch.module</groupId> <artifactId>reindex</artifactId> <v原创 2017-08-29 16:10:43 · 16422 阅读 · 0 评论