使用shell脚本怎么批量删除es索引?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
发现elasticsearch集群的状态是red,unassign的分片数很多,看了下都是些旧的日期的索引(应该是定时任务删除失败导致的)。
curl -XGET ip:port/_cat/shards | grep UNASSIGNED
数量有几百个,写个脚本处理下,先恢复成green。red状态好像会影响索引创建和数据迁移
先把需要删除的索引导出到文件
curl -XGET ip:port/_cat/shards | grep UNASSIGNED >> needDelIndex.txt
确认下要删除的索引列表。没问题就执行下面删除shell(es的ip和端口需要修改下)
#!/bin/bash
echo "$1"
esUrl=${esip}:${esport}
indexfile=needDelIndex.txt
#cp -f /dev/null ${indexfile}
#curl -XGET ip:port/_cat/shards | grep UNASSIGNED >> needDelIndex.txt
if [ ! -f ./${indexfile} ]; then
echo $indexfile not exists
exit 0
fi
logfile=esindex_del.`date +"%m-%d"`.log
cp -f /dev/null ${logfile}
lastIndexName="test"
for item in `cat ${indexfile} | awk '{print $1}'`
do
if [ "$item" = "error" ]
then
continue
fi
if [ "$item" != "$lastIndexName" ]
then
curl -XDELETE ${esUrl}/${item} >> ${logfile}
echo ---------${item} `date` >> ${logfile}
sleep 5
fi
lastIndexName=${item}
done
因为我们的索引是按天创建的,索引名前缀是yyyy-MM-dd, 保留一段时间后需要批量删除。shell的第一个参数为yyyy-MM-dd,将删除该天及以前的旧索引
#!/bin/bash
esUrl=${esip}:${esport}
echo "$1"
if [ $# -ge 1 ]
then
deleteDate=$1
else
echo "please inpust detete esindex's date(yyyy-MM-dd)"
exit 0
fi
indexfile=esindex.info
cp -f /dev/null ${indexfile}
curl '${esUrl}/_cat/indices' >> ${indexfile}
logfile=esindex_del.`date +"%m-%d"`.out
cp -f /dev/null ${logfile}
for item in `cat ${indexfile} | awk '{print $3}'`
do
if [ "$item" = "error" ]
then
continue
fi
parameter=${esUrl}/${item}
indexdate=${item:0:10}
if [ "$indexdate" = "$deleteDate" ]
then
curl -XDELETE ${parameter} >> ${logfile}
echo ---------${item} >> ${logfile}
sleep 5
elif [[ "$indexdate" < "$deleteDate" ]]
then
curl -XDELETE ${parameter} >> ${logfile}
echo ---------${item} >> ${logfile}
sleep 5
fi
done
看完上述内容,你们掌握使用shell脚本怎么批量删除es索引的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。
原文链接:https://www.jb51.net/article/157846.htm