AbbitMQ Cluster Setup Job Based on Docker

AbbitMQ Cluster Setup Job Based on Docker 1. Goals Set up a RabbitMQ cluster with three nodes 2. Preparations 2.1 Operating System ubuntu-18.04-desktop-amd64 (Official iso download) Set the software source of ubuntu as a mirror of Ali to improve download speed.See https://opsx.alibaba.com/mirror Beginners recommend GUI configuration: System ...

Posted by waygood on Thu, 09 May 2019 20:06:39 -0700

SpringBoot Integrates RabbitMQ

You can refer to the blogger's previous article on what is Message Middleware and its benefits (SpringBoot Integrates ActiveMQ), which is not covered here ~ 1. Simple integration 1. Add RabbitMQ dependencies <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-start ...

Posted by l3asturd on Sun, 05 May 2019 17:55:37 -0700

Microservice Asynchronous Architecture--RocketMQ of MQ

First, what is MQ? What is the principle of MQ? MQ is the message queue, short for Message Queue. Message queuing is a way of communication. The essence of a message is a data structure. Because MQ centralizes the processing and storage of messages in the project, MQ has the functions of decoupling, concurrency and peak shaving. 1. ...

Posted by kael.shipman on Mon, 22 Apr 2019 15:36:34 -0700

RedisMQ of Queue Factory

This time I share with you the usage of RedisMQ queue, the first two articles Queue Factory (MSMQ) and RabbitMQ of Queue Factory Briefly introduce the construction of the corresponding queue environment and the use of common methods, together with the EDIS MQ shared in this article, we have achieved the goal of "three swordsmen" in ou ...

Posted by rajns on Sun, 21 Apr 2019 12:30:34 -0700

RabbitMQ - From Foundation to Practice (3) - Message Exchange

1. introduction In the previous example, each message corresponds to only one consumer. Even if multiple consumers are online, only one consumer will receive and process a message, which is a common way of message middleware. Another way is that the producer produces a message, broadcasts it to all consumers, and all consumers who subscribe to ...

Posted by slawrence10 on Sat, 20 Apr 2019 13:36:33 -0700

socketIo Builds Long Connections (2)

Today we're going to talk about wehsocket and node development long connection. In a real project, we may want to achieve a function that is not a simple chat function. Now we need to integrate it. Redis Rabbit MQ, etc. implements o2o's reminder function: First, integrate a redis: We create a chat folder in which we write a package.json ...

Posted by rj2kix on Fri, 19 Apr 2019 23:27:35 -0700

Spring cloud sleuth rabbitmq zipkin mysql distributed service tracking analysis

Based on zipkin, a distributed tracking analysis application is built, which can be used to view the invocation process, time-consuming and service dependencies between service chains. Especially in the late analysis of performance can be used as a reference basis, according to individual needs to choose to use. Introduction: Twitter's zip ...

Posted by ac1982 on Mon, 11 Feb 2019 01:33:17 -0800

Message Middleware Series 6, rabbit and spring Integrated Practice

Foreword: This is one of the articles in middleware series. Friends in need can see other articles in this series.Message Middleware Series I. Basic Understanding of Message MiddlewareMessage Middleware Series II. Installation of ActeMQ and Rabbit MQ under WindowsSimple Use of Message Middleware Series 3, JMS and ActeMQMessage Middleware Series ...

Posted by .-INSANE-. on Wed, 30 Jan 2019 12:48:15 -0800

springboot+rabbitmq Integration

1. Install rabbitmq 2. Create a new spring Book project: rabbitmq_demo 3. Adding pom dependencies: <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> < ...

Posted by bobthebuilder on Tue, 29 Jan 2019 22:27:15 -0800

Spring Cloud Distributed Link Tracking Sleuth + Zipkin + Elastic Search [Finchley Edition]

As the business becomes more and more complex, the system will also be split. Especially with the rise of micro-service architecture, it seems that a simple application, many services in the background may be supporting; a request may require multiple services invocation; when the request is slow or unavailable, it is impossible to know which m ...

Posted by tekky on Thu, 27 Dec 2018 15:57:06 -0800