×
Community Blog The Challenges behind the Migration and Implementation of Large-Scale ActiveMQ to RocketMQ

The Challenges behind the Migration and Implementation of Large-Scale ActiveMQ to RocketMQ

This article discusses ActiveMQ's smooth migration to RocketMQ, including migration principles, goals, and solutions.

By Gao Xiangyang (a Senior R&D Engineer at Zhuanzhuan.com)

Background Introduction

As people's requirements for timeliness are growing, the market demand for intra-city express delivery is also increasing. For example, on Valentine's Day, Teacher's Day, Mid-Autumn Festival, and other festivals, intra-city express delivery platforms will overflow with orders, so stable services are required.

1

Previously, ActiveMQ was used in all core business messages of the intra-city express service (such as orders, delivery riders, users, and other core data and logs). Kafka was used for non-core business messages. The number of topics is 153, and the number of consumers is 387. The preceding data shows that if the migration is performed, a large number of business changes will be generated, which will affect the intelligent iteration of business lines and occupy a lot of research and development resources. At the same time, the large amount of research and development work also means the testing work is large and uncontrollable.

There are many defects in the use of ActiveMQ:

  • Message links are unstable and occasionally disconnected, mostly in order groups.
  • The self-implemented load balancing policy is detrimental to the business when the broker is restarted.
  • Message sending occasionally times out, sometimes longer than one or two seconds.
  • Lack of monitoring and alerting, poor O&M, and coarse monitoring granularity
  • The primary node and the secondary node are deployed on the same machine in non-distributed mode.
  • There is a performance bottleneck in stress testing. When the order volume exceeds 2 million, the read/write operations in memory and disk will increase, which poses business risks.

Comparison of MQ Selection

2

The selection of MQ technical components is mainly compared from five dimensions: basic items, supporting functions, availability, reliability, and O&M capabilities. In addition, a comprehensive analysis is required from the perspective of companies and business R&D partners. The company's perspective includes technology costs (such as the costs of the current technology stack, server, MQ expansion, post-maintenance, and labor). Business R&D partners' perspective includes difficulties transforming business services and compatibility issues with the current service framework.

3

The preceding figure compares the basic items of RocketMQ, ActiveMQ, and Kafka (including maturity, company/community, popularity, API perfection, programming language, document completeness, and client language). ActiveMQ's popularity is slightly lower than the other two.

4

The preceding figure compares the functions (including ordered messages, delayed messages, transactional messages, message filtering, message query, retry for failed consumption, and batch sending). In terms of functions, RocketMQ has great advantages.

5

The preceding figure compares availability, reliability, and O&M capabilities. RocketMQ 4.5.0 introduces the Dledger mode to solve the problem of automatic failover in the broker group. The community has fully upgraded the performance stability and functions of Dledger 4.8.0. In terms of O&M capabilities, RocketMQ provides relatively complete support for service scaling, service migration, upgrading management platforms, and monitoring and alerting platforms to facilitate the company's internal secondary development based on business characteristics.

In summary, we chose RocketMQ to replace ActiveMQ.

Technical Solutions and Overall Rhythm of ActiveMQ's Smooth Migration to RocketMQ

6

The migration solution is divided into the following five steps: topic statistics, making a migration time plan and determining the test scope, extension solution, SDK client design and usage mode, smooth migration solution, and arbitrary message delay solution.

7

First, export a list of all the topics and the corresponding consumers for each topic. The statistical items of the consumer include the owner, business cluster name, latency, producer service name, producer topic name, consumer topic name, consumer service, consumer business owner, business scenario, migration status, and launch leader.

8

The statistical items of the producer business include the producer service name, producer topic name, Apollo switch, R&D owner, test owner, and launch date.

9

Our migration principle is that business changes are as few as possible without affecting normal business iterations. The goal is smooth and lossless migration of the company's full businesses.

10

There are inevitably differences between the two products before and after the migration, so secondary development is required. Generally, there are two ways:

(1) Make in-depth modifications directly on native products to achieve the customized functions required by the company. This method is relatively simple to implement, but it will drift away from the open-source version of the community, and subsequent upgrades are more difficult.

(2) Do not modify the original product, but do encapsulation on its periphery to meet the specific needs of the company.

We chose the second method for secondary development to ensure we can continue to enjoy the benefits brought by the open-source version of the community (such as the optimization of synchronous replication delay in version 4.7 and the overall improvement of Dledge mode in version 4.8).

11

The SDK design solution adopts a pyramid structure, which is divided into three layers. The top layer is the API layer, which provides the most basic APIs. All access must go through APIs. The API is like an iceberg. Everything below (except for the simple external interface) can be upgraded and replaced without breaking compatibility. Its business development is also relatively simple. You only need to provide the topic, group, and server name for production and consumption.

The second layer is the universal layer. It aggregates some of the personalized requirements that the company currently needs (such as trace, log change, monitoring, configuration, and load balance). Some functions are required to extend in some special business scenarios, so the SPI mechanism is also provided.

The third layer is the MQ implementation layer, which facilitates the expansion of more MQ products in the later stage and shields the differences between middleware products.

When using ActiveMQ, the SDK structure is already a pyramid design model. Therefore, the business development workload of the migration is small. This also shows that when an open-source product is launched within the company, appropriate encapsulation is more conducive to later maintenance and expansion.

12

The core of the smooth migration solution is single write and double read: single write for producers and double read for consumers. Double read refers to reading both ActiveMQ and RocketMQ.

