• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    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中如何批量注释和取消注释
    • shell脚本实现统计文件大小、批量创建用户的示例
    • shell脚本批量复制及执行命令的示例详解
    • 使用Shell脚本批量启停Docker服务
    • shell脚本实现ssh-copy-id批量自动发送公钥到远程主机
    • shell批量curl接口脚本的简单实现方法
    • 详解Shell 命令行批量处理图片文件名的实例
    • 如何使用shell在多服务器上批量操作
    上一篇:Shell中的while循环几种使用实例详解
    下一篇:shell脚本操作mysql数据库删除重复的数据
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    shell脚本批量删除es索引的方法 shell,脚本,批量,删除,索引,