如何使用 client.bulk 方法在弹性搜索中设置冲突重试
How to set the retry on conflict in Elastic search using client.bulk method
我正在使用 client.bulk 方法插入弹性搜索。我需要根据文档在 client.bulk 中传递 retry_on_conflict 参数。
https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html
下面的代码我正在尝试,但出现错误。
const options = {
index: config.aws.es.index,
body: bulkBody,
retry_on_conflict: 5
// retryOnCflict: 5 (Tried this also)
};
client.bulk(options, (err, { body }) => {
if (err) {
reject(err);
} else {
// console.log('ES bulk result: %j', body);
resolve(body);
}
});
错误:
warnings: [
'Client - Unknown parameter: "retryOnConflict", sending it as query parameter'
],
任何人都可以帮助我如何在 client.bulk() 中添加 retry_on_conflict。
在批量请求的正文中添加 retry_on_conflict
,如图所示 here
我正在使用 client.bulk 方法插入弹性搜索。我需要根据文档在 client.bulk 中传递 retry_on_conflict 参数。
https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html
下面的代码我正在尝试,但出现错误。
const options = {
index: config.aws.es.index,
body: bulkBody,
retry_on_conflict: 5
// retryOnCflict: 5 (Tried this also)
};
client.bulk(options, (err, { body }) => {
if (err) {
reject(err);
} else {
// console.log('ES bulk result: %j', body);
resolve(body);
}
});
错误:
warnings: [
'Client - Unknown parameter: "retryOnConflict", sending it as query parameter'
],
任何人都可以帮助我如何在 client.bulk() 中添加 retry_on_conflict。
在批量请求的正文中添加 retry_on_conflict
,如图所示 here