apache/dubbo

Abstract unified connection layer

オープン

#11,028 opened on 2022/11/25

 (2 件のコメント) (0 件のリアクション) (2 人の担当者)Java (26,453 件のフォーク)batch import
help wantedtype/proposal

Repository metrics

Stars
 (41,524 個のスター)
PR merge metrics
 (PR metrics pending)

説明

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.

コントリビューターガイド