Jedis 4.4.3 JedisCluster通过key获得哈希槽,再通过哈希槽得到节点的连接的源码

了解完redis服务端,就有一个疑问,如果redis是集群模式,客户端通过什么方式知道我要请求哪个节点呢?
下面就通过源码解析一下

  • 1、拿set和get举例子
  • 2、通过key计算哈希槽,再通过哈希槽得到槽所在节点的连接

1、拿set和get举例子

示例是从https://www.cnblogs.com/c-xiaohai/p/8376364.html 这里抄的

public static void main(String[] args) {
        // 添加集群的服务节点Set集合
        Set<HostAndPort> hostAndPortsSet = new HashSet<HostAndPort>();
        // 添加节点
        hostAndPortsSet.add(new HostAndPort("192.168.56.180", 7777));
        hostAndPortsSet.add(new HostAndPort("192.168.56.180", 8888));
        hostAndPortsSet.add(new HostAndPort("192.168.56.181", 7777));
        hostAndPortsSet.add(new HostAndPort("192.168.56.181", 8888));
        hostAndPortsSet.add(new HostAndPort("192.168.56.182", 7777));
        hostAndPortsSet.add(new HostAndPort("192.168.56.182", 8888));

        // Jedis连接池配置
        JedisPoolConfig jedisPoolConfig = new JedisPoolConfig();
        // 最大空闲连接数, 默认8个
        jedisPoolConfig.setMaxIdle(100);
        // 最大连接数, 默认8个
        jedisPoolConfig.setMaxTotal(500);
        //最小空闲连接数, 默认0
        jedisPoolConfig.setMinIdle(0);
        // 获取连接时的最大等待毫秒数(如果设置为阻塞时BlockWhenExhausted),如果超时就抛异常, 小于零:阻塞不确定的时间,  默认-1
        jedisPoolConfig.setMaxWaitMillis(2000); // 设置2秒
        //对拿到的connection进行validateObject校验
        jedisPoolConfig.setTestOnBorrow(true);
        JedisCluster jedisCluster = new JedisCluster(hostAndPortsSet, jedisPoolConfig);


        jedisCluster.set("key", "value");
        jedisCluster.get("key");

    }

2、通过key计算哈希槽,再通过哈希槽得到槽所在节点的连接

 public String set(String key, String value) {
        return (String)this.executeCommand(this.commandObjects.set(key, value));
    }
  public String get(String key) {
        return (String)this.executeCommand(this.commandObjects.get(key));
    }
   
  public final <T> T executeCommand(CommandObject<T> commandObject) {
        return this.executor.executeCommand(commandObject);
    }   
 public final <T> T executeCommand(CommandObject<T> commandObject) {
       //省略。。。。
       JedisRedirectionException redirect = null;
      if (redirect != null) { //这个可以忽略
          connection = this.provider.getConnection(redirect.getTargetNode());
          if (redirect instanceof JedisAskDataException) {
               connection.executeCommand(Command.ASKING);
            }
       } else {
       //这个是获取连接的命令,通过入参调用getConnection得到连接
          connection = this.provider.getConnection(commandObject.getArguments());
       }
       Object var8 = this.execute(connection, commandObject);
       return var8;
    //省略。。。。
    }

下面是getConnection方法的实现,实际上是通过入参得到哈希槽,再通过哈希槽得到此哈希槽所在节点的连接文章来源地址https://uudwc.com/A/6RDVj

 public Connection getConnection(CommandArguments args) {
        int slot = ((ClusterCommandArguments)args).getCommandHashSlot();
        return slot >= 0 ? this.getConnectionFromSlot(slot) : this.getConnection();
    }
阅读剩余 34%

原文地址:https://blog.csdn.net/weixin_43113679/article/details/132157737

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请联系站长进行投诉反馈,一经查实,立即删除!

上一篇 2023年08月08日 09:18
下一篇 2023年08月08日 09:18