服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Redis - 详解如何清理redis集群的所有数据

详解如何清理redis集群的所有数据

2021-07-26 16:35前路无畏 Redis

这篇文章主要介绍了详解如何清理redis集群的所有数据,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

1. 背景:生产测试后redis中产生大量数据

 

生产前需要清理reids集群中的数据。、
你看有很多key呢:

使用工具

详解如何清理redis集群的所有数据

使用命令,查看是否有数据:

?
1
keys *

详解如何清理redis集群的所有数据

2. 清理步骤

 

2.1 任意登录一台redis机器

执行下面脚本:

?
1
clear_redis_cluster.sh 10.1.33.101:8001 redis

详解如何清理redis集群的所有数据

执行日志如下:

详解如何清理redis集群的所有数据

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
clearing 10.1.33.112:8028 ...
background append only file rewriting started
readonly you can't write against a read only replica.
clearing 10.1.33.110:8026 ...
background append only file rewriting started
readonly you can't write against a read only replica.
clearing 10.1.33.111:8027 ...
background append only file rewriting started
readonly you can't write against a read only replica.
clearing 10.1.33.107:8007 ...
background append only file rewriting started
ok
clearing 10.1.33.108:8024 ...
background append only file rewriting started
readonly you can't write against a read only replica.
clearing 10.1.33.104:8020 ...
background append only file rewriting started
readonly you can't write against a read only replica.
clearing 10.1.33.114:8014 ...
background append only file rewriting started
ok
clearing 10.1.33.109:8025 ...
background append only file rewriting started
readonly you can't write against a read only replica.
clearing 10.1.33.105:8005 ...
background append only file rewriting started
ok
clearing 10.1.33.108:8008 ...
background append only file rewriting started
ok

2.2 clear_redis_cluster.sh内容

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/bin/bash
# writed by yijian on 2018/8/20
# batch to clear all nodes using flushall command
# 用来清空一个redis集群中的所有数据,要求 flushall 命令可用,
# 如果在 redis.conf 中使用 rename 改名了 flushall,则不能执行本脚本。
# 可带两个参数:
# 1)参数1 集群中的任一可用节点(必须)
# 2)连接redis的密码(设置了密码才需要)
redis_cli=${redis_cli:-redis-cli}
redis_ip=${redis_ip:-127.0.0.1}
redis_port=${redis_port:-6379}
 
# 显示用法函数
function usage()
{
  echo "usage: clear_redis_cluster.sh a_redis_node_of_cluster redis_password"
  echo "example1: clear_redis_cluster.sh '127.0.0.1:6379'"
  echo "example2: clear_redis_cluster.sh '127.0.0.1:6379' '123456'"
}
 
# 检查参数个数
if test $# -lt 1 -o $# -gt 2; then
  usage
  exit 1
fi
 
# 第一个参数为集群中的节点,
redis_node="$1"
# 第二个参数为密码
redis_password=""
if test $# -ge 2; then
  redis_password="$2"
fi
 
# 取得ip和端口
eval $(echo "$redis_node" | awk -f[\:] '{ printf("redis_ip=%s\nredis_port=%s\n",$1,$2) }')
if test -z "$redis_ip" -o -z "$redis_port"; then
  echo "parameter error: \`$redis_node\`."
  usage
  exit 1
fi
 
# 确保redis-cli可用
echo "checking \`redis-cli\` ..."
which "$redis_cli" > /dev/null 2>&1
if test $? -ne 0; then
  echo "command \`redis-cli\` is not exists or not executable."
  echo "you can set environment variable \`redis_cli\` to point to the redis-cli."
  echo "example: export redis_cli=/usr/local/bin/redis-cli"
  exit 1
fi
 
if test -z "$redis_password"; then
  redis_nodes=`redis-cli -h $redis_ip -p $redis_port cluster nodes | awk -f[\ \:\@] '!/err/{ printf("%s:%s\n",$2,$3); }'`
else
  redis_nodes=`redis-cli --no-auth-warning -a "$redis_password" -h $redis_ip -p $redis_port cluster nodes | awk -f[\ \:\@] '!/err/{ printf("%s:%s\n",$2,$3); }'`
fi
if test -z "$redis_nodes"; then
  # standlone(非集群)
  if test -z "$redis_password"; then
    $redis_cli -h $redis_ip -p $redis_port flushall async
    $redis_cli -h $redis_ip -p $redis_port bgrewriteaof
  else
    $redis_cli --no-auth-warning -a "$redis_password" -h $redis_ip -p $redis_port flushall async
    $redis_cli --no-auth-warning -a "$redis_password" -h $redis_ip -p $redis_port bgrewriteaof
  fi
else
  # cluster(集群)
  for redis_node in $redis_nodes;
  do
    if test ! -z "$redis_node"; then
      eval $(echo "$redis_node" | awk -f[\:] '{ printf("redis_node_ip=%s\nredis_node_port=%s\n",$1,$2) }')
 
      if test ! -z "$redis_node_ip" -a ! -z "$redis_node_port"; then
        # clear
        echo -e "clearing \033[1;33m${redis_node_ip}:${redis_node_port}\033[m ..."
        if test -z "$redis_password"; then
          result=`$redis_cli -h $redis_node_ip -p $redis_node_port flushall async`
          $redis_cli -h $redis_node_ip -p $redis_node_port bgrewriteaof
        else
          result=`$redis_cli --no-auth-warning -a "$redis_password" -h $redis_node_ip -p $redis_node_port flushall async`
          $redis_cli --no-auth-warning -a "$redis_password" -h $redis_node_ip -p $redis_node_port bgrewriteaof
        fi
 
        if test ! -z "$result"; then
          # success
          if test "$result" = "ok"; then
            echo -e "\033[0;32;32m$result\033[m"
          else
            echo -e "\033[0;32;31m$result\033[m"
          fi
        fi
      fi
    fi
  done
fi

这位仁兄的脚本写的特别好。直接执行即可。

2.3 确认删除成功

使用redis工具查看:

详解如何清理redis集群的所有数据

3.清理单机redis

 

?
1
flushall

4.总结

 

使用脚本删除redis集群中的数据。
记得地址哦:https://github.com/eyjian/redis-tools/blob/master/clear_redis_cluster.sh

到此这篇关于详解如何清理redis集群的所有数据的文章就介绍到这了,更多相关清理redis集群数据内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/fsjwin/article/details/111300274

延伸 · 阅读

精彩推荐
  • Redis如何使用Redis锁处理并发问题详解

    如何使用Redis锁处理并发问题详解

    这篇文章主要给大家介绍了关于如何使用Redis锁处理并发问题的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用Redis具有一定的参考学习...

    haofly4522019-11-26
  • Redis关于Redis数据库入门详细介绍

    关于Redis数据库入门详细介绍

    大家好,本篇文章主要讲的是关于Redis数据库入门详细介绍,感兴趣的同学赶快来看一看吧,对你有帮助的话记得收藏一下,方便下次浏览...

    沃尔码6982022-01-24
  • RedisRedis Template实现分布式锁的实例代码

    Redis Template实现分布式锁的实例代码

    这篇文章主要介绍了Redis Template实现分布式锁,需要的朋友可以参考下 ...

    晴天小哥哥2592019-11-18
  • Redisredis缓存存储Session原理机制

    redis缓存存储Session原理机制

    这篇文章主要为大家介绍了redis缓存存储Session原理机制详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪...

    程序媛张小妍9252021-11-25
  • RedisRedis 6.X Cluster 集群搭建

    Redis 6.X Cluster 集群搭建

    码哥带大家完成在 CentOS 7 中安装 Redis 6.x 教程。在学习 Redis Cluster 集群之前,我们需要先搭建一套集群环境。机器有限,实现目标是一台机器上搭建 6 个节...

    码哥字节15752021-04-07
  • Redis详解三分钟快速搭建分布式高可用的Redis集群

    详解三分钟快速搭建分布式高可用的Redis集群

    这篇文章主要介绍了详解三分钟快速搭建分布式高可用的Redis集群,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,...

    万猫学社4502021-07-25
  • RedisRedis集群的5种使用方式,各自优缺点分析

    Redis集群的5种使用方式,各自优缺点分析

    Redis 多副本,采用主从(replication)部署结构,相较于单副本而言最大的特点就是主从实例间数据实时同步,并且提供数据持久化和备份策略。...

    优知学院4082021-08-10
  • Redis《面试八股文》之 Redis十六卷

    《面试八股文》之 Redis十六卷

    redis 作为我们最常用的内存数据库,很多地方你都能够发现它的身影,比如说登录信息的存储,分布式锁的使用,其经常被我们当做缓存去使用。...

    moon聊技术8182021-07-26