gpt4 book ai didi

elasticsearch - 尝试在Elasticsearch中删除索引的所有数据

转载 作者:行者123 更新时间:2023-12-03 02:38:06 25 4
gpt4 key购买 nike

我正在尝试删除所有文档,即索引中的数据。我在Kibana中使用v6.6和开发工具。

过去,我已经成功完成了此操作,但现在却说“未找到”

{
"_index" : "new-index",
"_type" : "doc",
"_id" : "_query",
"_version" : 1,
"result" : "not_found",
"_shards" : {
"total" : 2,
"successful" : 2,
"failed" : 0
},
"_seq_no" : 313,
"_primary_term" : 7
}

这是我的kibana声明
DELETE /new-index/doc/_query
{
"query": {
"match_all": {}
}
}

此外,验证索引的索引GET操作具有数据并存在:
GET new-index/doc/_search

我确认类型为doc,但可以根据需要发布整个映射。

最佳答案

通过使用按查询删除,我能够解决此问题:

POST new-index/_delete_by_query
{
"query": {
"match_all": {}
}
}

关于elasticsearch - 尝试在Elasticsearch中删除索引的所有数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58434826/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com