retry_on_conflict 在 Jest ElasticSearch 中
retry_on_conflict in Jest ElasticSearch
在 Jest 中使用 Update.Builder 时是否可以以某种方式设置 retry_on_conflict 参数?
我正在尝试设置参数,但不知道如何将其添加到我的请求中。
我能否以某种方式将其添加到 "script" 字段,如更新文档部分的 https://github.com/searchbox-io/Jest/tree/master/jest 中所示?这也行。
操作方法如下:
Update update = new Update.Builder(payload)
.index(aliasName)
.type(typeName)
.id(docId)
.setParameter("retry_on_conflict", 5)
.build();
在 Jest 中使用 Update.Builder 时是否可以以某种方式设置 retry_on_conflict 参数?
我正在尝试设置参数,但不知道如何将其添加到我的请求中。
我能否以某种方式将其添加到 "script" 字段,如更新文档部分的 https://github.com/searchbox-io/Jest/tree/master/jest 中所示?这也行。
操作方法如下:
Update update = new Update.Builder(payload)
.index(aliasName)
.type(typeName)
.id(docId)
.setParameter("retry_on_conflict", 5)
.build();