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 2021/02/27 16:27:48 UTC

[hbase] branch HBASE-22120 updated (f4a4eda -> caa61b5)

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

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


 discard f4a4eda  HBASE-25591 Upgrade opentelemetry to 0.17.1 (#2971)
    omit fd160ac  HBASE-25535 Set span kind to CLIENT in AbstractRpcClient (#2907)
    omit 3ba23c1  HBASE-25484 Add trace support for WAL sync (#2892)
    omit 45ed17a  HBASE-25455 Add trace support for HRegion read/write operation (#2861)
    omit e7dc0ad  HBASE-25481 Add host and port attribute when tracing rpc call at client side (#2857)
    omit c10c210  HBASE-25454 Add trace support for connection registry (#2828)
    omit 851753d  HBASE-23898 Add trace support for simple apis in async client (#2813)
    omit fba34a6  HBASE-25424 Find a way to config OpenTelemetry tracing without direct… (#2808)
    omit f156a6f  HBASE-25401 Add trace support for async call in rpc client (#2790)
    omit 1097d4d  HBASE-25373 Remove HTrace completely in code base and try to make use of OpenTelemetry
     add a7d0445  HBASE-25601 Use ASF-official mailing list archives
     add 3f1c486  HBASE-25596: Fix NPE and avoid permanent unreplicated data due to EOF (#2987)
     add 8d0de96  HBASE-25590 Bulkload replication HFileRefs cannot be cleared in some cases where set exclude-namespace/exclude-table-cfs (#2969)
     add a984358  HBASE-25586 Fix HBASE-22492 on branch-2 (SASL GapToken) (#2961)
     add 30cb419  HBASE-25615 Upgrade java version in pre commit docker file (#2997)
     add 8bf4494  HBASE-25373 Remove HTrace completely in code base and try to make use of OpenTelemetry
     add f6ac49a  HBASE-25401 Add trace support for async call in rpc client (#2790)
     add 3a222bd  HBASE-25424 Find a way to config OpenTelemetry tracing without direct… (#2808)
     add 351b07d  HBASE-23898 Add trace support for simple apis in async client (#2813)
     add 217f1ed  HBASE-25454 Add trace support for connection registry (#2828)
     add d5accc4  HBASE-25481 Add host and port attribute when tracing rpc call at client side (#2857)
     add 8d88eb5  HBASE-25455 Add trace support for HRegion read/write operation (#2861)
     add 534fedd  HBASE-25484 Add trace support for WAL sync (#2892)
     add 6b63b99  HBASE-25535 Set span kind to CLIENT in AbstractRpcClient (#2907)
     add caa61b5  HBASE-25591 Upgrade opentelemetry to 0.17.1 (#2971)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f4a4eda)
            \
             N -- N -- N   refs/heads/HBASE-22120 (caa61b5)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 dev-support/docker/Dockerfile                      |   8 +-
 .../hbase/replication/ReplicationPeerConfig.java   |  29 +-
 .../replication/TestReplicationPeerConfig.java     | 366 ++++++++++++---------
 .../org/apache/hadoop/hbase/ipc/ServerCall.java    |  19 +-
 .../NamespaceTableCfWALEntryFilter.java            |  84 +----
 .../regionserver/ReplicationSource.java            |  35 +-
 .../regionserver/ReplicationSourceWALReader.java   | 145 +++++---
 .../SerialReplicationSourceWALReader.java          |   4 +-
 .../replication/regionserver/WALEntryBatch.java    |   4 +
 .../replication/regionserver/WALEntryStream.java   |   6 +-
 .../regionserver/TestBulkLoadReplication.java      |   8 +-
 .../TestBulkLoadReplicationHFileRefs.java          | 310 +++++++++++++++++
 .../hbase/replication/TestReplicationBase.java     |  27 +-
 .../TestReplicationEmptyWALRecovery.java           | 298 +++++++++++++++--
 .../regionserver/TestWALEntryStream.java           |  62 +++-
 pom.xml                                            |   2 -
 src/main/asciidoc/_chapters/community.adoc         |   8 +-
 src/main/asciidoc/_chapters/compression.adoc       |   4 +-
 src/main/asciidoc/_chapters/configuration.adoc     |   2 +-
 src/main/asciidoc/_chapters/developer.adoc         |   6 +-
 src/main/asciidoc/_chapters/ops_mgt.adoc           |   1 -
 src/main/asciidoc/_chapters/performance.adoc       |   3 +-
 src/main/asciidoc/_chapters/schema_design.adoc     |   4 +-
 src/main/asciidoc/_chapters/troubleshooting.adoc   |  16 +-
 24 files changed, 1063 insertions(+), 388 deletions(-)
 create mode 100644 hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestBulkLoadReplicationHFileRefs.java