Distributed RPC Framework

Distributed RPC Framework Apache Dubbo Learning objectives Understanding the evolution of software architecture Grasp the architecture of Dubbo framework Ability to start and stop Zookeeper with commands Mastering Dubbo Service Providers ...

Added by bob_dole on Tue, 27 Aug 2019 08:56:01 +0300

Dubbo: The Operation Principle of Dubbo

Preface: At the beginning of introducing Java web, the basic learning is MVC development mode, a project is basically model, view, controller three layers. However, with the increasing number of services in the system, the SOA model is more suitable for current project development. The SOA model is basically Dubbo and Spring Cloud in the Java ...

Added by doobster on Sun, 25 Aug 2019 15:52:34 +0300

Dubbo Details: Dubbo Introduction and SpringBook Integration Dubbo+ZooKeeper

Introduction to Dubbo 1. What is Dubbo? Dubbo is an open source Java-based high-performance RPC (a remote invocation) distributed service framework (SOA) for Alibaba, dedicated to providing high-performance and transparent RPC remote service invo ...

Added by Nightseer on Fri, 23 Aug 2019 11:10:10 +0300

Dubbo - Deep Configuration

Attribute configuration override rule: consumer side takes precedence over provider side, method takes precedence over interface configuration, and interface takes precedence over global configuration Load balancing, service downgrade, console dynamic control is generally used. 1. Start check: check="false" Normally, there are chec ...

Added by tsg on Fri, 19 Jul 2019 22:39:27 +0300

Schema Implementation of Distributed Service Dubbo from Initial to Proficient

Preface Although Dubbo has been used for a long time, in fact, its understanding is still a drop in the bucket. Last month, I read through the Netty Actual Warfare (rough understanding), and suddenly I have the desire to interpret the Dubbo source code. If it doesn't wait for me, let's get started. Friends familiar with Dubbo may know that it u ...

Added by matthijs on Sat, 15 Jun 2019 03:24:01 +0300

Implementation of Listener in dubbo

I want to continue dubbo's source code journey here, learn its design and techniques in the process, and look at the excellent code. I think it will certainly be helpful for our schedule coding. And those open source codes are things that have been tried and tested, and I hope to share with you. Take ProtocolListener Wrapper as an example. Whe ...

Added by Dan400007 on Wed, 05 Jun 2019 21:58:57 +0300

netty source code analysis-thread pool

As we all know, netty is a nio framework with excellent performance. As the underlying data transmission framework of many excellent projects such as dubbo, it is absolutely beneficial and harmless for our future development to study it thoroughly. So from today on, we will study netty. This analysis is based on netty 4. Please download the jar ...

Added by zeroecko on Sun, 26 May 2019 01:56:48 +0300

dubbo Source Reading Cluster (Fault Handling Strategy)

Overview of dubbo cluster The entry point of dubbo cluster function is in ReferenceConfig.createProxy method and Protocol.refer method. In the ReferenceConfig.createProxy method, if a user specifies multiple provider URLs or registry url s, multiple Invokers are created, then the Invokers are encapsulated in Static Directory, and then the stati ...

Added by tjhilder on Tue, 14 May 2019 22:13:18 +0300