apache/dubbo

Abstract unified connection layer

开放

#11,028 创建于 2022年11月25日

 (2 条评论) (0 个反应) (2 位负责人)Java (26,453 个派生)batch import
help wantedtype/proposal

仓库指标

星标
 (41,524 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

Background

Currently dubbo does not abstract the connection very well.

A client is defined in the dubbo protocol to hold the connection. A logical connection is defined in the Triple protocol to hold the connection.

The invoker gets the connection to execute the request.

For the multi-connection implementation, the dubbo protocol directly creates and holds multiple connections during initialization, and the triple protocol currently does not have a multi-connection implementation.

Describe the proposal

Hope to achieve the features

  • Abstract unified connection layer implementation, support various protocol access
  • Enhance connection-related management functions, provide connection pool, etc.

贡献者指南