In the preceding figure, the yellow part is the production and consumption process of ActiveMQ, and the brown part is the production and consumption process of RocketMQ. The blue line represents the consumer. After the SDK is upgraded, a two-way link has been established for the consumer to perform the double read. The producer also upgrades the SDK to complete the transition from ActiveMQ to RocketMQ. Here, the SDK upgrade is based on the topic level rather than the overall service upgrade.

The business process is also divided into two steps. First, consumers go online to do the double read and consume both ActiveMQ and RocketMQ to ensure messages will not be lost due to migration. The consumer comes online first, followed by the producer. Therefore, there may be consumption by multiple consumers, and the migration of producers will take place after all consumers come online and are confirmed error-free.

13

You only need to change a few lines of code to change the consumer usage, as shown in the yellow part above. The mar is an ActiveMQ cluster, and the newly added earth is a RocketMQ cluster.

14

Since the producer does single write, you only need to change the original ActiveMQ name at the server name to the RocketMQ name.

The delayed message is a function commonly used in businesses. However, the built-in delayed message of RocketMQ only supports a few fixed delay levels. Although it supports manual configuration, the configuration requires a restart of the broker. Therefore, we separately developed a delay service to schedule delayed messages.

15

The preceding figure shows the overall process of delayed messages. The producer sends a delayed message, SDK converts it into a global delayed message topic, the MQBroker cluster stores it, and the Delay Server consumes the delay topic and stores it in the local EocksDB. When time is up, it will be pushed to the topic of the original business, achieving delaying message processing at any level.

Instead of sending messages directly to the delay service, the topics are replaced and stored in RocketMQ. The advantage is that the existing message sending interface and all the extension capabilities on it can be reused. You only need to specify the delay time when constructing the message for the business, and everything else remains the same.

16

The migration started in April 2021, SDK expansion and development were completed in May, topic business sorting was completed in June, migration was completed in July, and ActiveMQ went offline in August. The migration ended perfectly.

The pain points caused by ActiveMQ were mostly solved after observing the first half year after migration.

Distributed Message Governance Platform Planning

17

A distributed message governance platform includes clusters, themes, and consumer groups. Clusters include NameSrv and Broker. Therefore, the core issue that needs to be considered by the distributed message governance platform is the cluster monitoring design of RocketMQ.

There are two roles: administrator (O&M) and business party (R&D). The O&M side focuses on the health status of the cluster, the sender focuses on the topic, and the consumer focuses on the consumer group.

18

Cluster monitoring can be divided into four parts: the number of cluster nodes, cluster node availability, TPS of cluster writing, and TPS change rate of cluster writing.

  1. Monitoring the Number of Nodes: You can regularly monitor the number of nodes of clusters. For example, if a RocketMQ cluster has six primary nodes and six secondary nodes, an alarm is triggered when the number of primary nodes is less than six. In addition, it can be used for dashboard display.
  2. Cluster Node Availability: You can regularly collect whether the detection sent by the node is successful. If it is not successful, an alarm is triggered. You can also regularly collect the detection duration sent by the node. If the detection duration exceeds the target threshold, an alarm is triggered.
  3. TPS of Cluster Writing: You can monitor the TPS changes of the cluster writing and set a TPS threshold of cluster writing. If the TPS exceeds the threshold, an alarm is triggered.
  4. TPS Change Rate of Cluster Writing: You can monitor the TPS change rate of cluster writing within a specific period and calculate the TPS change rate of cluster writing within five minutes. You can also monitor the change in the total number of daily messages in the cluster and the TPS of writing/consuming at a single node.

19

The R&D side focuses on topic monitoring, consumer group monitoring, producer monitoring, and consumer monitoring.

  • Topic Monitoring: It includes topic writing TPS, TPS change rate of topic writing, daily topic message volume, and dead-letter queue monitoring. For example, if a topic's queue increases by 30% in five minutes, you need to pay attention to it.
  • Consumer Group Monitoring: It includes consumption backlog, consumption TPS, consumption blocking, and consumption rate changes. In some business scenarios, it is normal that data has not been consumed for a long time, but in some core business scenarios, if data has not been consumed for a long time, you need to focus on it.
  • Producer Monitoring: It includes changes in the sending duration, distribution of successful sending and failed sending, and changes in the sending rate. In addition, we need to focus on the size of the sent message body in some business scenarios.
  • Consumer Monitoring: It includes the consumption rate, consumption time, and distribution of successful consumption and failed consumption. The distribution of successful consumption and failed consumption refers to the distribution of successful consumption and failed consumption on a single node.

Join the Apache RocketMQ Community: https://github.com/apache/rocketmq

0 1 0
Share on

You may also like

Comments

Related Products

  • ApsaraMQ for RocketMQ

    ApsaraMQ for RocketMQ is a distributed message queue service that supports reliable message-based asynchronous communication among microservices, distributed systems, and serverless applications.

    Learn More
  • Function Compute

    Alibaba Cloud Function Compute is a fully-managed event-driven compute service. It allows you to focus on writing and uploading code without the need to manage infrastructure such as servers.

    Learn More
  • Elastic High Performance Computing Solution

    High Performance Computing (HPC) and AI technology helps scientific research institutions to perform viral gene sequencing, conduct new drug research and development, and shorten the research and development cycle.

    Learn More
  • Quick Starts

    Deploy custom Alibaba Cloud solutions for business-critical scenarios with Quick Start templates.

    Learn More