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

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

                Author: ASF GitHub Bot
            Created on: 25/Jun/19 15:09
            Start Date: 25/Jun/19 15:09
    Worklog Time Spent: 10m 
      Work Description: asfgit commented on pull request #671: HIVE-21857
URL: https://github.com/apache/hive/pull/671
 
 
   
 
----------------------------------------------------------------
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:
us...@infra.apache.org


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

    Worklog Id:     (was: 266773)
    Time Spent: 1h 20m  (was: 1h 10m)

> Sort conditions in a filter predicate to accelerate query processing
> --------------------------------------------------------------------
>
>                 Key: HIVE-21857
>                 URL: https://issues.apache.org/jira/browse/HIVE-21857
>             Project: Hive
>          Issue Type: New Feature
>          Components: CBO
>            Reporter: Jesus Camacho Rodriguez
>            Assignee: Jesus Camacho Rodriguez
>            Priority: Major
>              Labels: pull-request-available
>         Attachments: HIVE-21857.01.patch, HIVE-21857.02.patch, 
> HIVE-21857.03.patch, HIVE-21857.04.patch, HIVE-21857.05.patch, 
> HIVE-21857.06.patch, HIVE-21857.07.patch, HIVE-21857.08.patch
>
>          Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> Following approach similar to 
> http://db.cs.berkeley.edu/jmh/miscpapers/sigmod93.pdf .
> To reorder predicates in AND conditions, we could rank each of elements in 
> the clauses in increasing order based on following formula:
> {code}
> rank = (selectivity - 1) / cost per tuple
> {code}
> Similarly, for OR conditions:
> {code}
> rank = (-selectivity) / cost per tuple
> {code}
> Selectivity can be computed with FilterSelectivityEstimator. For cost per 
> tuple, we will need to come up with some heuristic based on how expensive is 
> the evaluation of the functions contained in that predicate. Custom UDFs 
> could be annotated.



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

Reply via email to