1、 #删除单个索引
# curl -XDELETE -u elastic:elasticpasswd http://localhost:9200/index_name
{"acknowledged":true}
2、#删除多个指定索引,中间用逗号隔开
# curl -XDELETE -u elastic:elasticpasswd http://localhost:9200/index_name_01,index_name_02
3、#模糊匹配删除
# curl -XDELETE -u elastic:elasticpasswd http://localhost:9200/index_name*
{"acknowledged":true}
4、#使用通配符,删除所有的索引
curl -XDELETE http://localhost:9200/_all 或 curl -XDELETE http://localhost:9200/*
_all ,* 通配所有的索引
通常不建议使用通配符,误删了后果就很严重了,所有的index都被删除了
禁止通配符为了安全起见,可以在elasticsearch.yml配置文件中设置禁用_all和*通配符
action.destructive_requires_name = true
这样就不能使用_all和*了
5、#获取当前索引
# curl -u elastic:elasticpasswd 'localhost:9200/_cat/indices?v'
6、如果存储不够可以设置定时删除,下面是保留3天的日志文章来源:https://www.toymoban.com/news/detail-508964.html
以下是定时删除脚本:文章来源地址https://www.toymoban.com/news/detail-508964.html
#!/bin/bash
time=$(date -d '-3days' +'%Y.%m.%d')
curl -XDELETE -u elastic:changeme http://localhost:9200/*-${time}
添加计划任务
10 1 * * * /usr/bin/curl -XDELETE -u elastic:elasticpasswd http://localhost:9200/*-$(date -d '-3days' +'%Y.%m.%d') >/dev/null 2>&1
到了这里,关于Es 索引查询与删除的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!