Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 18B9B200C26 for ; Fri, 10 Feb 2017 09:25:50 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 15738160B5C; Fri, 10 Feb 2017 08:25:50 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 432F2160B5B for ; Fri, 10 Feb 2017 09:25:49 +0100 (CET) Received: (qmail 79517 invoked by uid 500); 10 Feb 2017 08:25:48 -0000 Mailing-List: contact issues-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list issues@hive.apache.org Received: (qmail 79508 invoked by uid 99); 10 Feb 2017 08:25:48 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Feb 2017 08:25:48 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 18011C05D7 for ; Fri, 10 Feb 2017 08:25:48 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.199 X-Spam-Level: X-Spam-Status: No, score=-1.199 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id 3qt6aOzUqshp for ; Fri, 10 Feb 2017 08:25:46 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 78E6B5F342 for ; Fri, 10 Feb 2017 08:25:46 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 4E769E031F for ; Fri, 10 Feb 2017 08:25:43 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 4346521D66 for ; Fri, 10 Feb 2017 08:25:42 +0000 (UTC) Date: Fri, 10 Feb 2017 08:25:42 +0000 (UTC) From: "Chaozhong Yang (JIRA)" To: issues@hive.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Comment Edited] (HIVE-15872) The PERCENTILE UDAF does not work with empty set MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Fri, 10 Feb 2017 08:25:50 -0000 [ https://issues.apache.org/jira/browse/HIVE-15872?page=3Dcom.atlassian= .jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D1586= 0908#comment-15860908 ]=20 Chaozhong Yang edited comment on HIVE-15872 at 2/10/17 8:25 AM: ---------------------------------------------------------------- According to SQL-standard, percentile_approx should return null for zero el= ements rather than throws IndexOutOfBoundsException in reduce. @Override public Object terminate(AggregationBuffer agg) throws HiveException { PercentileAggBuf myagg =3D (PercentileAggBuf) agg; if (myagg.histogram.getUsedBins() < 1) { // SQL standard - return nul= l for zero elements return null; } else { assert(myagg.quantiles !=3D null); return new DoubleWritable(myagg.histogram.quantile(myagg.quantiles[= 0])); } } was (Author: debugger87): According to SQL-standard, percentile_approx should return null for zero el= ements rather than throws IndexOutOfBoundsException in reduce. @Override public Object terminate(AggregationBuffer agg) throws HiveException { PercentileAggBuf myagg =3D (PercentileAggBuf) agg; if (myagg.histogram.getUsedBins() < 1) { // SQL standard - return nul= l for zero elements return null; } else { assert(myagg.quantiles !=3D null); return new DoubleWritable(myagg.histogram.quantile(myagg.quantiles[= 0])); } } > The PERCENTILE UDAF does not work with empty set > ------------------------------------------------ > > Key: HIVE-15872 > URL: https://issues.apache.org/jira/browse/HIVE-15872 > Project: Hive > Issue Type: Bug > Components: UDF > Reporter: Chaozhong Yang > Assignee: Chaozhong Yang > Fix For: 2.1.2 > > Attachments: HIVE-15872.patch > > > 1. Original SQL: > select > percentile_approx( > column0, > array(0.50, 0.70, 0.90, 0.95, 0.99) > ) > from > my_table > where > date =3D '20170207' > and column1 =3D 'value1' > and column2 =3D 'value2' > and column3 =3D 'value3' > and column4 =3D 'value4' > and column5 =3D 'value5' > 2. Exception StackTrace: > Error: java.lang.RuntimeException: org.apache.hadoop.hive.ql.metadata.Hiv= eException: Hive Runtime Error while processing row (tag=3D0) {"key":{},"va= lue":{"_col0":[0.0,10000.0]}} at org.apache.hadoop.hive.ql.exec.mr.ExecRedu= cer.reduce(ExecReducer.java:256) at org.apache.hadoop.mapred.ReduceTask.run= OldReducer(ReduceTask.java:453) at org.apache.hadoop.mapred.ReduceTask.run(= ReduceTask.java:401) at org.apache.hadoop.mapred.YarnChild$2.run(YarnChild.= java:163) at java.security.AccessController.doPrivileged(Native Method) at = javax.security.auth.Subject.doAs(Subject.java:422) at org.apache.hadoop.sec= urity.UserGroupInformation.doAs(UserGroupInformation.java:1671) at org.apac= he.hadoop.mapred.YarnChild.main(YarnChild.java:158) Caused by: org.apache.h= adoop.hive.ql.metadata.HiveException: Hive Runtime Error while processing r= ow (tag=3D0) {"key":{},"value":{"_col0":[0.0,10000.0]}} at org.apache.hadoo= p.hive.ql.exec.mr.ExecReducer.reduce(ExecReducer.java:244) ... 7 more Cause= d by: org.apache.hadoop.hive.ql.metadata.HiveException: java.lang.IndexOutO= fBoundsException: Index: 2, Size: 2 at org.apache.hadoop.hive.ql.exec.Group= ByOperator.process(GroupByOperator.java:766) at org.apache.hadoop.hive.ql.e= xec.mr.ExecReducer.reduce(ExecReducer.java:235) ... 7 more Caused by: java.= lang.IndexOutOfBoundsException: Index: 2, Size: 2 at java.util.ArrayList.ra= ngeCheck(ArrayList.java:653) at java.util.ArrayList.get(ArrayList.java:429)= at org.apache.hadoop.hive.ql.udf.generic.NumericHistogram.merge(NumericHis= togram.java:134) at org.apache.hadoop.hive.ql.udf.generic.GenericUDAFPercen= tileApprox$GenericUDAFPercentileApproxEvaluator.merge(GenericUDAFPercentile= Approx.java:318) at org.apache.hadoop.hive.ql.udf.generic.GenericUDAFEvalua= tor.aggregate(GenericUDAFEvaluator.java:188) at org.apache.hadoop.hive.ql.e= xec.GroupByOperator.updateAggregations(GroupByOperator.java:612) at org.apa= che.hadoop.hive.ql.exec.GroupByOperator.processAggr(GroupByOperator.java:85= 1) at org.apache.hadoop.hive.ql.exec.GroupByOperator.processKey(GroupByOper= ator.java:695) at org.apache.hadoop.hive.ql.exec.GroupByOperator.process(Gr= oupByOperator.java:761) ... 8 more > 3. review data: > select > column0 > from > my_table > where > date =3D '20170207' > and column1 =3D 'value1' > and column2 =3D 'value2' > and column3 =3D 'value3' > and column4 =3D 'value4' > and column5 =3D 'value5' > After run this sql, we found the result is NULL. > 4. what's the meaning of [0.0, 10000.0] in stacktrace? > In GenericUDAFPercentileApproxEvaluator, the method `merge` should proces= s an ArrayList which name is partialHistogram. Normally, the basic structur= e of partialHistogram is [npercentiles, percentile0, percentile1..., nbins,= bin0.x, bin0.y, bin1.x, bin1.y,...]. However, if we are process NULL(empty= set) column values, the partialHistoram will only contains [npercentiles(0= ), nbins(10000)]. That's the reason why the stacktrace shows a strange row = data: {"key":{},"value":{"_col0":[0.0,10000.0]}} > Before we call histogram#merge (on-line hisgoram algorithm from paper: ht= tp://www.jmlr.org/papers/volume11/ben-haim10a/ben-haim10a.pdf ), the partia= lHistogram should remove elements which store percentiles like `partialHist= ogram.subList(0, nquantiles+1).clear();`. In the case of empty set, Generic= UDAFPercentileApproxEvaluator will not remove percentiles. Consequently, Nu= mericHistogram will merge a list which contains only 2 elements([0, 10000.0= ]) and throws IndexOutOfBoundsException.=20 -- This message was sent by Atlassian JIRA (v6.3.15#6346)