当前位置: 首页 > news >正文

开发网站监控工具外贸推广服务公司

开发网站监控工具,外贸推广服务公司,做好中心网站建设工作,建设投资公司网站目录 一、延迟消息1.基于死信实现延迟消息1.1 消息的TTL#xff08;Time To Live#xff09;1.2 死信交换机 Dead Letter Exchanges1.3 代码实现 2.基于延迟插件实现延迟消息2.1 插件安装2.2 代码实现 3.基于延迟插件封装消息 一、延迟消息 延迟消息有两种实现方案#xff… 目录 一、延迟消息1.基于死信实现延迟消息1.1 消息的TTLTime To Live1.2 死信交换机 Dead Letter Exchanges1.3 代码实现 2.基于延迟插件实现延迟消息2.1 插件安装2.2 代码实现 3.基于延迟插件封装消息 一、延迟消息 延迟消息有两种实现方案 1基于死信队列 2集成延迟插件 1.基于死信实现延迟消息 使用RabbitMQ来实现延迟消息必须先了解RabbitMQ的两个概念 消息的TTL(存活时间)和死信交换机Exchange通过这两者的组合来实现延迟队列 1.1 消息的TTLTime To Live 消息的TTL就是消息的存活时间。RabbitMQ可以对队列和消息分别设置TTL。对队列设置就是队列没有消费者连着的保留时间也可以对每一个单独的消息做单独的设置。超过了这个时间我们认为这个消息就死了称之为死信。 如何设置TTL 我们创建一个队列queue.temp在Arguments 中添加x-message-ttl 为5000 单位是毫秒那所在压在这个队列的消息在5秒后会消失。 1.2 死信交换机 Dead Letter Exchanges 一个消息在满足如下条件下会进死信路由记住这里是路由而不是队列一个路由可以对应很多队列。 1 一个消息被Consumer拒收了并且reject方法的参数里requeue是false。也就是说不会被再次放在队列里被其他消费者使用。 2上面的消息的TTL到了消息过期了。 3队列的长度限制满了。排在前面的消息会被丢弃或者扔到死信路由上。 Dead Letter Exchange其实就是一种普通的exchange和创建其他exchange没有两样。只是在某一个设置Dead Letter Exchange的队列中有消息过期了会自动触发消息的转发发送到Dead Letter Exchange中去。 我们现在可以测试一下延迟队列。 1创建死信队列 2创建交换机 3建立交换器与队列之间的绑定 4创建队列 1.3 代码实现 在service-mq 中添加配置类 import org.springframework.amqp.core.DirectExchange; import org.springframework.amqp.core.Queue; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration;Configuration public class DeadLetterMqConfig {// 声明一些变量public static final String exchange_dead exchange.dead;public static final String routing_dead_1 routing.dead.1;public static final String routing_dead_2 routing.dead.2;public static final String queue_dead_1 queue.dead.1;public static final String queue_dead_2 queue.dead.2;// 定义交换机Beanpublic DirectExchange exchange(){return new DirectExchange(exchange_dead,true,false,null);}Beanpublic Queue queue1(){// 设置如果队列一 出现问题则通过参数转到exchange_deadrouting_dead_2 上HashMapString, Object map new HashMap();// 参数绑定 此处的key 固定值不能随意写map.put(x-dead-letter-exchange,exchange_dead);map.put(x-dead-letter-routing-key,routing_dead_2);// 设置延迟时间map.put(x-message-ttl , 10 * 1000);// 队列名称是否持久化是否独享、排外的【true:只可以在本次连接中访问】是否自动删除队列的其他属性参数return new Queue(queue_dead_1,true,false,false,map);}Beanpublic Binding binding(){// 将队列一 通过routing_dead_1 key 绑定到exchange_dead 交换机上return BindingBuilder.bind(queue1()).to(exchange()).with(routing_dead_1);}// 这个队列二就是一个普通队列Beanpublic Queue queue2(){return new Queue(queue_dead_2,true,false,false,null);}// 设置队列二的绑定规则Beanpublic Binding binding2(){// 将队列二通过routing_dead_2 key 绑定到exchange_dead交换机上return BindingBuilder.bind(queue2()).to(exchange()).with(routing_dead_2);} }配置发送消息 RestController RequestMapping(/mq) Slf4j public class MqController {Autowiredprivate RabbitTemplate rabbitTemplate;Autowiredprivate RabbitService rabbitService;GetMapping(sendDeadLettle)public Result sendDeadLettle() {SimpleDateFormat sdf new SimpleDateFormat(yyyy-MM-dd HH:mm:ss);this.rabbitTemplate.convertAndSend(DeadLetterMqConfig.exchange_dead, DeadLetterMqConfig.routing_dead_1, ok);System.out.println(sdf.format(new Date()) Delay sent.);return Result.ok();} }消息接收方 Component public class DeadLetterReceiver {RabbitListener(queues DeadLetterMqConfig.queue_dead_2)public void getMessage(String msg, Message message, Channel channel) throws IOException {//时间格式化SimpleDateFormat simpleDateFormatnew SimpleDateFormat(yyyy-MM-dd HH:mm:ss);System.out.println(消息接收的时间\tsimpleDateFormat.format(new Date()));System.out.println(消息的内容msg);channel.basicAck(message.getMessageProperties().getDeliveryTag(),true);} } 2.基于延迟插件实现延迟消息 2.1 插件安装 Rabbitmq实现了一个插件x-delay-message来实现延时队列 首先我们将刚下载下来的rabbitmq_delayed_message_exchange-3.9.0.ez文件上传到RabbitMQ所在服务器下载地址https://www.rabbitmq.com/community-plugins.html切换到插件所在目录执行 docker cp rabbitmq_delayed_message_exchange-3.9.0.ez rabbitmq:/plugins 命令将刚插件拷贝到容器内plugins目录下执行 docker exec -it rabbitmq /bin/bash 命令进入到容器内部并 cd plugins 进入plugins目录执行 ls -l|grep delay 命令查看插件是否copy成功在容器内plugins目录下执行 rabbitmq-plugins enable rabbitmq_delayed_message_exchange 命令启用插件exit命令退出RabbitMQ容器内部然后执行 docker restart rabbitmq 命令重启RabbitMQ容器 2.2 代码实现 配置队列 Configuration public class DelayedMqConfig {public static final String exchange_delay exchange.delay;public static final String routing_delay routing.delay;public static final String queue_delay_1 queue.delay.1;Beanpublic Queue delayQeue1() {// 第一个参数是创建的queue的名字第二个参数是是否支持持久化return new Queue(queue_delay_1, true);}Beanpublic CustomExchange delayExchange() {MapString, Object args new HashMapString, Object();args.put(x-delayed-type, direct);return new CustomExchange(exchange_delay, x-delayed-message, true, false, args);}Beanpublic Binding delayBbinding1() {return BindingBuilder.bind(delayQeue1()).to(delayExchange()).with(routing_delay).noargs();} }发送消息 GetMapping(sendelay) public Result sendDelay() {SimpleDateFormat sdf new SimpleDateFormat(yyyy-MM-dd HH:mm:ss);this.rabbitTemplate.convertAndSend(DelayedMqConfig.exchange_delay, DelayedMqConfig.routing_delay, sdf.format(new Date()), new MessagePostProcessor() {Overridepublic Message postProcessMessage(Message message) throws AmqpException {message.getMessageProperties().setDelay(10 * 1000);System.out.println(sdf.format(new Date()) Delay sent.);return message;}});return Result.ok(); }接收消息 Component public class DelayReceiver {RabbitListener(queues DelayedMqConfig.queue_delay_1)public void get(String msg) {SimpleDateFormat sdf new SimpleDateFormat(yyyy-MM-dd HH:mm:ss);System.out.println(Receive queue_delay_1: sdf.format(new Date()) Delay rece. msg);}}3.基于延迟插件封装消息 /*** 封装发送延迟消息方法* param exchange* param routingKey* param msg* param delayTime* return*/ public Boolean sendDelayMsg(String exchange,String routingKey, Object msg, int delayTime){// 将发送的消息 赋值到 自定义的实体类GmallCorrelationData gmallCorrelationData new GmallCorrelationData();// 声明一个correlationId的变量String correlationId UUID.randomUUID().toString().replaceAll(-,);gmallCorrelationData.setId(correlationId);gmallCorrelationData.setExchange(exchange);gmallCorrelationData.setRoutingKey(routingKey);gmallCorrelationData.setMessage(msg);gmallCorrelationData.setDelayTime(delayTime);gmallCorrelationData.setDelay(true);// 将数据存到缓存this.redisTemplate.opsForValue().set(correlationId,JSON.toJSONString(gmallCorrelationData),10,TimeUnit.MINUTES);// 发送消息this.rabbitTemplate.convertAndSend(exchange,routingKey,msg,message - {// 设置延迟时间message.getMessageProperties().setDelay(delayTime*1000);return message;},gmallCorrelationData);// 默认返回return true; }修改retrySendMsg方法 – 添加判断是否属于延迟消息 // 判断是否属于延迟消息 if (gmallCorrelationData.isDelay()){// 属于延迟消息this.rabbitTemplate.convertAndSend(gmallCorrelationData.getExchange(),gmallCorrelationData.getRoutingKey(),gmallCorrelationData.getMessage(),message - {// 设置延迟时间message.getMessageProperties().setDelay(gmallCorrelationData.getDelayTime()*1000);return message;},gmallCorrelationData); }else {// 调用发送消息方法 表示发送普通消息 发送消息的时候不能调用 new RabbitService().sendMsg() 这个方法this.rabbitTemplate.convertAndSend(gmallCorrelationData.getExchange(),gmallCorrelationData.getRoutingKey(),gmallCorrelationData.getMessage(),gmallCorrelationData); }利用封装好的工具类 测试发送延迟消息 // 基于延迟插件的延迟消息 GetMapping(sendDelay) public Result sendDelay(){// 声明一个时间对象SimpleDateFormat simpleDateFormat new SimpleDateFormat(yyyy-MM-dd HH:mm:ss);System.out.println(发送时间simpleDateFormat.format(new Date()));this.rabbitService.sendDelayMsg(DelayedMqConfig.exchange_delay,DelayedMqConfig.routing_delay,iuok,3);return Result.ok(); }重试了4次所以我们需要保证幂等性 结果会 回发送三次也被消费三次 如何保证消息幂等性 1.使用数据方式 2.使用redis setnx 命令解决 — 推荐 SneakyThrows RabbitListener(queues DelayedMqConfig.queue_delay_1) public void getMsg2(String msg,Message message,Channel channel){// 使用setnx 命令来解决 msgKey delay:iuokString msgKey delay:msg;Boolean result this.redisTemplate.opsForValue().setIfAbsent(msgKey, 0, 10, TimeUnit.MINUTES);// result true : 说明执行成功redis 里面没有这个key 第一次创建 第一次消费。// result false : 说明执行失败redis 里面有这个key// 不能 那么就表示这个消息只能被消费一次 那么第一次消费成功或失败我们确定不了 --- 只能被消费一次// if (result){// SimpleDateFormat simpleDateFormat new SimpleDateFormat(yyyy-MM-dd HH:mm:ss);// System.out.println(接收时间simpleDateFormat.format(new Date()));// System.out.println(接收的消息msg);// // 手动确认消息// channel.basicAck(message.getMessageProperties().getDeliveryTag(),false);// } else {// // 不能消费// }// 能 保证消息被消费成功 第二次消费可以进来但是要判断上一个消费者是否将消息消费了。如果消费了则直接返回如果没有消费成功我消费。// 在设置key 的时候给了一个默认值 0 如果消费成功则将key的值 改为1if (!result){// 获取缓存key对应的数据String status (String) this.redisTemplate.opsForValue().get(msgKey);if (1.equals(status)){// 手动确认channel.basicAck(message.getMessageProperties().getDeliveryTag(),false);return;} else {// 说明第一个消费者没有消费成功所以消费并确认SimpleDateFormat simpleDateFormat new SimpleDateFormat(yyyy-MM-dd HH:mm:ss);System.out.println(接收时间simpleDateFormat.format(new Date()));System.out.println(接收的消息msg);// 修改redis 中的数据this.redisTemplate.opsForValue().set(msgKey,1);channel.basicAck(message.getMessageProperties().getDeliveryTag(),false);return;}}SimpleDateFormat simpleDateFormat new SimpleDateFormat(yyyy-MM-dd HH:mm:ss);System.out.println(接收时间simpleDateFormat.format(new Date()));System.out.println(接收的消息msg);// 修改redis 中的数据this.redisTemplate.opsForValue().set(msgKey,1);// 手动确认消息channel.basicAck(message.getMessageProperties().getDeliveryTag(),false); }
http://www.zqtcl.cn/news/331607/

