RabbitMQ basic usage

Message queue Definition of Message queue The most common way of communication between services is to directly call each other to communicate. Messages can reach the other end immediately after they are sent from one end, which is called instant messaging (synchronous communication) After a message is sent from one end, it first enters a con ...

Added by pcwizzzz on Fri, 25 Feb 2022 14:35:06 +0200

Message queue RabbitMQ

The most common way of communication between services is to call each other directly to communicate. Instant messaging (synchronous communication) refers to that a message can reach the other end immediately after it is sent from one end. After a message is sent from one end, it first enters a container for temporary storage. When certain con ...

Added by s2day on Thu, 24 Feb 2022 13:56:22 +0200

RabbitMQ learning notes

Basic concepts and principles of RabbitMQ AMQP, namely Advanced Message Queuing Protocol, is an open standard of application layer protocol, which is designed for message oriented middleware. RabbitMQ is an open source AMQP implementation, and the server side is written in Erlang language. Channel - Channel is the most important interface f ...

Added by rhodrykorb on Wed, 23 Feb 2022 12:24:04 +0200

[RabbitMQ series that can be understood by laymen] - RabbitMQ quick introduction (including rich examples)

preface Congratulations to all the friends who read this article for successfully unlocking the quick start content of RabbitMQ series 🎁 Through this article, you will quickly learn what middleware is? What is rabbit MQ? How does RabbitMQ work? Finally, Xiaoming will take you through an example to deepen your impression of RabbitMQ ...

Added by s_dhumal on Wed, 23 Feb 2022 02:51:16 +0200

Message queue -- six working modes of RabbitMQ

Message queuing - six working modes of RabbitMQ: 1, Simple mode: 1. Simple mode: There are no switches in the simple mode broker, only queues. 2. Related concepts: ⚫ P: The producer is the program that sends the message ⚫ C: Consumer: the receiver of the message will always wait for the message to arrive ⚫ Queue: message queue, ...

Added by sheffrem on Tue, 15 Feb 2022 05:07:13 +0200

Introduction to RabbitMQ message middleware

RabbitMQ message middleware 1. Message Oriented Middleware 1. Introduction **Message middleware, also known as message queue, refers to the platform independent data exchange with efficient and reliable message transmission mechanism, and the integration of distributed systems based on data communication** In the distributed environment, mes ...

Added by notsleepy on Sat, 12 Feb 2022 03:53:51 +0200

RabbitMQ dead letter queue method of payment timeout order closing policy

catalogue 1, Why is there an overtime customs clearance in the demand background 2, So most order businesses have this function. How to design it? ​3, RabbitMQ dead letter queue - review of knowledge points of delayed messages 3.1 what is rabbitmq's dead letter queue 3.2 what is rabbitmq's dead letter switch 3.3 what kinds of situations c ...

Added by s1yman on Fri, 11 Feb 2022 04:44:12 +0200

Ten minute RabbitMQ environment setup (Linux)

preface RabbitMQ is the message queue most used by Internet companies at present. It is commonly used in the following scenarios: Asynchronous, decouplingPeak elimination, Pinggu The following is the main content of this article. This case is for reference only 1, Installation mode Install via yumDownload the installation packag ...

Added by abigbluewhale on Thu, 10 Feb 2022 14:10:05 +0200

dubbo hidden pit of production failure caused by dubbo generalization#

Last month, the company zk cluster had a failure, and then all project teams were required to check whether Dubbo programmatic / generalized calls were used, and @ Reference was forced to generate consumers. The specific reason is that a large number of online service visitors visited zk in a short time and created 2.4 million + nodes, resultin ...

Added by erikjan on Mon, 07 Feb 2022 21:19:07 +0200

Message middleware RabbitMQ -- message sending and receiving method

Working principle of rabbitmq Explanation: Producer: publishes messages to the switch (Exchange) in RabbitMQExchange: establishes a connection with the producer and receives messages from the producer. On the one hand, it receives messages from the producer, on the other hand, it pushes messages to the queue. The switch must know exactl ...

Added by vinaip on Sat, 05 Feb 2022 07:24:35 +0200