apache/dubbo

Abstract unified connection layer

Open

#11,028 建立於 2022年11月25日

在 GitHub 查看
 (2 留言) (0 反應) (2 負責人)Java (26,453 fork)batch import
help wantedtype/proposal

倉庫指標

Star
 (41,524 star)
PR 合併指標
 (平均合併 7天 14小時) (30 天內合併 20 個 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.

貢獻者指南