如何在ElasticSearch上删除集合或索引?我正在使用.NET,而Elastic服务器位于localhost上。
答案 0 :(得分:0)
您可以通过以下API请求删除索引
library(tidyverse)
df %>% group_by(decile) %>% summarize(mean(amount>=10))
decile `mean(amount >= 10)`
<int> <dbl>
1 1 0.556
2 2 0.444
3 3 0.556
4 4 0.667
5 5 0.667
6 6 0.667
7 7 0.5
8 8 0.333
9 9 0.667
10 10 0.667
答案 1 :(得分:0)
您可以使用NEST
使用“ ElasticClient”
ElasticClient Client = new ElasticClient(connestionString);
IDeleteIndexResponse result = Client.DeleteIndex(IndexName);
if(result.IsValid)
{
//do some work
}