[
https://issues.apache.org/jira/browse/HBASE-13974?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14603385#comment-14603385
]
Hudson commented on HBASE-13974:
--------------------------------
FAILURE: Integrated in HBase-TRUNK #6608 (See
[https://builds.apache.org/job/HBase-TRUNK/6608/])
HBASE-13974 TestRateLimiter#testFixedIntervalResourceAvailability may fail
(Guanghao Zhang) (tedyu: rev f046c4b043810beaeb509d1ef1a3ac503f6ade0b)
* hbase-server/src/test/java/org/apache/hadoop/hbase/quotas/TestRateLimiter.java
> TestRateLimiter#testFixedIntervalResourceAvailability may fail
> --------------------------------------------------------------
>
> Key: HBASE-13974
> URL: https://issues.apache.org/jira/browse/HBASE-13974
> Project: HBase
> Issue Type: Bug
> Components: test
> Affects Versions: 2.0.0
> Reporter: Guanghao Zhang
> Assignee: Guanghao Zhang
> Priority: Minor
> Fix For: 2.0.0, 1.2.0, 1.1.2, 1.3.0
>
> Attachments: HBASE-13974.patch
>
>
> Stacktrace
> java.lang.AssertionError: null
> at org.junit.Assert.fail(Assert.java:86)
> at org.junit.Assert.assertTrue(Assert.java:41)
> at org.junit.Assert.assertFalse(Assert.java:64)
> at org.junit.Assert.assertFalse(Assert.java:74)
> at
> org.apache.hadoop.hbase.quotas.TestRateLimiter.testFixedIntervalResourceAvailability(TestRateLimiter.java:151)
> The code of this ut.
> {code}
> RateLimiter limiter = new FixedIntervalRateLimiter();
> limiter.set(10, TimeUnit.MILLISECONDS);
>
> assertTrue(limiter.canExecute(10));
> limiter.consume(3);
> assertEquals(7, limiter.getAvailable());
> assertFalse(limiter.canExecute(10));
> {code}
> The limiter will refill by MILLISECONDS. So if this unit test execute slowly
> or hang by others over 1 ms, the assertFalse(limiter.canExecute(10)) will
> fail.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)