相关文章:

  • 沧州网站建设优化公司网站改版
  • 网站开发工程师好不好注册科技公司流程和费用
  • wordpress站点费用vs手表官网
  • 网站买卖需要注意什么景安怎么把网站做别名
  • 网站建设网站建怎么做一个门户网站
  • 站长工具域名备案查询安卓app开发教程视频免费
  • 赶集网网站建设分析河南郑州旅游网站设计
  • 怎么可以黑网站域名建设网站的网站是什么
  • 帝国网站数据库配置文件建筑人才网招聘网官网首页
  • c 做的网站怎么上传图片阿里巴巴网站建设的目的
  • 保定模板建站平台微网站怎么做的好
  • 肇庆网站建设方案维护做学校网站素材图片素材
  • 新潮远网站建设建什么类型个人网站
  • 泉州中小企业网站制作洛浦县网站建设
  • 做游戏视频网站用什么程序好wordpress 地址修改
  • 大连的网站建设阳西网站seo
  • 网站制作电话多少网站商品图片怎么做
  • 定制做网站平台网站什么情况要更新
  • 上海网站建设哪家国外有哪些网站可以做电商
  • 网络软文推广网站wordpress仿站抓取软件
  • 安徽圣力建设集团网站当当网站建设与易趣网站对比
  • 长沙网站设计制作DW做注册网站
  • 商城设计网站关键词的优化在哪做
  • 网站锚文本网络营销的解释
  • 苏州专业网站建设网站模板是什么
  • 科技网站设计案例百度收录情况查询
  • gif放网站有锯齿策划公司宣传语
  • 淘宝客做网站怎样推广空间购买后打不开网站
  • 信阳网站设计银川网站建设nx110
  • 建设安全协会网站58招聘运营网站怎么做