You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2019/03/11 17:16:00 UTC

[jira] [Work logged] (HIVE-21425) Use DirectExecutorService for getInputSummary

     [ https://issues.apache.org/jira/browse/HIVE-21425?focusedWorklogId=211145&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-211145 ]

ASF GitHub Bot logged work on HIVE-21425:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 11/Mar/19 17:15
            Start Date: 11/Mar/19 17:15
    Worklog Time Spent: 10m 
      Work Description: BELUGABEHR commented on pull request #564: HIVE-21425: Use DirectExecutorService for getInputSummary
URL: https://github.com/apache/hive/pull/564
 
 
   
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Issue Time Tracking
-------------------

            Worklog Id:     (was: 211145)
            Time Spent: 10m
    Remaining Estimate: 0h

> Use DirectExecutorService for getInputSummary
> ---------------------------------------------
>
>                 Key: HIVE-21425
>                 URL: https://issues.apache.org/jira/browse/HIVE-21425
>             Project: Hive
>          Issue Type: Improvement
>          Components: HiveServer2
>    Affects Versions: 4.0.0, 3.2.0
>            Reporter: David Mollitor
>            Assignee: David Mollitor
>            Priority: Minor
>              Labels: pull-request-available
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> {code:java|title=Utilities.java}
>       int numExecutors = getMaxExecutorsForInputListing(ctx.getConf(), pathNeedProcess.size());
>       if (numExecutors > 1) {
>         LOG.info("Using {} threads for getContentSummary", numExecutors);
>         executor = Executors.newFixedThreadPool(numExecutors,
>                 new ThreadFactoryBuilder().setDaemon(true)
>                         .setNameFormat("Get-Input-Summary-%d").build());
>       } else {
>         executor = null;
>       }
> {code}
> https://github.com/apache/hive/blob/master/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java#L2482-L2490
> Instead of using a 'null' {{ExecutorService}}, use Guava's {{DirectExecutorService}} and remove special casing for a 'null' value.



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