You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2020/05/06 07:55:43 UTC

[hbase] branch master updated (a9a1b95 -> c1cb22f)

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

zhangduo pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git.


    from a9a1b95  HBASE-24304 Separate a hbase-asyncfs module (#1628)
     add c1cb22f  HBASE-24265 Remove hedged rpc call support, implement the logic in MaterRegistry … (#1593)

No new revisions were added by this update.

Summary of changes:
 .../apache/hadoop/hbase/client/MasterRegistry.java | 272 +++++++++++---------
 .../exceptions/MasterRegistryFetchException.java   |   3 +
 .../apache/hadoop/hbase/ipc/AbstractRpcClient.java |  11 +-
 .../apache/hadoop/hbase/ipc/HedgedRpcChannel.java  | 274 ---------------------
 .../apache/hadoop/hbase/ipc/NettyRpcClient.java    |  21 +-
 .../org/apache/hadoop/hbase/ipc/RpcClient.java     |  12 +-
 .../client/TestMasterRegistryHedgedReads.java      | 231 +++++++++++++++++
 .../java/org/apache/hadoop/hbase/HConstants.java   |  13 -
 .../hadoop/hbase/client/FromClientSideBase.java    |  25 +-
 .../hadoop/hbase/client/TestClientTimeouts.java    |  12 +-
 .../hadoop/hbase/client/TestFromClientSide.java    |   1 +
 .../hadoop/hbase/client/TestMasterRegistry.java    |  30 ++-
 .../hbase/client/TestScannersFromClientSide.java   |  25 +-
 .../apache/hadoop/hbase/ipc/AbstractTestIPC.java   | 107 +-------
 .../hbase/ipc/TestProtobufRpcServiceImpl.java      |  15 +-
 .../hadoop/hbase/ipc/TestRpcClientLeaks.java       |  14 --
 16 files changed, 438 insertions(+), 628 deletions(-)
 delete mode 100644 hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/HedgedRpcChannel.java
 create mode 100644 hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestMasterRegistryHedgedReads.java