Monday, May 18, 2020 in Community Updates
Changes Added coverage rules for dynamic configuration center in ServiceDiscovery. (#8389) Fixed the issue where mock parameters containing ‘:’ or ‘=’ could not be used properly. (#8379) Fixed the issue where the zone …
Monday, May 11, 2020 in Community Updates
Thank you all for your attention to the Dubbo community. In this article, we will summarize the achievements made by the Dubbo community over the past year, covering both community and framework evolution, and look forward to future plans (roadmap) …
Monday, August 26, 2019 in Community Updates
Based on the metadata of Dubbo2.7, Dubbo Admin implements the service test function, which can call the real service provider on the console through generalized call. Usage Deploy the provider: You can download the demo here. This project is based on …
Sunday, August 11, 2019 in Community Updates
Introduction to Apache Skywalking Apache Skywalking is the APM system that it designed for micro-services architectures and cloud native architecture systems and supports distribute tracking. Apache skywalking (incubator) collects and analyzes the …
Thursday, May 02, 2019 in Community Updates
In the actual implementation of the Dubbo extensibility mechanism, we learned some concepts of the Dubbo extension mechanism, explored the implementation of LoadBalance in Dubbo, and implemented a LoadBalance on our own. Do you think Dubbo’s …
Thursday, April 25, 2019 in Community Updates
1. Extension Mechanism of Dubbo Dubbo is claimed as a high-performance RPC framework on its official website. Today, I want to talk about another great specialty of Dubbo — its scalability. As quote: Rome wasn’t built in a day. Any successful …
Wednesday, February 20, 2019 in Community Updates
Preface It is suggested to make an understanding of the thread phase involved in the process of Dubbo first, please refer to Implementation background and practice of Dubbo client asynchronous interface for details. Implementation background It is …
Wednesday, February 20, 2019 in Community Updates
Preface Let’s start with a brief introduction about the stages of a complete Dubbo invocation. Biz~ represents business thread, that is, the thread where the business logic is located. Biz~ thread pool may be created and maintained by business …
Saturday, January 26, 2019 in Community Updates
I am a programmer with a Dubbo obsession. Dubbo has accompanied me throughout my coding career for a short time in various ways. Not long ago, I was elected as a Committer through community voting. At that time, I posted a phrase on my social …
Thursday, January 17, 2019 in Community Updates
Use case A business logic for user purchasing commodities. The whole business logic is powered by 3 microservices: Storage service: deduct storage count on given commodity. Order service: create order according to purchase request. Account service: …