Redis中sentinel集群的搭建和Jedis测试 图文教程[二]

Redis中sentinel集群的搭建和Jedis测试 图文教程[一] 中已经写了Redis中sentinel集群的搭建和测试,这一章主要写Redis中sentinel的Jedis测试。



一般sentinel架构图为至少4台机子测试

我这里测试的时候只用两台机子,一台跑Redis-Sentinel和所有的Redis master-slave,一台跑java测试程序。

xserver.ini为项目工程的配置文件

[Redis]
REDIS_NUMBERS=3
REDIS_SERVER_1=tcp://192.168.0.86:26379
REDIS_SERVER_2=tcp://192.168.0.86:26479
REDIS_SERVER_3=tcp://192.168.0.86:26579
REDIS_MASTER=mymaster
REDIS_PASSWORD=vhreal
REDIS_TIME_OUT=5000
REDIS_DATABASE=0

RedisConnector.java为Redis操作封装类

import java.util.HashSet;
import java.util.Set;

import org.apache.commons.pool2.impl.GenericObjectPoolConfig;

import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisSentinelPool;
import Albert.CfgFileReader.CfgFileReader;

public class RedisConnector {

    static public HashSet<String> REDIS_SERVER = new HashSet<String>();
    static public int REDIS_NUMBERS = 1;
    static public String REDIS_MASTER = "master";
    static public String REDIS_PASSWORD = "";
    static public int REDIS_TIME_OUT = 1000;
    static public int REDIS_DATABASE = 0;
    static public JedisSentinelPool jedisSentinelPool = null;
    static public Object syncObj = new Object();

    static public void Start() {
        synchronized (syncObj) {
            CfgFileReader cfg = null;

            try {
                cfg = new CfgFileReader("XServer.ini");

                // [Redis]
                REDIS_NUMBERS = cfg.getInteger("REDIS_NUMBERS", 1);
                REDIS_MASTER = cfg.getString("REDIS_MASTER", "master");
                REDIS_PASSWORD = cfg.getString("REDIS_PASSWORD", "master");
                REDIS_TIME_OUT = cfg.getInteger("REDIS_TIME_OUT", 5000);
                REDIS_DATABASE = cfg.getInteger("REDIS_DATABASE", 0);

                if (REDIS_PASSWORD.length() == 0)
                    REDIS_PASSWORD = null;

                for (int i = 0; i < REDIS_NUMBERS; ++i) {
                    String key = String.format("REDIS_SERVER_%d", i + 1);
                    String value = cfg.getString(key, "");
                    value = value.replace("tcp://", "");
                    value = value.replace("/", "");
                    value = value.toString().trim();

                    if (value.length() > 0) {
                        REDIS_SERVER.add(value);
                    }
                }

                if (jedisSentinelPool != null) {
                    jedisSentinelPool.destroy();
                    jedisSentinelPool = null;
                }

                System.out.println("Creating JedisSentinelPool...");

                jedisSentinelPool = new JedisSentinelPool(REDIS_MASTER,
                        REDIS_SERVER, new GenericObjectPoolConfig(),
                        REDIS_TIME_OUT, REDIS_PASSWORD, REDIS_DATABASE);

                System.out.println("Create JedisSentinelPool Success");
            } catch (Exception ex) {
                ex.printStackTrace();
            } finally {
                if (cfg != null) {
                    cfg.close();
                    cfg = null;
                }
            }
        }
    }

    static public boolean Set(String key, String value) {
        if (jedisSentinelPool == null)
            return false;

        synchronized (syncObj) {
            Jedis jedis = null;

            try {
                jedis = jedisSentinelPool.getResource();

                if (jedis != null) {
                    if (value == null)
                        value = "";

                    jedis.set(key, value);
                    return true;
                }
            } catch (Exception ex) {
                ex.printStackTrace();
                jedisSentinelPool.returnBrokenResource(jedis);
            } finally {
                jedisSentinelPool.returnResource(jedis);
            }

            return false;
        }
    }

