初识RabbitMQ

文章目录


一、RabbitMQ概述

1.1什么是消息队列

消息(Message)是指在应用间传送的数据。消息可以非常简单,比如只包含文本字符串,也可以更复杂,可能包含嵌入对象。(传输对象建议使用json)
消息队列(Message Queue)是一种应用间的通信方式,消息发送后可以立即返回,由消息系统来确保消息的可靠传递。消息发布者只管把消息发布到 MQ 中而不用管谁来取,消息使用者只管从 MQ 中取消息而不管是谁发布的。这样发布者和使用者都不用知道对方的存在。

1.2为什么要使用消息队列

在高并发的应用场景下,由于服务端来不及同步处理数量过多的请求,可能会导致请求堵塞。在这类高并发环境下我们可以使用消息队列,将业务中一些不需要立即生效的操作拆分出来异步执行,从而减缓系统的压力,提高主要业务的效率。
以上是用于业务解耦的情况,其它常见场景包括最终一致性、广播、错峰流控等等。

1.3RabbitMQ的特点

RabbitMQ 是一个由 Erlang 语言开发的 AMQP 的开源实现。
AMQP :Advanced Message Queue,高级消息队列协议。它是应用层协议的一个开放标准,为面向消息的中间件设计,基于此协议的客户端与消息中间件可传递消息,并不受产品、开发语言等条件的限制。
RabbitMQ 最初起源于金融系统,用于在分布式系统中存储转发消息,在易用性、扩展性、高可用性等方面表现不俗。具体特点包括:

1、可靠性(Reliability)
RabbitMQ 使用一些机制来保证可靠性,如持久化、传输确认、发布确认。
2、灵活的路由(Flexible Routing)
在消息进入队列之前,通过 Exchange 来路由消息的。对于典型的路由功能,RabbitMQ 已经提供了一些内置的 Exchange 来实现。针对更复杂的路由功能,可以将多个 Exchange 绑定在一起,也通过插件机制实现自己的 Exchange 。
3、 消息集群(Clustering)
多个 RabbitMQ 服务器可以组成一个集群,形成一个逻辑 Broker 。
高可用(Highly Available Queues)
队列可以在集群中的机器上进行镜像,使得在部分节点出问题的情况下队列仍然可用。
4、多种协议(Multi-protocol)
RabbitMQ 支持多种消息队列协议,比如 STOMP、MQTT 等等。
5、多语言客户端(Many Clients)
RabbitMQ 几乎支持所有常用语言,比如 Java、.NET、Ruby 等等。
6、 管理界面(Management UI)
RabbitMQ 提供了一个易用的用户界面,使得用户可以监控和管理消息 Broker 的许多方面。
7、 跟踪机制(Tracing)
如果消息异常,RabbitMQ 提供了消息跟踪机制,使用者可以找出发生了什么。

二、RabbitMQ安装

一般来说安装 RabbitMQ 之前要安装 Erlang ,可以去Erlang官网下载。接着去RabbitMQ官网下载安装包,之后解压缩即可。
Erlang官方下载地址:https://www.erlang.org/downloads
RabbitMQ官方下载地址:https://www.rabbitmq.com/download.html

2.1安装前准备

Erlang安装包、RabbitMQ安装包、VMware虚拟机linux系统

2.2安装linux系统

这没什么好说的,注意计算机名称合法(不能包含特殊字符,例如:中文、下划线 、 星号)、网卡一定要打开(看到IP)

2.3安装Erlang环境

1. 使用rz -y命令把Erlang安装包上传到linux
2. 安装前置依赖库
yum install gcc glibc-devel make ncurses-devel openssl-devel xmlto -y
3. 解压erlang 源码包
tar -zxvf otp_src_19.3.tar.gz
4. 手动创建erlang 的安装目录
mkdir /usr/local/erlang
5. 进入erlang的解压目录
cd otp_src_19.3
6. 配置erlang的安装信息
./configure --prefix=/usr/local/erlang --without-javac
7. 编译并安装
make && make install
8. 配置环境变量
vim /etc/profile
9. 将这些配置填写到profile文件的最后
ERL_HOME=/usr/local/erlang
PATH=$ERL_HOME/bin:$PATH
export ERL_HOME PATH
10. 启动环境变量配置文件
source /etc/profile
11. 使用erl -version检查是否安装成功

2.4安装RabbitMQ

1. 将RabbitMQ的安装包上传
2. 安装RabbitMQ
rpm -ivh --nodeps rabbitmq-server-3.7.2-1.el7.noarch.rpm

三、RabbitMQ的常用命令

3.1 启停服务

3.1.1 启动RabbitMQ

rabbitmq-server start &

3.1.2 停止RabbitMQ

rabbitmqctl stop

3.2 插件管理

3.2.1 添加插件

rabbitmq-plugins enable {插件名}

3.2.2 删除插件

rabbitmq-plugins disable {插件名}

3.2.3 使用浏览器访问管控台http://RabbitMQ服务器IP:15672

http://192.168.71.128:15672

注意:RabbitMQ启动以后可以使用浏览器进入管控台但是默认情况RabbitMQ不允许直接使用浏览器浏览器进行访问因此必须添加插件
rabbitmq-plugins enable rabbitmq_management

3.3 用户管理

RabbitMQ安装成功后使用默认用户名guest登录
账号:guest
密码:guest
注意:这里guest只允许本机登录访问需要创建用户并授权远程访问命令如下

3.3.1 添加用户

语法:rabbitmqctl add_user {username} {password}
例如:rabbitmqctl add_user root root

3.3.2 删除用户

语法:rabbitmqctl delete_user {username}

3.3.3 修改密码

语法:rabbitmqctl change_password {username} {newpassword}
例如:rabbitmqctl change_password root 123456

3.3.4 设置用户角色

语法:rabbitmqctl set_user_tags {username} {tag}
例如:rabbitmqctl set_user_tags root administrator

tag参数表示用户角色取值为:management ,monitoring ,policymaker administrator

各角色详解:

