Spring boot2 implements access to RabbitMQ image cluster
Spring boot2 implements access to RabbitMQ image cluster
Spring boot2 implements access to RabbitMQ image cluster
Brief description of RabbitMQ cluster
code snippet
Maven dependency: pom.xml
Configuration file: application.properties
Producer: RabbitmqProducerService.java
Consumer: RabbitmqConsumerService.java
Startup class ...
Added by learnphp1 on Thu, 05 Dec 2019 23:25:45 +0200
RabbitMQ advanced features - dead letter queue
[TOC]
Dead letter
What is a dead letter
News becomes a dead letter without any consumers to consume
There are several situations when a message becomes a dead letter
Message rejected (basic.reject/basic.nack), and request = false
Message TTL expired
Queue reaches maximum length
Dead Letter Exchange(DLX)
DLX
With DLX, when a message becomes a ...
Added by abcd1234 on Sat, 23 Nov 2019 22:08:58 +0200
Simple Mode Quick Start for RabbitMQ and Handling Timeout Exceptions
This article is for JAVA newcomers who want to know about RabbitMQ and who don't want to see the official website documents (headaches for English water viewers (), but suggest that you have the ability or the ability to see the official website documents).
Message Queue MQ (1)
MQ is all called Message Queue, and Message Queuing is the method o ...
Added by fabiuz on Sat, 23 Nov 2019 21:59:06 +0200
Configuring RabbitMQ 3.6.3 cluster and high availability on CentOS7
Overview of clusters
RabbitMQ cluster is implemented through Erlang's distributed feature (magic cookie authentication node). Each RabbitMQ service is peer-to-peer node, that is, each node provides services to the client to connect, send and receive messages.
These nodes replicate message queue structure through RabbitMQ HA queue (mi ...
Added by duckula on Wed, 20 Nov 2019 17:49:57 +0200
The use of golang rabbitmq
The last article mainly explained the use of queue. Both producer and consumer are directly connected to the queue for message production and consumption. This article mainly describes the use of Exchange.
There are several types of Exchange: direct,topic,headers and fanoutLet's talk about the exchange of fanout type. The function is to forward ...
Added by coolen on Mon, 18 Nov 2019 22:20:44 +0200
PHP+RabbitMQ complete code for message queuing
Why RabbitMq instead of ActiveMq or RocketMq?First of all, from a business point of view, I do not require 100% acceptance rate of messages, and I need to develop in combination with php. RabbitMq has a lower latency (subtle level) than RocketMq. As for ActiveMq, it seems that there are many problems. RabbitMq has good support for various langu ...
Added by Liquid Fire on Sun, 03 Nov 2019 13:38:00 +0200
Spring Boot RabbitMQ - priority queue
Docker With RabbitMQ
Official Docker image warehouse address
https://hub.docker.com/_/rabb...
Running RabbitMQ locally
docker run -d --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-management
Access the visualization panel
Address: http://127.0.0.1:15672/
Default account: guest
Default password: guest
Spring Boot With RabbitMQ
Spring ...
Added by kovudalion on Sat, 02 Nov 2019 06:20:12 +0200
RabbitMQ introduction series 4 -- message confirmation mechanism
1 problem introduction
When using RabbitMQ, we may encounter such a problem that the producer does not know whether the message has arrived at the server after sending the message, which is a mystery to the producer. By default, the producer does not receive any response. So if we want to know where t ...
Added by gin on Mon, 28 Oct 2019 05:20:21 +0200
C ා wrote a general tool class of search engine query based on Lucene.Net: SearchEngineUtil
Recently, due to work reasons, I have been busy with various projects of the company (most of them are microservices based on Spring cloud), so I haven't shared and summarized the latest technical research results with you for a while. In fact, I have been studying and studying various framework principles of Spring, Spring Boot and Spring clou ...
Added by littlegreenman on Thu, 17 Oct 2019 02:32:07 +0300
Experience Retrieval (Pure Manual) => Python-logging Module Logging Principle Analysis and Use
logging module
logging module is a large module. It has a complete log system.Mainly divided into: main Logger - processor - formatterlogging is a python built-in module that does not require installation. Import mode: import logging is enough
Log ranking (weak - > strong)
DEBUG < INFO < WARNING < ERROR < FATAL
DEBUG : Some in ...
Added by ub_kh on Wed, 11 Sep 2019 06:35:41 +0300