    static public String Get(String key, String defaultval) {
        if (jedisSentinelPool == null)
            return defaultval;

        synchronized (syncObj) {
            Jedis jedis = null;

            try {
                jedis = jedisSentinelPool.getResource();

                if (jedis != null) {
                    String value = jedis.get(key);

                    if (value == null)
                        value = defaultval;

                    return value;
                }
            } catch (Exception ex) {
                ex.printStackTrace();
                jedisSentinelPool.returnBrokenResource(jedis);
            } finally {
                jedisSentinelPool.returnResource(jedis);
            }

            return defaultval;
        }
    }

    static public boolean Del(String key) {
        if (jedisSentinelPool == null)
            return false;

        synchronized (syncObj) {
            Jedis jedis = null;

            try {
                jedis = jedisSentinelPool.getResource();

                if (jedis != null) {
                    jedis.del(key);
                    return true;
                }
            } catch (Exception ex) {
                ex.printStackTrace();
                jedisSentinelPool.returnBrokenResource(jedis);
            } finally {
                jedisSentinelPool.returnResource(jedis);
            }

            return false;
        }
    }

    static public boolean Auth(String key) {
        if (jedisSentinelPool == null)
            return false;

        synchronized (syncObj) {
            Jedis jedis = null;

            try {
                jedis = jedisSentinelPool.getResource();

                if (jedis != null) {
                    jedis.auth(key);
                    return true;
                }
            } catch (Exception ex) {
                ex.printStackTrace();
                jedisSentinelPool.returnBrokenResource(jedis);
            } finally {
                jedisSentinelPool.returnResource(jedis);
            }

            return false;
        }
    }

    static public Set<String> Select(String pattern) {
        if (jedisSentinelPool == null)
            return null;

        synchronized (syncObj) {
            Jedis jedis = null;

            try {
                jedis = jedisSentinelPool.getResource();

                if (jedis != null) {
                    Set<String> keys = jedis.keys(pattern);
                    return keys;
                }
            } catch (Exception ex) {
                ex.printStackTrace();
                jedisSentinelPool.returnBrokenResource(jedis);
            } finally {
                jedisSentinelPool.returnResource(jedis);
            }

            return null;
        }
    }
}

RedisTest.java为测试main函数

public class RedisTest {

    public static void main(String[] args) {

        RedisConnector.Start();

        RedisConnector.Set("str1", "world");
        System.out.println(RedisConnector.Get("str", "default"));
        System.out.println(RedisConnector.Get("str1", "default"));
    }
}

初始运行RedisTest.java文件,会发现如下问题

因为我是用两台机子测试的,一台跑redis服务器,服务器的ip为192.168.0.86。一台跑测试java程序,测试程序所在机子的ip为192.168.0.83。两台机子在一个局域网段。

但是我之前sentinel配置master-slave的时候有的ip设为127.0.0.1,当然192.168.0.83上的测试程序无法连接127.0.0.1的服务器从而无法获取资源。

把sentinel配置中的ip全部改为192.168.0.86

运行程序结果如下:

时间: 2024-11-05 18:56:48

Redis中sentinel集群的搭建和Jedis测试 图文教程[二]的相关文章

Redis中sentinel集群的搭建和Jedis测试 图文教程[三]

在前两篇Redis中sentinel集群的搭建和Jedis测试 图文教程[一] 和Redis中sentinel集群的搭建和Jedis测试 图文教程[二] 中分别简述了Redis中sentinel集群的搭建和Java代码的Jedis测试. 这篇主要来简单分析一下Redis-sentinel集群的原理,根据追踪sentinel信息来完成Redis-sentinel集群测试中的详细的原理分析.包括master-slave各个中的sentinel信息的分析,failover过程,master宕机后的le

Redis中sentinel集群的搭建和Jedis测试 图文教程[一]

