Posts in 2024
Tracing Dubbo With OpenTelemetry
Wednesday, January 31, 2024 in Articles
Overview This case shows using OpenTelemetry(otlp) as the Tracer in the Dubbo project to report the Trace information to the Otlp Collector, which then forwards it to Zipkin and Jagger. Code address It consists of three parts: …
Posts in 2023
Introduction to Apache Dubbo plugin for IntelliJ IDEA
Monday, October 23, 2023 in Articles
The most popular Java IDE, IntelliJ IDEA, has collaborated with the open-source microservice framework Apache Dubbo community, bringing good news to microservice developers. Along with IntelliJ IDEA version 2023.2, Jetbras has officially released the …
Advanced cloud native - Dubbo 3.2 officially released
Saturday, April 15, 2023 in Articles
Background introduction Apache Dubbo is an RPC service development framework, which is used to solve service governance and communication problems under the microservice architecture. It officially provides multi-language SDK implementations such as …
Posts in 2022
How to proxy Dubbo service in Apache ShenYu Gateway
Wednesday, May 04, 2022 in Articles
1. Introduction Apache ShenYu Apache ShenYu(Incubating) is an asynchronous, high-performance, cross-language, responsive API gateway. Compatible with a variety of mainstream framework systems, support for hot-plugging, users can customize the …
Makes it More Convenient for You to Proxy Dubbo Services in Apache APISIX
Tuesday, January 18, 2022 in Articles
Background Apache Dubbo is a MicroService development framework open sourced by Alibaba and donated to Apache, which provides two key capabilities of RPC communication and microservice governance. It has not only been validated by Ali’s massive …
Posts in 2019
Dubbo Admin service test
Monday, August 26, 2019 in Articles
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 …
Tracing Dubbo service with Apache Skywalking
Sunday, August 11, 2019 in Articles
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 …
Dubbo extensible mechanism source code analysis - part 2
Thursday, May 02, 2019 in Articles
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 …
Dubbo extensible mechanism source code analysis - part 1
Thursday, April 25, 2019 in Articles
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 …
Implementation background and practice of Dubbo server asynchronous interface
Wednesday, February 20, 2019 in Articles
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 …