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/12/03 14:48:00 UTC

[hbase] branch HBASE-26233 updated (a0d1c41 -> f69c61b)

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

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


 discard a0d1c41  HBASE-26486 Attach the new region replication framework design doc to git repo (#3884)
 discard 904150c  HBASE-26478 Update ref guide about the new region replication framework (#3885)
 discard 81823bb  HBASE-26481 Consider rolling upgrading from old region replication framework (#3880)
 discard 084885b  HBASE-26417 Remove NoopReplicationQueueStorage (#3882)
 discard 472dc23  HBASE-26456 Limit the size for one replicating (#3873)
 discard 8f91de3  HBASE-26416 Implement a new method for region replication instead of using replay (#3864)
 discard 4947c2f  HBASE-26457 Should not always clear all the failed replicas when getting a flush all request (#3850)
 discard 59cf2634 HBASE-26448 Make sure we do not flush a region too frequently (#3847)
 discard 2287d3a  HBASE-26449 The way we add or clear failedReplicas may have race (#3846)
 discard 599e781  HBASE-26413 Limit the total size of buffered region replication entries (#3844)
 discard 91c7afc  HBASE-26412 Handle sink failure in RegionReplicationSink (#3815)
 discard 20358ef  HBASE-26407 Introduce a region replication sink for sinking WAL edits to secondary replicas directly (#3807)
     add f108997  HBASE-26403 Remove 1.4.x from our download page (#3881)
     add 358c4dc  HBASE-25905 Shutdown of WAL stuck at waitForSafePoint (#3898)
     add d1762f5  HBASE-26468 Region Server doesn't exit cleanly incase it crashes. (#3862)
     add ea824df  HBASE-26471 Move tracing semantic attributes to their own class (#3896)
     add 7845d00  HBASE-26512 Make timestamp format configurable in HBase shell scan output
     add 19b0b2e  HBASE-26524 Support remove coprocessor by class name via alter table command (#3902)
     add 6d28bc6  HBASE-26524 Addendum fix TestConstraints (#3912)
     add bd96b8a  HBASE-26407 Introduce a region replication sink for sinking WAL edits to secondary replicas directly (#3807)
     add 45f3fa2  HBASE-26412 Handle sink failure in RegionReplicationSink (#3815)
     add fccb615  HBASE-26413 Limit the total size of buffered region replication entries (#3844)
     add 2f67a30  HBASE-26449 The way we add or clear failedReplicas may have race (#3846)
     add dbca438  HBASE-26448 Make sure we do not flush a region too frequently (#3847)
     add 8523a0a  HBASE-26457 Should not always clear all the failed replicas when getting a flush all request (#3850)
     add 1515c12  HBASE-26416 Implement a new method for region replication instead of using replay (#3864)
     add 294cead  HBASE-26456 Limit the size for one replicating (#3873)
     add 9b4f214  HBASE-26417 Remove NoopReplicationQueueStorage (#3882)
     add 7710b1c  HBASE-26481 Consider rolling upgrading from old region replication framework (#3880)
     add b85ef94  HBASE-26478 Update ref guide about the new region replication framework (#3885)
     add f69c61b  HBASE-26486 Attach the new region replication framework design doc to git repo (#3884)

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   (a0d1c41)
            \
             N -- N -- N   refs/heads/HBASE-26233 (f69c61b)

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:
 .../hadoop/hbase/client/AsyncConnectionImpl.java   |   5 +-
 .../hadoop/hbase/client/AsyncRegionLocator.java    |   4 +-
 .../hbase/client/TableDescriptorBuilder.java       |   4 +
 .../apache/hadoop/hbase/ipc/AbstractRpcClient.java |  14 +-
 .../hbase/client/TestAsyncConnectionTracing.java   |   4 +-
 .../client/TestAsyncRegionLocatorTracing.java      |  20 +-
 .../hadoop/hbase/client/TestAsyncTableTracing.java |  10 +-
 .../hbase/client/TestTableDescriptorBuilder.java   |  14 ++
 .../java/org/apache/hadoop/hbase/HConstants.java   |   5 +
 .../hbase/trace/HBaseSemanticAttributes.java       |  48 +++++
 .../org/apache/hadoop/hbase/trace/TraceUtil.java   |  34 +---
 .../java/org/apache/hadoop/hbase/util/Threads.java |  31 ++++
 .../hadoop/hbase/constraint/Constraints.java       |   7 +-
 .../org/apache/hadoop/hbase/ipc/CallRunner.java    |   8 +-
 .../apache/hadoop/hbase/regionserver/HRegion.java  |  10 +-
 .../hbase/regionserver/wal/AbstractFSWAL.java      |   5 +-
 .../hadoop/hbase/regionserver/wal/AsyncFSWAL.java  |  23 ++-
 .../hadoop/hbase/util/ServerCommandLine.java       |  21 ++-
 .../hadoop/hbase/wal/AsyncFSWALProvider.java       |   4 +-
 .../apache/hadoop/hbase/ipc/AbstractTestIPC.java   |  14 +-
 .../hbase/regionserver/TestHRegionTracing.java     |   4 +-
 .../regionserver/wal/TestAsyncFSWALRollStuck.java  | 205 +++++++++++++++++++++
 hbase-shell/src/main/ruby/hbase/admin.rb           |  11 ++
 hbase-shell/src/main/ruby/hbase/table.rb           |  11 +-
 hbase-shell/src/main/ruby/shell/commands/alter.rb  |  12 ++
 hbase-shell/src/test/ruby/hbase/admin_test.rb      |  19 ++
 src/site/xdoc/downloads.xml                        |  22 ---
 27 files changed, 468 insertions(+), 101 deletions(-)
 create mode 100644 hbase-common/src/main/java/org/apache/hadoop/hbase/trace/HBaseSemanticAttributes.java
 create mode 100644 hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/wal/TestAsyncFSWALRollStuck.java