This topic describes how to smoothly migrate Dubbo applications on Alibaba Cloud to Enterprise Distributed Application Service (EDAS) and register and discover services. If your Dubbo applications are not deployed on Alibaba Cloud, submit a ticket or contact EDAS technical support to obtain a complete solution for migration to EDAS.
Benefits of migration to EDAS
- EDAS provides features for application deployment, such as flexible configuration of startup parameters, process visualization, graceful service connection and disconnection, and phased release. This allows you to configure, query, and control application release processes.
- EDAS provides the service discovery and configuration management features in its commercial release. This saves you from maintaining the middleware, such as Eureka, ZooKeeper, or Consul.
- The EDAS console supports centralized service governance. This allows you to query the details of released and consumed services.
- EDAS provides auto scaling. This allows you to dynamically scale your applications in or out based on traffic peaks and valleys.
- In addition to instance information query, EDAS also provides advanced monitoring features, such as microservice trace query, query of the system call topology, and slow SQL query.
- EDAS provides the throttling and degradation features to ensure the high availability of your applications.
- EDAS provides the end-to-end phased release feature for small-scale validation when you iterate and update your applications.
What is smooth migration?
For example, your Dubbo applications have been deployed in the production environment and run as expected. If you need to migrate the applications to EDAS to have access to all the EDAS features, you can ensure service continuity during smooth migration.
Migration process
- Required. Migrate applications.
Applications to be migrated are typically stateless and can be migrated first. This topic focuses on how to migrate applications.
- Optional. Migrate the Server Load Balancer (SLB) instance or modify the domain name
configuration.
After the application migration is complete, you need to migrate the SLB instance or modify the domain name configuration.
- SLB
- If an SLB instance is used before migration, you can reuse the SLB instance after migration..
- If no SLB instance is used before migration, we recommend that you create and bind an SLB instance to the entry application, such as API Gateway in the preceding figure, after migration.
- Domain name
- The domain name configuration can be retained if the SLB instance can be reused after migration.
- To create and bind an SLB instance to migrated applications, you must add this SLB instance configuration to the domain name configuration and delete the original SLB instance. For more information, see Change DNS servers for a domain name.
- SLB
- Optional:Optional. Migrate storage and message queues.
- Applications deployed on Alibaba Cloud use Alibaba Cloud services, such as ApsaraDB RDS and Message Queue. Therefore, you do not need to migrate storage and message queues along with applications.
- If your applications are not deployed on Alibaba Cloud, submit a ticket or contact EDAS technical support to obtain a complete solution for migration to EDAS.
This topic describes how to migrate applications. EDAS provides a demo to show you how to smoothly migrate applications. You can download this demo and run the demo by referring to Readme.
Migration solution
You can migrate applications by using two methods: registry switching, and dual registration and dual subscription. The two methods allow you to migrate applications without service discontinuity.
- Registry switching
Use Dubbo to switch the original service registry to EDAS Config Server, develop a new set of applications, and then deploy them to EDAS. Then, use Server Load Balancer (SLB) and configure domain names to switch traffic.
If you use the registry switching method, you can skip the subsequent content of this topic. For more information about how to develop applications after you use this method, see Use Spring Boot to develop Dubbo microservice-oriented applications.
- Dual registration and dual subscription
Access the original service registry and the EDAS service registry when applications are being migrated to enable mutual calling between migrated applications and non-migrated applications.
- Migrated applications and non-migrated applications can discover and call each other. This ensures service continuity.
- You need to only add dependencies and modify a line of code to implement dual registration and dual subscription.
- You can view the details of the list of consumer service calls, and view the migration progress in real time.
- You can dynamically modify the policies of service registration and subscription without the need to restart applications. Applications are restarted only once in the migration process.
Migrate the first application
Migrate all the other applications
Migrate the other applications to EDAS by repeating the procedure for migrating the first application.
Clear the migration configurations
After migration, delete the original service registry configurations and the edas-dubbo-migration-bom
dependency that is used during migration.
Modify the registry address by deleting the ZooKeeper configurations. This ensures that consumers subscribe only from EDAS and that providers offer subscriptions only in EDAS. You can modify the registry address by using the following methods:
- Method 1: dynamic configuration
For more information, see Verify the result in your on-premises environment.
- Method 2: manual modification
Change the registry address to the address of EDAS Config Server after all the applications are modified.
dubbo.registry.address = edas-migration://30.5.XX.XX:9999?service-registry=edas://127.0.XX.XX:8080,zookeeper://172.31.XX.XX:2181&reference-registry=edas://127.0.XX.XX:8080&config-address=127.0.0.1:8848
Change the value of
reference-registry
fromzookeeper://172.31.XX.XX:2181
toedas://127.0.XX.XX:8080
. Then, deploy applications.Note Deletezookeeper://172.31.XX.XX:2181
from the service registry configurations ifZooKeeper
is no longer required after migration. The following content shows the final registry address:dubbo.registry.address = edas://127.0.XX.XX:8080
From the long-term perspective, ZooKeeper has no impact on service stability but increases the complexity and the error rate of using service registries in Dubbo. We recommend that you clear the ZooKeeper configurations after migration and restart applications in batches during off-peak hours.