You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@brpc.apache.org by ww...@apache.org on 2022/10/25 05:59:56 UTC

[incubator-brpc] branch master updated (428a97f5 -> 791516ce)

This is an automated email from the ASF dual-hosted git repository.

wwbmmm pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-brpc.git


    from 428a97f5 Merge pull request #1961 from apache/release-1.3
     new 7d38c8f4 enable brpc use rdma
     new 568b1ac5 Merge branch 'master' into master
     new 71af04c5 Merge branch 'master' into master
     new 546337c2 Merge branch 'master' into master
     new 7aeae8c4 Merge branch 'master' of https://github.com/Tuvie/brpc
     new 866a9eb6 Merge branch 'apache:master' into master
     new 4f63a27c enable brpc use rdma
     new 791516ce Merge pull request #1836 from Tuvie/master

The 2759 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 BUILD.bazel                                        |    8 +
 CMakeLists.txt                                     |   21 +-
 Makefile                                           |    2 +-
 bazel/config/BUILD.bazel                           |    6 +
 config_brpc.sh                                     |   16 +-
 docs/cn/rdma.md                                    |   60 +
 docs/en/rdma.md                                    |   60 +
 .../CMakeLists.txt                                 |   22 +-
 example/{echo_c++ => rdma_performance}/Makefile    |   39 +-
 example/rdma_performance/client.cpp                |  310 ++++
 example/rdma_performance/server.cpp                |   84 +
 .../rdma_performance/test.proto                    |   15 +-
 src/brpc/acceptor.cpp                              |   15 +-
 src/brpc/acceptor.h                                |    4 +
 src/brpc/channel.cpp                               |   36 +-
 src/brpc/channel.h                                 |    4 +
 src/brpc/controller.cpp                            |    4 +
 src/brpc/details/naming_service_thread.cpp         |    3 +-
 src/brpc/details/naming_service_thread.h           |    4 +-
 src/brpc/errno.proto                               |    4 +
 src/brpc/event_dispatcher.h                        |    1 +
 src/brpc/input_messenger.cpp                       |  260 +--
 src/brpc/input_messenger.h                         |   28 +
 src/brpc/rdma/block_pool.cpp                       |  561 ++++++
 src/brpc/rdma/block_pool.h                         |  104 ++
 src/brpc/rdma/rdma_endpoint.cpp                    | 1454 +++++++++++++++
 src/brpc/rdma/rdma_endpoint.h                      |  258 +++
 src/brpc/rdma/rdma_helper.cpp                      |  636 +++++++
 src/brpc/rdma/rdma_helper.h                        |   84 +
 src/brpc/server.cpp                                |   37 +
 src/brpc/server.h                                  |    6 +-
 src/brpc/socket.cpp                                |  114 +-
 src/brpc/socket.h                                  |   22 +
 src/brpc/socket_inl.h                              |    1 +
 src/brpc/socket_map.cpp                            |    9 +-
 src/brpc/socket_map.h                              |   19 +-
 test/CMakeLists.txt                                |    2 +-
 test/brpc_block_pool_unittest.cpp                  |  219 +++
 test/brpc_rdma_unittest.cpp                        | 1954 ++++++++++++++++++++
 39 files changed, 6320 insertions(+), 166 deletions(-)
 create mode 100644 docs/cn/rdma.md
 create mode 100644 docs/en/rdma.md
 copy example/{asynchronous_echo_c++ => rdma_performance}/CMakeLists.txt (87%)
 copy example/{echo_c++ => rdma_performance}/Makefile (64%)
 create mode 100644 example/rdma_performance/client.cpp
 create mode 100644 example/rdma_performance/server.cpp
 copy test/health_check.proto => example/rdma_performance/test.proto (79%)
 create mode 100644 src/brpc/rdma/block_pool.cpp
 create mode 100644 src/brpc/rdma/block_pool.h
 create mode 100644 src/brpc/rdma/rdma_endpoint.cpp
 create mode 100644 src/brpc/rdma/rdma_endpoint.h
 create mode 100644 src/brpc/rdma/rdma_helper.cpp
 create mode 100644 src/brpc/rdma/rdma_helper.h
 create mode 100644 test/brpc_block_pool_unittest.cpp
 create mode 100644 test/brpc_rdma_unittest.cpp


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@brpc.apache.org
For additional commands, e-mail: dev-help@brpc.apache.org