一.测试环境 master: 127.0.0.1 6379 slave1: 127.0.0.1 6479 slave2: 127.0.0.1 6579 master-sentinel: 127.0.0.1 26379 slave1-sentinel: 127.0.0.1 26479 slave2-sentinel: 127.0.0.1 26579 二.下载安装redis 2.8.3 wget http://download.redis.io/releases/redis-2.8.3.tar.gz

Redis单机和集群环境搭建

一.安装单机版redis 1.可以自己去官网下载,当然也可以用课程提供的压缩包 # yum install gcc # wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz # tar -xzvf tcl8.6.1-src.tar.gz # cd /usr/local/tcl8.6.1/unix/ # ./configure # make && make install 2.使用redis-3.2.8.tar.gz(稳定

redis分片存储集群的搭建

环境说明: twemproxy 192.168.0.112:22122 centos6.5 redis 192.168.0.113:6379 centos6.5 redis 192.168.0.113:6380 centos6.5 twemproxy安装: [[email protected] src]# tar -zxf nutcracker-0.4.0.tar.gz  [[email protected] src]# cd nutcracker-0.4.0 [[email protected

redis cluster官方集群的搭建笔记

参考文档: https://www.zybuluo.com/phper/note/195558 http://www.cnblogs.com/shihaiming/p/5949772.html http://redis.io/topics/cluster-tutorial http://xiaorui.cc 系统环境: CentOS6.7 X86_64 双机6节点: node1: 192.168.2.11 node2: 192.168.2.12 node3:192.168.2.13 redis

消息订阅发布系统Apache Kafka分布式集群环境搭建和简单测试

一.什么是kafka? kafka是LinkedIn开发并开源的一个分布式MQ系统,现在是Apache的一个孵化项目.在它的主页描述kafka为一个高吞吐量的分布式(能将消息分散到不同的节点上)MQ.Kafka仅仅由7000行Scala编写,据了解,Kafka每秒可以生产约25万消息(50 MB),每秒处理55万消息(110 MB) 二.kafka的官方网站在哪里? http://kafka.apache.org/ 三.在哪里下载?需要哪些组件的支持? kafka2.9.2在下面的地址可以下载:

Redis哨兵模式集群部署

上次搭测试环境的时候写了一个redis哨兵模式搭建的博客,不幸的是我的博客网站挂掉了,这次搭生产环境再将redis哨兵模式集群模式搭建记录一次.(博客园不会丢掉我的数据吧..) 本次部署包含三个节点,一个主节点,两个从节点,从节点上面有两个哨兵(sentinel). 一.将需要安装redis压缩包上传到其中一台服务器的/usr/local目录下. cd /usr/local //进入文件夹tar -xvf redis-5.0.4.tar.gz //解压cd redis-5.0.4 //进入目录m

Redis高可用集群

Redis 高可用集群 Redis 的集群主从模型是一种高可用的集群架构.本章主要内容有:高可用集群的搭建,Jedis连接集群,新增集群节点,删除集群节点,其他配置补充说明. 高可用集群搭建 集群(cluster)技术是一种较新的技术,通过集群技术,可以在付出较低成本的情况下获得在性能.可靠性.灵活性方面的相对较高的收益,其任务调度则是集群系统中的核心技术. Redis 3.0 之后便支持集群.Redis 集群中内置了 16384 个哈希槽.Redis 会根据节点数量大致均等的将哈希槽映射到不同

【redis】 linux 下redis 集群环境搭建

Redis集群部署文档(centos6系统) (要让集群正常工作至少需要3个主节点,在这里我们要创建6个redis节点,其中三个为主节点,三个为从节点,对应的redis节点的ip和端口对应关系如下) 127.0.0.1:7000127.0.0.1:7001 127.0.0.1:7002 127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005 1:下载redis.官网下载3.0.0版本,之前2.几的版本不支持集群模式 下载地址:https://github.com