You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Marta Kuczora (JIRA)" <ji...@apache.org> on 2017/07/11 09:45:00 UTC

[jira] [Created] (HIVE-17072) Make the parallelized timeout configurable in BeeLine tests

Marta Kuczora created HIVE-17072:
------------------------------------

             Summary: Make the parallelized timeout configurable in BeeLine tests
                 Key: HIVE-17072
                 URL: https://issues.apache.org/jira/browse/HIVE-17072
             Project: Hive
          Issue Type: Improvement
          Components: Testing Infrastructure
            Reporter: Marta Kuczora
            Assignee: Marta Kuczora
            Priority: Minor


When running the BeeLine tests parallel, the timeout is hardcoded in the Parallelized.java:
{noformat}
    @Override
    public void finished() {
      executor.shutdown();
      try {
        executor.awaitTermination(10, TimeUnit.MINUTES);
      } catch (InterruptedException exc) {
        throw new RuntimeException(exc);
      }
    }
{noformat}
It would be better to make it configurable.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)