Posts in 2020
  • Dubbo Java 2.7.14 Release Announcement

    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 …

    Read more

  • Annual Review and Summary of Apache Dubbo from 2019 to 2020

    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) …

    Read more

Posts in 2019
  • Dubbo Admin service test

    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 …

    Read more

  • Tracing Dubbo service with Apache Skywalking

    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 …

    Read more

  • Dubbo extensible mechanism source code analysis - part 2

    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 …

    Read more

  • Dubbo extensible mechanism source code analysis - part 1

    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 …

    Read more

  • Implementation background and practice of Dubbo server asynchronous interface

    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 …

    Read more

  • Implementation background and practice of Dubbo client asynchronous interface

    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 …

    Read more

  • Meet Dubbo

    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 …

    Read more

  • How to use Seata to ensure consistency between Dubbo Microservices

    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: …

    Read more