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

ASF subversion and git services commented on KYLIN-4327:
--------------------------------------------------------

Commit 7ea101db55d9524260ad8d9e63f2020f9ab32f71 in kylin's branch 
refs/heads/3.0.x from Yifei.Wu
[ https://gitbox.apache.org/repos/asf?p=kylin.git;h=7ea101d ]

KYLIN-4327 TOPN Comparator may violate its general contract


> TOPN Comparator may  violate its general contract
> -------------------------------------------------
>
>                 Key: KYLIN-4327
>                 URL: https://issues.apache.org/jira/browse/KYLIN-4327
>             Project: Kylin
>          Issue Type: Improvement
>            Reporter: Yifei Wu
>            Assignee: Yifei Wu
>            Priority: Minor
>             Fix For: v2.6.5, v3.1.0, v3.0.1
>
>
> in current TopN, it  should save top(k) result and keep it in double value, 
> just like this:
> ```
> public class Counter<T> implements Serializable{
>     ...
>     protected T item;
>     protected double count;
>     ...
> }
> ```
> But its Comparator method use  "=="  directly to compare the result, it may 
> cause the error  "*violate its general contract*" when calling it.
> ```
>           private static final Comparator ASC_COMPARATOR = new 
> Comparator<Counter>() {
>         @Override
>         public int compare(Counter o1, Counter o2) {
>             return o1.getCount() > o2.getCount() ? 1 : o1.getCount() == 
> o2.getCount() ? 0 : -1;
>         }
>     };
> ```



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to