management
用户可以通过AMQP做的任何事外加:
列出自己可以通过AMQP登入的virtual hosts  
查看自己的virtual hosts中的queues, exchanges 和 bindings
查看和关闭自己的channels 和 connections
查看有关自己的virtual hosts的“全局”的统计信息,包含其他用户在这些virtual hosts中的活动。

policymaker 
management可以做的任何事外加:
查看、创建和删除自己的virtual hosts所属的policies和parameters

monitoring  
management可以做的任何事外加:
列出所有virtual hosts,包括他们不能登录的virtual hosts
查看其他用户的connections和channels
查看节点级别的数据如clustering和memory使用情况
查看真正的关于所有virtual hosts的全局的统计信息

administrator   
policymaker和monitoring可以做的任何事外加:
创建和删除virtual hosts
查看、创建和删除users
查看创建和删除permissions
关闭其他用户的connections

3.4 权限管理

3.4.1 授权命令

语法:rabbitmqctl set_permissions [-p vhostpath] {user} {conf} {write} {read}
-p vhostpath :用于指定一个资源的命名空间,例如 –p / 表示根路径命名空间
user:用于指定要为哪个用户授权填写用户名
conf:一个正则表达式match哪些配置资源能够被该用户配置。
write:一个正则表达式match哪些配置资源能够被该用户写。
read:一个正则表达式match哪些配置资源能够被该用户访问。
例如:
rabbitmqctl set_permissions -p / root ‘.’ '.’ ‘.*’
用于设置root用户拥有对所有资源的 读写配置权限

3.4.2 查看用户权限

语法:rabbitmqctl list_permissions [vhostpath]
例如:
查看根径经下的所有用户权限
rabbitmqctl list_permissions
查看指定命名空间下的所有用户权限
rabbitmqctl list_permissions /abc

3.4.3 查看指定用户下的权限

语法:rabbitmqctl list_user_permissions {username}
例如:
查看root用户下的权限
rabbitmqctl list_user_permissions root

3.4.4 清除用户权限

语法:rabbitmqctl clear_permissions {username}
例如:
清除root用户的权限
rabbitmqctl clear_permissions root

3.5 vhost管理

vhost是RabbitMQ中的一个命名空间,可以限制消息的存放位置利用这个命名空间可以进行权限的控制有点类似Windows中的文件夹一样,在不同的文件夹中存放不同的文件。

3.5.1 添加vhost

语法: rabbitmqctl add vhost {name}
例如:
rabbitmqctl add vhost bjpowernode

3.5.2 删除vhost

语法:rabbitmqctl delete vhost {name}
例如:
rabbitmqctl delete vhost bjpowernode

四、RabbitMQ消息发送和接收

4.1 RabbitMQ的消息发送和接收机制

所有 MQ 产品从模型抽象上来说都是一样的过程:
消费者(consumer)订阅某个队列。生产者(producer)创建消息,然后发布到队列(queue)中,最后将消息发送到监听的消费者。
在这里插入图片描述上面是MQ的基本抽象模型,但是不同的MQ产品有有者不同的机制,RabbitMQ实际基于AMQP协议的一个开源实现,因此RabbitMQ内部也是AMQP的基本概念。

4.2 AMQP 中的消息路由

AMQP 中消息的路由过程和 Java 开发者熟悉的 JMS 存在一些差别,AMQP 中增加了 Exchange 和 Binding 的角色。生产者把消息发布到 Exchange 上,消息最终到达队列并被消费者接收,而 Binding 决定交换器的消息应该发送到那个队列

4.3 Exchang 类型

Exchange分发消息时根据类型的不同分发策略有区别,目前共四种类型:direct、fanout、topic、headers 。headers 匹配 AMQP 消息的 header 而不是路由键,此外 headers 交换器和 direct 交换器完全一致,但性能差很多,目前几乎用不到了,所以直接看另外三种类型

1、direct
消息中的路由键(routing key)如果和 Binding 中的 binding key 一致, 交换器就将消息发到对应的队列中。路由键与队列名完全匹配,如果一个队列绑定到交换机要求路由键为“dog”,则只转发 routing key 标记为“dog”的消息,不会转发“dog.puppy”,也不会转发“dog.guard”等等。它是完全匹配、单播的模式。

2、fanout
每个发到 fanout 类型交换器的消息都会分到所有绑定的队列上去。fanout 交换器不处理路由键,只是简单的将队列绑定到交换器上,每个发送到交换器的消息都会被转发到与该交换器绑定的所有队列上。很像子网广播,每台子网内的主机都获得了一份复制的消息。fanout 类型转发消息是最快的。

3、topic
topic 交换器通过模式匹配分配消息的路由键属性,将路由键和某个模式进行匹配,此时队列需要绑定到一个模式上。它将路由键和绑定键的字符串切分成单词,这些单词之间用点隔开。它同样也会识别两个通配符:符号“#”和符号“”。#匹配0个或多个单词,“”匹配不多不少一个单词。

4.4 java 发送和接收 Queue 的消息

4.4.1 添加Maven依赖

<dependencies>
	<dependency>
	    <groupId>com.rabbitmq</groupId>
	    <artifactId>amqp-client</artifactId>
	    <version>5.1.1</version>
	</dependency>
</dependencies>

4.4.2 编写消息发送类

import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Send {
    public static void main(String[] args) {
        //创建连接工厂
        ConnectionFactory connectionFactory = new ConnectionFactory();
        //指定ip
        connectionFactory.setHost("192.168.226.128");
        //指定端口号,15672是管控台端口,5672是broker端口号
        connectionFactory.setPort(5672);
        //指定用户名
        connectionFactory.setUsername("root");
        //指定密码
        connectionFactory.setPassword("root");
        //可以指定命名空间,默认值为"/"
        //connectionFactory.setVirtualHost("/");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();

            /**
             * 声明一个队列
             * 参数 1 队列名称  取值任意,如果队列名在MQ中存在则放弃创建,如果队列名在MQ中不存在则完成创建
             * 参数 2 是否持久化的队列
             * 参数 3 是否排外 true表示排外,如果消费者监听了这个队列就不允许其他消费者再监听这个队列
             * 参数 4 是否自动删除 true表示自动删除,如果没有消费者监听这个队列则会自动删除队列
             * 参数 5 队列属性设置通常为null
             */
            String queueName = "myQueue";
            channel.queueDeclare(queueName,true,false,false,null);
            String message = "测试消息";
            /**
             * 发送消息到MQ
             * 参数 1 交换机名称,不使用交换机填""即可
             * 参数 2 消息所携带的RoutingKey,由于没有使用交换机,此参数被识别为队列名称。
             * 参数 3 消息的属性设置通常为null即可
             * 参数 4 具体消息数据取值为Byte数组类型,建议使用String转换的Byte数组作为消息
             */
            channel.basicPublish("",queueName,null,message.getBytes());
            System.out.println("消息发送成功");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        } finally {
            if (channel != null) {
                try {
                    channel.close();
                } catch (IOException e) {
                    e.printStackTrace();
                } catch (TimeoutException e) {
                    e.printStackTrace();
                }
            }
            if (connection != null) {
                try {
                    connection.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

4.4.3 编写消息接收类

import com.rabbitmq.client.*;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Receive {
    public static void main(String[] args) {
        //创建连接工厂
        ConnectionFactory connectionFactory = new ConnectionFactory();
        //指定ip
        connectionFactory.setHost("192.168.226.128");
        //指定端口号,15672是管控台端口,5672是broker端口号
        connectionFactory.setPort(5672);
        //指定用户名
        connectionFactory.setUsername("root");
        //指定密码
        connectionFactory.setPassword("root");
        //可以指定命名空间,默认值为"/"
        //connectionFactory.setVirtualHost("/");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();

            /**
             *  接收时可以没有队列,但是必须先运行发送
             *  接收消息前必须确保队列存在
             */
            String queueName = "myQueue";
            channel.queueDeclare(queueName,true,false,false,null);
            /**
             * 监听队列接收消息
             * 参数 1 需要监听队列名称
             * 参数 2 是否自动确认消息,true为自动确认 消息接收完成无论是否正确处理都会将消息移除。
             * 参数 3 消息处理的回调方法
             * 注意:
             *   这个回调方法会在底层启动子线程持续监听队列接收消息
             */
            channel.basicConsume(queueName,true,new DefaultConsumer(channel){
                @Override
                public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
                    String message = new String(body);
                    //处理消息
                    System.out.println(message);
                }
            });
            System.out.println("接收到消息----");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        }
    }
}

4.5 java 绑定 Exchange 发送和接收消息

AMQP 协议中的核心思想就是生产者和消费者的解耦,生产者从不直接将消息发送给队列。生产者通常不知道是否一个消息会被发送到队列中,只是将消息发送到一个交换机。先由 Exchange 来接收,然后 Exchange 按照特定的策略转发到 Queue 进行存储。Exchange 就类似于一个交换机,将各个消息分发到相应的队列中。
在实际应用中我们只需要定义好 Exchange 的路由策略,而生产者则不需要关心消息会发送到哪个 Queue 或被哪些 Consumer 消费。在这种模式下生产者只面向 Exchange 发布消息,消费者只面向 Queue 消费消息,Exchange 定义了消息路由到 Queue 的规则,将各个层面的消息传递隔离开,使每一层只需要关心自己面向的下一层,降低了整体的耦合度。

4.5.1 Exchange 的 direct 消息绑定

4.5.1.1 编写 direct 消息发送类
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Send {
    public static void main(String[] args) {

        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setHost("192.168.226.128");
        connectionFactory.setPort(5672);
        connectionFactory.setUsername("root");
        connectionFactory.setPassword("root");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();

            String queueName = "directQueue";
            channel.queueDeclare(queueName,true,false,false,null);

            /**
             * 声明一个交换机
             * 参数 1 为交换机名称 取值任意,如果交换机名在MQ中存在则放弃创建,如果不存在则完成创建
             * 参数 2 为交换机类型 取值为String类型的direct fanout topic headers
             * 参数 3 为是否持久化的
             */
            String exchangeName = "directExchange";
            channel.exchangeDeclare(exchangeName,"direct",true);
            /**
             * 将队列和交换机进行绑定
             * 参数 1 为队列名称
             * 参数 2 为交换机名称
             * 参数 3 为绑定时的BindingKey
             */
            channel.queueBind(queueName,exchangeName,"directKey");
            String message = "Direct测试消息";

            channel.basicPublish(exchangeName,"directKey",null,message.getBytes());
            System.out.println("消息发送成功");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        } finally {
            if (channel != null) {
                try {
                    channel.close();
                } catch (IOException e) {
                    e.printStackTrace();
                } catch (TimeoutException e) {
                    e.printStackTrace();
                }
            }
            if (connection != null) {
                try {
                    connection.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

注意:使用direct消息模式时必须要指定RoutingKey(路由键),将指定的消息绑定到指定的路由键上

4.5.1.2 编写 direct 消息接收类
import com.rabbitmq.client.*;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Receive {
    public static void main(String[] args) {

        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setHost("192.168.226.128");
        connectionFactory.setPort(5672);
        connectionFactory.setUsername("root");
        connectionFactory.setPassword("root");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();

            String queueName = "directQueue";
            channel.queueDeclare(queueName,true,false,false,null);

            /**
             * 声明一个交换机
             * 参数 1 为交换机名称 取值任意,如果交换机名在MQ中存在则放弃创建,如果不存在则完成创建
             * 参数 2 为交换机类型 取值为String类型的direct fanout topic headers
             * 参数 3 为是否持久化的
             */
            String exchangeName = "directExchange";
            channel.exchangeDeclare(exchangeName,"direct",true);

            /**
             * 将队列和交换机进行绑定
             * 参数 1 为队列名称
             * 参数 2 为交换机名称
             * 参数 3 为绑定时的BindingKey
             */
            channel.queueBind(queueName,exchangeName,"directKey");

            channel.basicConsume(queueName,true,new DefaultConsumer(channel){
                @Override
                public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
                    String message = new String(body);
                    //处理消息
                    System.out.println(message);
                }
            });
            System.out.println("接收到消息----");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        }
    }
}

注意:
1、使用Exchange的direct模式时接收者的RoutingKey必须要与发送时的RoutingKey完全一致否则无法获取消息
2、接收消息时队列名也必须要发送消息时的完全一致

4.5.2 Exchange 的 fanout 消息绑定

4.5.2.1 编写 fanout 消息发送类
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Send {
    public static void main(String[] args) {

        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setHost("192.168.226.128");
        connectionFactory.setPort(5672);
        connectionFactory.setUsername("root");
        connectionFactory.setPassword("root");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();


            /**
             * 声明一个交换机
             * 参数 1 为交换机名称 取值任意,如果交换机名在MQ中存在则放弃创建,如果不存在则完成创建
             * 参数 2 为交换机类型 取值为String类型的direct fanout topic headers
             * 参数 3 为是否持久化的
             */
            String exchangeName = "fanoutExchange";
            channel.exchangeDeclare(exchangeName,"fanout",true);

            String message = "Fanout测试消息";

            channel.basicPublish(exchangeName,"",null,message.getBytes());
            System.out.println("消息发送成功");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        } finally {
            if (channel != null) {
                try {
                    channel.close();
                } catch (IOException e) {
                    e.printStackTrace();
                } catch (TimeoutException e) {
                    e.printStackTrace();
                }
            }
            if (connection != null) {
                try {
                    connection.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

注意:
fanout模式的消息需要将一个消息同时绑定到多个队列中因此这里不能创建并指定某个队列

4.5.2.2 编写 fanout 消息接收类
import com.rabbitmq.client.*;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Receive {
    public static void main(String[] args) {

        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setHost("192.168.226.128");
        connectionFactory.setPort(5672);
        connectionFactory.setUsername("root");
        connectionFactory.setPassword("root");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();

            /**
             * 声明一个队列
             * queueDeclare() 没有指定任何参数会创建一个名字为随机生成的,非持久化的排外的自动删除的队列
             * getQueue() 获得队列名称
             */
            String queueName = channel.queueDeclare().getQueue();

            /**
             * 声明一个交换机
             * 参数 1 为交换机名称 取值任意,如果交换机名在MQ中存在则放弃创建,如果不存在则完成创建
             * 参数 2 为交换机类型 取值为String类型的direct fanout topic headers
             * 参数 3 为是否持久化的
             */
            String exchangeName = "fanoutExchange";
            channel.exchangeDeclare(exchangeName,"fanout",true);

            /**
             * 将队列和交换机进行绑定
             * 参数 1 为队列名称
             * 参数 2 为交换机名称
             * 参数 3 为绑定时的BindingKey 由于是fanout类型交换机因此不需要指定BindingKey
             */
            channel.queueBind(queueName,exchangeName,"");

            channel.basicConsume(queueName,true,new DefaultConsumer(channel){
                @Override
                public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
                    String message = new String(body);
                    //处理消息
                    System.out.println(message);
                }
            });
            System.out.println("接收到消息----");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        }
    }
}

注意:
1、使用fanout模式获取消息时不需要绑定特定的队列名称,只需使用channel.queueDeclare().getQueue();获取一个随机的队列名称,然后绑定到指定的Exchange即可获取消息。
2、这种模式中可以同时启动多个接收者只要都绑定到同一个Exchang即可让所有接收者同时接收同一个消息是一种广播的消息机制

4.5.3 Exchange 的 topic 消息绑定

4.5.3.1 编写 topic 消息发送类
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Send {
    public static void main(String[] args) {

        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setHost("192.168.226.128");
        connectionFactory.setPort(5672);
        connectionFactory.setUsername("root");
        connectionFactory.setPassword("root");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();


            /**
             * 声明一个交换机
             * 参数 1 为交换机名称 取值任意,如果交换机名在MQ中存在则放弃创建,如果不存在则完成创建
             * 参数 2 为交换机类型 取值为String类型的direct fanout topic headers
             * 参数 3 为是否持久化的
             */
            String exchangeName = "topicExchange";
            channel.exchangeDeclare(exchangeName,"topic",true);

            String routingKey = "aa";
            String message = "Topic测试消息RoutingKey="+routingKey;

            channel.basicPublish(exchangeName,routingKey,null,message.getBytes());
            System.out.println("消息发送成功");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        } finally {
            if (channel != null) {
                try {
                    channel.close();
                } catch (IOException e) {
                    e.printStackTrace();
                } catch (TimeoutException e) {
                    e.printStackTrace();
                }
            }
            if (connection != null) {
                try {
                    connection.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

注意:
1、在topic模式中必须要指定Routingkey,并且可以同时指定多层的RoutingKey,每个层次之间使用 点分隔即可 例如 test.myRoutingKey

4.5.3.3 编写 topic 消息接收类
import com.rabbitmq.client.*;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Receive {
    public static void main(String[] args) {

        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setHost("192.168.226.128");
        connectionFactory.setPort(5672);
        connectionFactory.setUsername("root");
        connectionFactory.setPassword("root");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();

            /**
             * 声明一个队列
             * queueDeclare() 没有指定任何参数会创建一个名字为随机生成的,非持久化的排外的自动删除的队列
             * getQueue() 获得队列名称
             */
            String queueName = channel.queueDeclare().getQueue();

            /**
             * 声明一个交换机
             * 参数 1 为交换机名称 取值任意,如果交换机名在MQ中存在则放弃创建,如果不存在则完成创建
             * 参数 2 为交换机类型 取值为String类型的direct fanout topic headers
             * 参数 3 为是否持久化的
             */
            String exchangeName = "topicExchange";
            channel.exchangeDeclare(exchangeName,"topic",true);

            /**
             * 将队列和交换机进行绑定
             * 参数 1 为队列名称
             * 参数 2 为交换机名称
             * 参数 3 为绑定时的BindingKey
             */
            channel.queueBind(queueName,exchangeName,"aa");

            channel.basicConsume(queueName,true,new DefaultConsumer(channel){
                @Override
                public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
                    String message = new String(body);
                    //处理消息
                    System.out.println("BindingKey = aa   "+message);
                }
            });
            System.out.println("接收到消息----");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        }
    }
}

注意:
1、Topic模式的消息接收时必须要指定RoutingKey并且可以使用# 和 *来做统配符号,#表示通配任意一个单词 *表示通配任意多个单词,例如消费者的RoutingKey为test.#或#.myRoutingKey都可以获取RoutingKey为test.myRoutingKey发送者发送的消息

4.5.4 事务消息

事务消息与数据库的事务类似,只是MQ中的消息是要保证消息是否会全部发送成功,防止丢失消息的一种策略。
RabbitMQ有两种方式来解决这个问题:

  1. 通过AMQP提供的事务机制实现;
  2. 使用发送者确认模式实现;
4.5.4.1 事务使用

事务的实现主要是对信道(Channel)的设置,主要的方法有三个:

  1. channel.txSelect()声明启动事务模式;
  2. channel.txCommint()提交事务;
  3. channel.txRollback()回滚事务;
4.5.4.2 编写消息发送类
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Send {
    public static void main(String[] args) {
        boolean isCommit = false;

        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setHost("192.168.226.128");
        connectionFactory.setPort(5672);
        connectionFactory.setUsername("root");
        connectionFactory.setPassword("root");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();
            String queueName = "transactionQueue";
            channel.queueDeclare(queueName,true,false,false,null);
            String exchangeName = "directExchange";
            channel.exchangeDeclare(exchangeName,"direct",true);
            channel.queueBind(queueName,exchangeName,"transactionKey" );
            String message = "事务测试消息";
            //开启事务,开启事务后必须显示的调用txCommit和txRollback方法
            channel.txSelect();
            channel.basicPublish(exchangeName,"transactionKey",null,message.getBytes());
            //提交事务,会将当前通道中当前事务中所有没有提交的消息全部写入MQ释放内存结束当前事务
            channel.txCommit();
            isCommit = true;
            System.out.println("消息发送成功");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        } finally {
            if (channel != null) {
                try {
                    if (!isCommit) {
                        channel.txRollback();
                    }
                    channel.close();
                } catch (IOException e) {
                    e.printStackTrace();
                } catch (TimeoutException e) {
                    e.printStackTrace();
                }
            }
            if (connection != null) {
                try {
                    connection.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

4.5.5 消息的发送者确认模式

Confirm发送方确认模式使用和事务类似,也是通过设置Channel进行发送方确认的,最终达到确保所有的消息全部发送成功

4.5.5.1 channel.waitForConfirms()普通发送者确认模式
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Send {
    public static void main(String[] args) {

        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setHost("192.168.226.128");
        connectionFactory.setPort(5672);
        connectionFactory.setUsername("root");
        connectionFactory.setPassword("root");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();
            String queueName = "confirmQueue";
            channel.queueDeclare(queueName,true,false,false,null);
            String exchangeName = "directExchange";
            channel.exchangeDeclare(exchangeName,"direct",true);
            channel.queueBind(queueName,exchangeName,"confirmKey" );
            String message = "测试消息";
            //开启发送者确认模式
            channel.confirmSelect();
            channel.basicPublish(exchangeName,"confirmKey",null,message.getBytes());
            try {
                /**
                 * 普通发送者确认模式,会阻塞当前线程等待MQ的返回确认,如果返回true则表示消息发送成功,返回false则表示发送失败需要补发消息
                 * 这个方法会抛出InterruptedException,需要补发消息
                 * 这个方法可以指定一个long类型参数表示阻塞线程的超时时间,会抛出TimeoutException,需要补发消息
                 *
                 * 注意:
                 *  1. 普通发送者确认模式一次只能确认一条消息,如果多条消息同时发送应该每次发送完成后都调用一次确认方法
                 *  2. 发送者确认模式可能会造成MQ中有重复消息,因此消费者必须拥有消息防重复处理能力
                 */
                boolean flag = channel.waitForConfirms(5000L);
                if (!flag) {
                    System.out.println("补发消息");
                }
            } catch (InterruptedException e) {
                System.out.println("补发消息");
                e.printStackTrace();
            } catch (TimeoutException e) {
                System.out.println("补发消息");
                e.printStackTrace();
            }

            System.out.println("消息发送成功");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        } finally {
            if (channel != null) {
                try {
                    channel.close();
                } catch (IOException e) {
                    e.printStackTrace();
                } catch (TimeoutException e) {
                    e.printStackTrace();
                }
            }
            if (connection != null) {
                try {
                    connection.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}
4.5.5.2 channel.waitForConfirmsOrDie()批量确认模式
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Send {
    public static void main(String[] args) {

        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setHost("192.168.226.128");
        connectionFactory.setPort(5672);
        connectionFactory.setUsername("root");
        connectionFactory.setPassword("root");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();
            String queueName = "confirmQueue";
            channel.queueDeclare(queueName,true,false,false,null);
            String exchangeName = "directExchange";
            channel.exchangeDeclare(exchangeName,"direct",true);
            channel.queueBind(queueName,exchangeName,"confirmKey" );
            String message = "测试消息";
            //开启发送者确认模式
            channel.confirmSelect();
            channel.basicPublish(exchangeName,"confirmKey",null,message.getBytes());
            try {
                /**
                 * 批量发送者确认模式,会阻塞当前线程等待MQ的返回确认
                 * 这个方法会抛出InterruptedException,需要补发消息
                 * 这个方法可以指定一个long类型参数表示阻塞线程的超时时间,会抛出TimeoutException,需要补发消息
                 *
                 * 注意:
                 *  1. 批量发送者确认模式一次能确认多条消息,如果多条消息同时发送应该所有消息发送完成后都调用一次确认方法
                 *  2. 发送者确认模式可能会造成MQ中有重复消息,因此消费者必须拥有消息防重复处理能力
                 *  3. 批量模式它的消息确认效率比普通模式高,但是一旦触发补发机制我们不知道哪条消息发送失败,因此我们需要将所有消息全部进行补发,所以补发效率低于普通模式。
                 */
                channel.waitForConfirmsOrDie(5000L);

            } catch (InterruptedException e) {
                System.out.println("补发消息");
                e.printStackTrace();
            } catch (TimeoutException e) {
                System.out.println("补发消息");
                e.printStackTrace();
            }

            System.out.println("消息发送成功");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        } finally {
            if (channel != null) {
                try {
                    channel.close();
                } catch (IOException e) {
                    e.printStackTrace();
                } catch (TimeoutException e) {
                    e.printStackTrace();
                }
            }
            if (connection != null) {
                try {
                    connection.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}
4.5.5.3 channel.addConfirmListener()异步监听发送者确认模式
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.ConfirmListener;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Send {
    public static void main(String[] args) {

        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setHost("192.168.226.128");
        connectionFactory.setPort(5672);
        connectionFactory.setUsername("root");
        connectionFactory.setPassword("root");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();
            String queueName = "confirmQueue";
            channel.queueDeclare(queueName,true,false,false,null);
            String exchangeName = "directExchange";
            channel.exchangeDeclare(exchangeName,"direct",true);
            channel.queueBind(queueName,exchangeName,"confirmKey" );
            String message = "测试消息";
            //开启发送者确认模式
            channel.confirmSelect();
            /**
             * 添加一个发送者确认模式监听器,用于监听消息是否发送成功
             * 注意: 这种方式不会阻塞线程,底层会启动子线程。
             *        应该尽早启动监听器
             */
           channel.addConfirmListener(new ConfirmListener() {
               /**
                * 消息发送成功的回调方法
                * @param l 消息编号,编号从1开始自增
                * @param b 是否批量确认
                * @throws IOException
                */
               public void handleAck(long l, boolean b) throws IOException {
                   System.out.println("消息发送成功,编号为:" + l + "\t是否批量:" + b);
               }

               /**
                * 消息发送失败的回调方法,进入这个方法要对消息进行补发
                * @param l 消息编号,编号从1开始自增
                * @param b 是否批量确认
                * @throws IOException
                */
               public void handleNack(long l, boolean b) throws IOException {
                   System.out.println("消息发送失败,编号为:" + l + "\t是否批量:" + b);
               }
           });
            for (int i=0;i<100;i++) {
                channel.basicPublish(exchangeName,"confirmKey",null,message.getBytes());
            }
            System.out.println("消息发送成功");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        }
    }
}

4.5.6消息的消费者确认模式

为了保证消息从队列可靠地到达消费者,RabbitMQ提供消息确认机制(message acknowledgment)。消费者在声明队列时,可以指定noAck参数,当noAck=false时,RabbitMQ会等待消费者显式发回ack信号后才从内存(和磁盘,如果是持久化消息的话)中移去消息。否则,RabbitMQ会在队列中消息被消费后立即删除它。
在Consumer中Confirm模式中分为手动确认和自动确认。

手动确认主要并使用以下方法:

basicAck(): 用于肯定确认,multiple参数用于多个消息确认。
basicRecover():是路由不成功的消息可以使用recovery重新发送到队列中。
basicReject():是接收端告诉服务器这个消息我拒绝接收,不处理,可以设置是否放回到队列中还是丢掉,而且只能一次拒绝一个消息,官网中有明确说明不能批量拒绝消息,为解决批量拒绝消息才有了basicNack。
basicNack():可以一次拒绝N条消息,客户端可以设置basicNack方法的multiple参数为true。

import com.rabbitmq.client.*;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

public class Receive {
    public static void main(String[] args) {

        ConnectionFactory connectionFactory = new ConnectionFactory();
        connectionFactory.setHost("192.168.226.128");
        connectionFactory.setPort(5672);
        connectionFactory.setUsername("root");
        connectionFactory.setPassword("root");

        Connection connection = null;
        Channel channel = null;

        try {
            connection = connectionFactory.newConnection();
            channel = connection.createChannel();
            String queueName = "confirmQueue";
            channel.queueDeclare(queueName,true,false,false,null);
            String exchangeName = "directExchange";
            channel.exchangeDeclare(exchangeName,"direct",true);
            channel.queueBind(queueName,exchangeName,"confirmKey");

            /**
             * 监听队列接收消息
             * 参数 2 是否自动确认消息,
             *  true 为自动确认如果消息接收完成无论是否正确处理都会将消息从队列中移除,可能会丢失消息
             *  false 为手动确认消息,消息处理完成后需要手动调用确认方法手动将消息出队,可能会造成消息重复处理,因此消费者需要做好消息防重复处理操作。
             */
            channel.basicConsume(queueName,false,new DefaultConsumer(channel){
                @Override
                public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
                    try {
                        String message = new String(body);
                        //处理消息
                        System.out.println(message);
                        //手动确认消息,参数 1 为消息编号,参数 2 为是否批量确认
                        this.getChannel().basicAck(envelope.getDeliveryTag(), true);
                    } catch (Exception e) {
                        //将消息放回到队列尾部,尝试再次处理
                        this.getChannel().basicRecover();
                    }
                }
            });
            System.out.println("接收到消息----");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (TimeoutException e) {
            e.printStackTrace();
        }
    }
}

注意:
1、如果开启了事务手动提交以后再开始事务,如果事务执行了回滚操作那么即使手动确认了消息那么消息也不会从队列中移除,除非使用事务执行提交以后才会移除。

五、SpringBoot 集成 RabbitMQ

5.1 创建消息生产者工程

  1. 使用Spring Initializr创建,选择messaging —> Spring for RabbitMQ
  2. application.properties文件添加对RabbitMQ的集成
spring.rabbitmq.host=192.168.226.128
spring.rabbitmq.port=5672
spring.rabbitmq.username=root
spring.rabbitmq.password=root

5.2 创建消息消费者工程

步骤和上面一样

5.3 Direct模式消息发送和接收

5.3.1 编写Direct模式的消息发送

创建发送消息服务类

@Service
public class Send {
    //自动注入Amqp的模板对象
    @Resource
    private AmqpTemplate template;
    
    public void send(){
        //发送消息到队列
        //参数 1 为消息存放的交换机名称 (需要事前创建)
        //参数 2 为RoutingKey,接收者需要根据这个key精准接收消息
        //参数 3 为具体存入队列中的消息数据
        template.convertAndSend("BootDirectExchange","BootRouting","SpringBootDirect");
    }
}

创建Amqp配置类

@Configuration
public class AmqpConfig {
//@Bean 用于模拟Spring配置文件中的<bean>标签,用于创建名字为 BootDirectExchange的交换机
    @Bean
    public DirectExchange myChange(){
        return new DirectExchange("BootDirectExchange");
    }
}

运行测试Direct消息发送,编写Application.java类

@SpringBootApplication
public class Application {
    public static void main(String[] args) {
      ApplicationContext ac= SpringApplication.run(Application.class, args);
      Send send= (Send) ac.getBean("send");
      send.send();
    }
}

5.3.3 编写Direct模式的消息接收

创建接收消息服务类

@Service
public class Receive {
    //@RabbitListener注解用于标记当前方法为消息监听方法,可以监听某个队列,当队列中有新消息则自动完成接收,
    @RabbitListener(queues ="myQueueDirect")
    public void receive(String message){
        System.out.println("Boot的Direct消息----"+message);
    }
}

创建Amqp配置类

@Configuration
public class AmqpConfig {
   //创建一个名字为myQueueDirect的队列
    @Bean
    public Queue queue(){
        return new Queue("myQueueDirect");
    }
//创建一个名字为BootDirectExchange的交换机
    @Bean
    public Exchange myChange(){
        return new DirectExchange("BootDirectExchange");
    }
//将队列绑定到交换机
    @Bean("binding")
//参数1 为自定义队列对象,参数名queue为自定义队列Bean 的id
//参数 2 为自定义的交换机,参数名myChange 为自定义交换机Bean 的id
    public Binding binding(Queue queue,Exchange myChange){
// 将队列绑定到交换机,参数BootRouting为RoutingKey
        return BindingBuilder.bind(queue).to(myChange).with("BootRouting ").noargs();
    }
}

运行测试Receive消息接收,编写Application.java类

@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

5.4 Fanout模式消息发送和接收

5.4.1 编写Fanout模式的消息发送

创建发送消息服务类

@Service
public class Send {
    //自动注入Amqp的模板对象
    @Resource
    private AmqpTemplate template;
    public void fanoutSend(){
//发送消息
//参数 1 为交换机名称
//参数 2 为Routingkey ,由于Fanout不需要绑定RoutingKey因此可以为空
//参数 3 为具体的消息内容
        template.convertAndSend("BootFanoutExchange","","SpringBootFanout");
    }
}

Amqp配置类

//创建交换机
@Bean
public FanoutExchange fanoutExchange(){
//创建一个基于Fanout的交换机 名字为BootFanoutExchange
    return new FanoutExchange("BootFanoutExchange");
}

运行测试Direct消息发送,编写Application.java类

@SpringBootApplication
public class Application {
    public static void main(String[] args) {
      ApplicationContext ac= SpringApplication.run(Application.class, args);
      Send send= (Send) ac.getBean("send");
      send.fanoutSend();
    }
}

5.4.2 编写Fanout模式的消息接收

创建接收消息服务类

@Service
public class Receive {
    @RabbitListener(queues ="fanoutQueue")
    public void fanoutReceive(String message){
        System.out.println("Boot的Fanout消息----"+message);
    }
}

Amqp配置类

//创建一个名字为 fanoutQueue的队列
@Bean
public Queue fanoutQueue(){
    return new Queue("fanoutQueue");
}
//创建一个名字为 BootFanoutExchange的交换机
@Bean
public FanoutExchange fanoutExchange(){
    return new FanoutExchange("BootFanoutExchange");
}

@Bean
public Binding  fanoutBinding(Queue fanoutQueue,FanoutExchange fanoutExchange){
   //将队列绑定到指定的交换机上
//参数1 为指定的队列对象
//参数2 为指定的交换机对象
    return BindingBuilder.bind(fanoutQueue).to(fanoutExchange);
}

运行测试Receive消息接收,编写Application.java类

@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

5.5 Topic模式消息发送和接收

5.5.1 编写Topic模式消息发送

创建发送消息服务类

@Service
public class Send {
    //自动注入Amqp的模板对象
    @Resource
    private AmqpTemplate template;
public void topicSend(){
//发送消息
//参数 1 为交换机名称
//参数 2 为Routingkey 
//参数 3 为具体的消息内容
        template.convertAndSend("BootTopicExchange","Boot.text","SpringBootTopic");
    }
}

Amqp配置类

//创建交换机
@Bean
public TopicExchange topicExchange(){
  return new TopicExchange("BootTopicExchange");
}

运行测试Direct消息发送,编写Application.java类

@SpringBootApplication
public class Application {
    public static void main(String[] args) {
      ApplicationContext ac= SpringApplication.run(Application.class, args);
      Send send= (Send) ac.getBean("send");
      send. topicSend ();
    }
}

5.5.2 编写Topic模式消息接收

创建接收消息服务类

@Service
public class Receive {
    @RabbitListener(queues ="topicQueue")
    public void topicReceive(String message){
        System.out.println("Boot的Fanout消息111----"+message);
    }
    @RabbitListener(queues ="topicQueue2")
    public void fanoutReceive 02(String message){
        System.out.println("Boot的Fanout消息222----"+message);
    }
}

Amqp配置类

//创建交换机,
@Bean
public TopicExchange TopicExchange(){
//创建一个名为BootTopicExchange的Topic的交换机
    return new TopicExchange("BootTopicExchange");
}
//创建队列
@Bean
public Queue topicQueue(){
    return new Queue("topicQueue");
}
//创建队列
@Bean
public Queue topicQueue2(){
    return new Queue("topicQueue2");
}
//绑定队列到交换机
@Bean
public Binding  topicBinding(Queue topicQueue,TopicExchange topicExchange){
    //将队列绑定到指定交换机
//参数1 为指定队列对象
//参数2 为指定的交换机对象
//参数3 为RoutingKey的匹配规则,Boot.#表示 可以接收以Boot开头的任意子孙路径下的队列
Return BindingBuilder.bind(topicQueue).to(topicExchange).with("Boot.#");
}
@Bean
public Binding  topicBinding2(Queue topicQueue2,TopicExchange topicExchange){
    //将队列绑定到指定交换机
//参数1 为指定队列对象
//参数2 为指定的交换机对象
//参数3 为RoutingKey的匹配规则,#.test表示 可以接收以任意路径靠头的但是必须以test结尾的队列
    return BindingBuilder.bind(topicQueue2).to(topicExchange).with("#.text");
}

运行测试Receive消息接收,编写Application.java类

@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

六、RabbitMQ 集群

普通模式(默认):对于Queue来说,消息实体只存在于其中的一个节点,A/B两个节点仅有相同的元数据,即队列结构.(交换机的所有元数据在所有节点上是一致的,而队列的完整信息只有在创建它的节点上,各个节点仅有相同的元数据,即队列结构)当消息进入A节点的Queue中后,consumer从B节点拉取数据时,RabbitMQ会临时在A.B间进行消息传输,把A中的消息实体取出并经过B发送给consumer.所以consumer应尽量连接每个节点,从中取消息.即对于同一个逻辑队列,要在多个节点建立物理Queue,否则无论consumer连A或B,出口总在A,会产生瓶颈.该模式存在一个问题就是当A节点故障后,B节点无法取到A节点中还未消费的消息实体.如果做个消息持久化,那么等A几点恢复,然后才可被消费;如果没有做持久化,然后就…该模式非常适合非持久化队列,只有该队列是非持久化的,客户端才能重新连接到集群中的其他节点,并且重新创建队列,如果该队列是持久化的,那么唯一的办法就是将故障节点恢复起来.

镜像模式(高可用模式):把需要的队列做成镜像模式,存在于多个节点,数据Rabbitmq的HA方案.该模式解决了上述问题,其实质和普通模式的不同之处在于,消息实体会主动在镜像节点间同步,而不会在consumer取数据时临时拉取.该模式带来的副作用也很明显,除了降低系统性能意外,如果镜像队列过多,加之有大量的消息进入,集群内部的网络带宽将会被这种同步通讯大大消耗掉,所以在对可靠性要求较高的场合中适用.

6.1 搭建镜像集群

  1. 准备两台linux
  2. 两台linux都安装RabbitMQ
  3. vim /etc/host 配置host文件
127.0.0.1 A  localhost localhost.localdomain localhost4 localhost4.localdomain4
::1       A  localhost localhost.localdomain localhost6 localhost6.localdomain6

192.168.226.128 A
192.168.226.129 B

注意:2台Linux服务器需要完成同样的操作
关闭防火墙确保2台机器相互ping 同可以执行ping A 和ping B命令进行测试

  1. 配置Cookie文件

Erlang Cookie是保证不同节点可以互相通信的秘钥,要保证集群中的不同节点互相通信必须共享相同的Erlang Cookie,具体存放在/var/lib/rabbitmq/.erlang.cookie

[root@A ~]# cat /var/lib/rabbitmq/.erlang.cookie 
MZFQSBXIIJJMUZRTJFWQ
[root@A ~]# ~

必须要保证2台Linux的Cookie 文件内容完全相同,可以选择使用vim进行编辑
也可以使用scp命令完成文件跨机器拷贝例如:

[root@A ~]# scp /var/lib/rabbitmq/.erlang.cookie 192.168.222.130:/var/lib/rabbitmq

注意:由于这个文件的权限是只读因此无论是使用vim还是scp来实现Cookie文件的同步都会失败,因此必须要修改这个文件的权限,
例如 chmod 777 /var/lib/rabbitmq/.erlang.cookie
当Cookie文件同步完成以后再修改权限回只读
例如 chmod 400 /var/lib/rabbitmq/.erlang.cookie

  1. 组建集群

分别启动2台Linux机器中的RabbitMQ服务器

将某个RabbitMQ加入到某个服务器节点

rabbitmqctl stop_app
rabbitmqctl join_cluster rabbit@A
rabbitmqctl start_app

查看集群状态确认节点成功添加

[root@B ~]# rabbitmqctl cluster_status
Cluster status of node rabbit@B ...
[{nodes,[{disc,[rabbit@A,rabbit@B]}]},
 {running_nodes,[rabbit@A,rabbit@B]},
 {cluster_name,<<"rabbit@A">>},
 {partitions,[]},
 {alarms,[{rabbit@A,[]},{rabbit@B,[]}]}]
[root@B ~]#

如果要将某个节点从集群中移除,使其变回独立节点,可以使用以下命令:

rabbitmqctl stop_app
rabbitmqctl reset
rabbitmqctl start_app

6.2 使用SpringBoot 连接 RabbitMQ 集群

6.2.1 配置RabbitMQ的账号

分别为2台Linux中的RabbitMQ添加账号并进行授权

rabbitmqctl add_user root root
rabbitmqctl set_user_tags root administrator
rabbitmqctl set_permissions -p / root '.*' '.*' '.*'

6.2.2 SpringBoot配置

修改SpringBoot的application.properties文件

#spring.rabbitmq.port=5672
#配置RabbitMQ的集群访问地址
spring.rabbitmq.addresses=192.168.226.128:5672,192.168.226.129:5672
#配置RabbitMQ服务器的访问账号
spring.rabbitmq.username=root
#配置RabbitMQ服务器的访问密码
spring.rabbitmq.password=root

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值