美文网首页
elasticsearch 自动清理

elasticsearch 自动清理

作者: 大鹏一怒乘风起 | 来源:发表于2020-12-31 10:17 被阅读0次

cat /opt/scripts/esindexclear.sh
编辑以下脚本

#/bin/bash
#es-index-clear
#只保留15天内的日志索引
LAST_DATA=`date -d "-15 days" "+%Y.%m.%d"`
#删除上个月份所有的索引
curl -XDELETE 'http://10.1.1.1:9200/*-'${LAST_DATA}'*'

crontab -e 
0 1 * * * sh /opt/scripts/esindexclear.sh >/dev/null 2>&1

相关文章

网友评论

      本文标题:elasticsearch 自动清理

      本文链接:https://www.haomeiwen.com/subject/nvjloktx.html