[ 
https://issues.apache.org/jira/browse/HBASE-19908?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16348027#comment-16348027
 ] 

stack commented on HBASE-19908:
-------------------------------

Maybe we can increase the time limit a bit? 

Refguide has this:

http://hbase.apache.org/book.html#hbase.unittests

15s/50s/Everything else...

Funny. Says small tests should not execute minicluster.


Then HBaseClassTestRule has

    for (Class<?> c : categories[0].value()) {
      if (c == SmallTests.class) {
        // See SmallTests. Supposed to run 15 seconds.
        return 30;
      } else if (c == MediumTests.class) {
        // See MediumTests. Supposed to run 50 seconds.
        return 180;
      } else if (c == LargeTests.class) {
        // Let large tests have a ten minute timeout.
        return TimeUnit.MINUTES.toSeconds(10);


.... this is time for each individual method in the test suite (as I read it... 
not for whole class).

So, we've already gone up from the 15 seconds we talk of in the refguide?

Or, just up small tests to 60seconds? Leave the rest (i like the ten minutes 
total).

[~Apache9]



> TestCoprocessorShortCircuitRPC Timeout....
> ------------------------------------------
>
>                 Key: HBASE-19908
>                 URL: https://issues.apache.org/jira/browse/HBASE-19908
>             Project: HBase
>          Issue Type: Sub-task
>            Reporter: stack
>            Priority: Major
>         Attachments: HBASE-19908.master.001.patch
>
>
> Timedout in HBASE-19906
> Comparing a local run (16seconds total) to a timed out run up on jenkins, I 
> see it takes my local test 5 seconds to get the STOPPED server log line. On 
> jenkins in this timed out test it takes 30 seconds. Test is still running 
> when it is killed. Let me make it a medium test.
> https://builds.apache.org/view/H-L/view/HBase/job/PreCommit-HBASE-Build/lastCompletedBuild/testReport/org.apache.hadoop.hbase.coprocessor/TestCoprocessorShortCircuitRPC/org_apache_hadoop_hbase_coprocessor_TestCoprocessorShortCircuitRPC/



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to