Skip to content

HBASE-22238 Fix TestRpcControllerFactory - #147

Merged
Apache9 merged 1 commit into
apache:HBASE-21512from
Apache9:HBASE-22238
Apr 16, 2019
Merged

HBASE-22238 Fix TestRpcControllerFactory#147
Apache9 merged 1 commit into
apache:HBASE-21512from
Apache9:HBASE-22238

Conversation

@Apache9

Copy link
Copy Markdown
Contributor

No description provided.

@Apache9Apache9 changed the title Hbase 22238HBASE-22238 Fix TestRpcControllerFactoryApr 14, 2019
@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec166Docker mode activated.
_ Prechecks _
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ HBASE-21512 Compile Tests _
+1mvninstall254HBASE-21512 passed
+1compile25HBASE-21512 passed
+1checkstyle13HBASE-21512 passed
+1shadedjars256branch has no errors when building our shaded downstream artifacts.
+1findbugs38HBASE-21512 passed
+1javadoc14HBASE-21512 passed
_ Patch Compile Tests _
+1mvninstall243the patch passed
+1compile25the patch passed
+1javac25the patch passed
+1checkstyle13the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars261patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck505Patch does not cause any errors with Hadoop 2.7.4 or 3.0.0.
+1findbugs45the patch passed
+1javadoc14the patch passed
_ Other Tests _
-1unit446hbase-endpoint in the patch failed.
+1asflicense11The patch does not generate ASF License warnings.
2405
ReasonTests
Failed junit testshadoop.hbase.coprocessor.TestRegionServerCoprocessorEndpoint
SubsystemReport/Notes
DockerClient=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-147/2/artifact/out/Dockerfile
GITHUB PR#147
Optional Testsdupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux d173a24ec8ed 4.4.0-138-generic #164-Ubuntu SMP Tue Oct 2 17:16:02 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/testptch/patchprocess/precommit/personality/provided.sh
git revisionHBASE-21512 / f47f6df
mavenversion: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java1.8.0_181
findbugsv3.1.11
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-147/2/artifact/out/patch-unit-hbase-endpoint.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-147/2/testReport/
Max. process+thread count3044 (vs. ulimit of 10000)
modulesC: hbase-endpoint U: hbase-endpoint
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-147/2/console
Powered byApache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@Apache-HBase

Copy link
Copy Markdown

💔 -1 overall

VoteSubsystemRuntimeComment
0reexec287Docker mode activated.
_ Prechecks _
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ HBASE-21512 Compile Tests _
+1mvninstall285HBASE-21512 passed
+1compile23HBASE-21512 passed
+1checkstyle11HBASE-21512 passed
+1shadedjars263branch has no errors when building our shaded downstream artifacts.
+1findbugs42HBASE-21512 passed
+1javadoc14HBASE-21512 passed
_ Patch Compile Tests _
+1mvninstall268the patch passed
+1compile24the patch passed
+1javac24the patch passed
+1checkstyle10the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars252patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck501Patch does not cause any errors with Hadoop 2.7.4 or 3.0.0.
+1findbugs51the patch passed
+1javadoc12the patch passed
_ Other Tests _
-1unit565hbase-endpoint in the patch failed.
+1asflicense9The patch does not generate ASF License warnings.
2686
ReasonTests
Failed junit testshadoop.hbase.coprocessor.TestRegionServerCoprocessorEndpoint
SubsystemReport/Notes
DockerClient=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-147/1/artifact/out/Dockerfile
GITHUB PR#147
Optional Testsdupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux e32c37092806 4.4.0-137-generic #163-Ubuntu SMP Mon Sep 24 13:14:43 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/testptch/patchprocess/precommit/personality/provided.sh
git revisionHBASE-21512 / f47f6df
mavenversion: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java1.8.0_181
findbugsv3.1.11
unithttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-147/1/artifact/out/patch-unit-hbase-endpoint.txt
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-147/1/testReport/
Max. process+thread count2923 (vs. ulimit of 10000)
modulesC: hbase-endpoint U: hbase-endpoint
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-147/1/console
Powered byApache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.


private static Multiset<Integer> GROUPED_PRIORITY = ConcurrentHashMultiset.create();
private static AtomicInteger INT_PRIORITY = new AtomicInteger();
private static AtomicInteger TABLE_PRIORITY = new AtomicInteger();

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For what purpose, we need to remove the table priroirty counter ? don't understand here ...

Copy link
Copy Markdown
ContributorAuthor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We do not call the setPriority(TableName) method any more in async client, we will decide the priority outside the RpcController and then set with the setPriority(int) method. This is why we need to change the UT itself.

@Apache-HBase

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
0reexec47Docker mode activated.
_ Prechecks _
+1hbaseanti0Patch does not have any anti-patterns.
+1@author0The patch does not contain any @author tags.
+1test4tests0The patch appears to include 1 new or modified test files.
_ HBASE-21512 Compile Tests _
+1mvninstall264HBASE-21512 passed
+1compile25HBASE-21512 passed
+1checkstyle14HBASE-21512 passed
+1shadedjars291branch has no errors when building our shaded downstream artifacts.
+1findbugs38HBASE-21512 passed
+1javadoc14HBASE-21512 passed
_ Patch Compile Tests _
+1mvninstall248the patch passed
+1compile27the patch passed
+1javac27the patch passed
+1checkstyle14the patch passed
+1whitespace0The patch has no whitespace issues.
+1shadedjars272patch has no errors when building our shaded downstream artifacts.
+1hadoopcheck523Patch does not cause any errors with Hadoop 2.7.4 or 3.0.0.
+1findbugs44the patch passed
+1javadoc14the patch passed
_ Other Tests _
+1unit252hbase-endpoint in the patch passed.
+1asflicense11The patch does not generate ASF License warnings.
2168
SubsystemReport/Notes
DockerClient=17.05.0-ce Server=17.05.0-ce base: https://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-147/3/artifact/out/Dockerfile
GITHUB PR#147
Optional Testsdupname asflicense javac javadoc unit findbugs shadedjars hadoopcheck hbaseanti checkstyle compile
unameLinux f5a601f0921e 4.4.0-137-generic #163-Ubuntu SMP Mon Sep 24 13:14:43 UTC 2018 x86_64 GNU/Linux
Build toolmaven
Personality/testptch/patchprocess/precommit/personality/provided.sh
git revisionHBASE-21512 / d8fe1bb
mavenversion: Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T18:33:14Z)
Default Java1.8.0_181
findbugsv3.1.11
Test Resultshttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-147/3/testReport/
Max. process+thread count3000 (vs. ulimit of 10000)
modulesC: hbase-endpoint U: hbase-endpoint
Console outputhttps://builds.apache.org/job/HBase-PreCommit-GitHub-PR/job/PR-147/3/console
Powered byApache Yetus 0.9.0 http://yetus.apache.org

This message was automatically generated.

@Apache9
Apache9 merged commit 0aaf9d9 into apache:HBASE-21512Apr 16, 2019
This was referenced Jan 10, 2023
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@Apache9@Apache-HBase@openinx