如何使用node.js删除弹性搜索中的所有索引?

时间:2015-08-10 18:39:01

标签: node.js elasticsearch

documentation建议使用以下函数删除特定索引:

cur.execute("INSERT INTO temp (column1,column2) VALUES(f_udfName(12345678901),12345678901)")

我已经适应了:

client.delete({
  index: 'myindex',
  type: 'mytype',
  id: '1'
}, function (error, response) {
  // ...
});

但是这给了我以下错误:

client.delete({
  index: '_all'
}, function (error, response) {
  // ...
});

我一直在寻找几个小时无济于事,有人有什么想法吗?

1 个答案:

答案 0 :(得分:21)

所以,事实证明我使用的是错误的方法。下面应该注意删除所有索引。

client.indices.delete({
    index: '_all'
}, function(err, res) {

    if (err) {
        console.error(err.message);
    } else {
        console.log('Indexes have been deleted!');
    }
});

您可以在该指数'中引入特定的索引名称。参数,你也可以使用' *'作为' _all'的替代。