This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a change to branch HBASE-21512
in repository https://gitbox.apache.org/repos/asf/hbase.git.
omit 27d9e71 HBASE-21725 Implement BufferedMutator Based on
AsyncBufferedMutator
omit 4a42159 HBASE-22239 Should translate the exception before returning
it in AsyncRegionServerAdmin
omit cc74144 HBASE-22241 Fix TestRegionServerCoprocessorEndpoint
omit f47f6df HBASE-21718 Implement Admin based on AsyncAdmin
omit 40ff92e HBASE-21717 Implement Connection based on AsyncConnection
omit da4a5c5 HBASE-21585 Remove ClusterConnection
omit f5c0cfb HBASE-21779 Reimplement BulkLoadHFilesTool to use
AsyncClusterConnection
omit 1db14e7 HBASE-21778 Remove the usage of the locateRegion related
methods in ClusterConnection
omit 8c54296 HBASE-21719 Rewrite RegionPlacementMaintainer to use
AsyncClusterConnection
omit c9c5a02 HBASE-21537 Rewrite ServerManager.closeRegionSilentlyAndWait
to use AsyncClusterConnection
omit 4e343c6 HBASE-21671 Rewrite RegionReplicaReplicationEndpoint to use
AsyncClusterConnection
omit 8738775 HBASE-21538 Rewrite RegionReplicaFlushHandler to use
AsyncClusterConnection
omit b0b883e HBASE-21579 Use AsyncClusterConnection for
HBaseInterClusterReplicationEndpoint
omit f5b51fa HBASE-21526 Use AsyncClusterConnection in ServerManager for
getRsAdmin
omit afe5399 HBASE-21516 Use AsyncConnection instead of Connection in
SecureBulkLoadManager
omit 055771f HBASE-21515 Also initialize an AsyncClusterConnection in
HRegionServer
add f227eb7 HBASE-22203 Reformatted DemoClient.java
add bc58ada HBASE-22187 Removed remaining usages of
ClusterConnection.clearRegionCache
add f7867c4 HBASE-22207 Fix flakey
TestAssignmentManager.testAssignSocketTimeout
add 942f8c4 HBASE-22193 Add backoff when region failed open too many times
add 249ac58 Merge pull request #133 from infraio/retry-backoff
add e4e561b Revert "Merge pull request #133 from infraio/retry-backoff
add cfd74a6 HBASE-22193 Add backoff when region failed open too many times
add 37e93c3 HBASE-22227 Removed deprecated fields in ServerSideScanMetrics
add 9c13dde HBASE-22228 Removed deprecated ThrottlingException
add 16146a1 HBASE-21048 Get LogLevel is not working from console in
secure environment
add 4bc2eda HBASE-22236 add more logs for TestAsyncTableGetMultiThreaded
for better debugging
add 01c26c5 HBASE-21257 misspelled words.[occured -> occurred]
add cb84b27 HBASE-22234 Fix flaky
TestHbck#testRecoverSplitAfterMetaUpdated
add 7d1399c HBASE-22242 Removed deprecated method in RegionLoadStats
add 88de644 HBASE-22243 Removed deprecated method in Result
add cd61bcc HBASE-20586: add support for clusters on different realms
(with cross-realm authentication)
new e28c637 HBASE-21515 Also initialize an AsyncClusterConnection in
HRegionServer
new 2bb727a HBASE-21516 Use AsyncConnection instead of Connection in
SecureBulkLoadManager
new 9743d67 HBASE-21526 Use AsyncClusterConnection in ServerManager for
getRsAdmin
new f1bc04f HBASE-21579 Use AsyncClusterConnection for
HBaseInterClusterReplicationEndpoint
new 850bc96 HBASE-21538 Rewrite RegionReplicaFlushHandler to use
AsyncClusterConnection
new a8983db HBASE-21671 Rewrite RegionReplicaReplicationEndpoint to use
AsyncClusterConnection
new 7e3a3d4 HBASE-21537 Rewrite ServerManager.closeRegionSilentlyAndWait
to use AsyncClusterConnection
new 3eaab04 HBASE-21719 Rewrite RegionPlacementMaintainer to use
AsyncClusterConnection
new f76cea2 HBASE-21778 Remove the usage of the locateRegion related
methods in ClusterConnection
new 3506a92 HBASE-21779 Reimplement BulkLoadHFilesTool to use
AsyncClusterConnection
new 08e085b HBASE-21585 Remove ClusterConnection
new e64bc6c HBASE-21717 Implement Connection based on AsyncConnection
new eaba992 HBASE-21718 Implement Admin based on AsyncAdmin
new 930d77a HBASE-22241 Fix TestRegionServerCoprocessorEndpoint
new c555101 HBASE-22239 Should translate the exception before returning
it in AsyncRegionServerAdmin
new d8fe1bb HBASE-21725 Implement BufferedMutator Based on
AsyncBufferedMutator
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 (27d9e71)
\
N -- N -- N refs/heads/HBASE-21512 (d8fe1bb)
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.
The 16 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:
.../resources/hbase/checkstyle-suppressions.xml | 1 +
.../hadoop/hbase/client/RegionLoadStats.java | 9 -
.../org/apache/hadoop/hbase/client/Result.java | 10 -
.../client/metrics/ServerSideScanMetrics.java | 16 -
.../hadoop/hbase/quotas/ThrottlingException.java | 173 -------
.../org/apache/hadoop/hbase/thrift/DemoClient.java | 559 +++++++++++----------
hbase-http/pom.xml | 5 +
.../org/apache/hadoop/hbase/http/log/LogLevel.java | 211 +++++++-
.../apache/hadoop/hbase/http/log/TestLogLevel.java | 352 +++++++++++--
.../apache/hadoop/hbase/chaos/util/Monkeys.java | 4 +-
.../apache/hadoop/hbase/mapreduce/SyncTable.java | 22 +-
.../apache/hadoop/hbase/rest/ScannerResource.java | 2 +-
.../hbase/master/assignment/AssignmentManager.java | 11 +
.../assignment/TransitRegionStateProcedure.java | 26 +-
.../regionserver/handler/AssignRegionHandler.java | 2 +-
.../handler/UnassignRegionHandler.java | 2 +-
.../regionserver/wal/CombinedAsyncWriter.java | 2 +-
.../hbase/security/access/AccessChecker.java | 2 +-
.../hbase/client/HConnectionTestingUtility.java | 9 +-
.../client/TestAsyncTableGetMultiThreaded.java | 32 +-
.../org/apache/hadoop/hbase/client/TestHbck.java | 6 +-
.../master/assignment/TestAssignmentManager.java | 4 +-
22 files changed, 872 insertions(+), 588 deletions(-)
delete mode 100644
hbase-client/src/main/java/org/apache/hadoop/hbase/quotas/ThrottlingException.java