rabbitmq 消费端的限流

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

public class Producer {
   public static void main(String[] args) throws Exception {
      ConnectionFactory connectionFactory = new ConnectionFactory();
      connectionFactory.setHost("192.168.6.1");
      connectionFactory.setPort(5672);
      connectionFactory.setVirtualHost("/");
      connectionFactory.setUsername("longlong");
      connectionFactory.setPassword("");
 
      Connection connection = connectionFactory.newConnection();
      Channel channel = connection.createChannel();
      
      String exchange = "test_qos_exchange";
      String routingKey = "qos.save";
      
      String msg = "Hello RabbitMQ QOS Message";
      
      for(int i =0; i<5; i ++){
         channel.basicPublish(exchange, routingKey, true, null, msg.getBytes());
      }
      
   }
}
import java.io.IOException;

import com.rabbitmq.client.AMQP;
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.DefaultConsumer;
import com.rabbitmq.client.Envelope;

public class MyConsumer extends DefaultConsumer {
   private Channel channel ;
   
   public MyConsumer(Channel channel) {
      super(channel);
      this.channel = channel;
   }

   @Override
   public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
      System.err.println("-----------consume message----------");
      System.err.println("consumerTag: " + consumerTag);
      System.err.println("envelope: " + envelope);
      System.err.println("properties: " + properties);
      System.err.println("body: " + new String(body));
      
      channel.basicAck(envelope.getDeliveryTag(), false);
      
   }
}
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;

public class Consumer {
   public static void main(String[] args) throws Exception {
      ConnectionFactory connectionFactory = new ConnectionFactory();
      connectionFactory.setHost("192.168.6.1");
      connectionFactory.setPort(5672);
      connectionFactory.setVirtualHost("/");
      connectionFactory.setUsername("longlong");
      connectionFactory.setPassword("");
      
      Connection connection = connectionFactory.newConnection();
      Channel channel = connection.createChannel();

      String exchangeName = "test_qos_exchange";
      String queueName = "test_qos_queue";
      String routingKey = "qos.#";
      
      channel.exchangeDeclare(exchangeName, "topic", true, false, null);
      channel.queueDeclare(queueName, true, false, false, null);
      channel.queueBind(queueName, exchangeName, routingKey);
      
      //1 限流方式  第一件事就是 autoAck设置为 false
      
      channel.basicQos(0, 1, false);
      //1.最多传输的内容的大小的限制,0为不限制
      //2.一次处理1个
      //3.是否将上面设置应用于channel,简单点说,就是上面限制是channel级别的还是consumer级别。
      channel.basicConsume(queueName, false, new MyConsumer(channel));
   }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值