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 4889C200C7F for ; Wed, 24 May 2017 16:05:09 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 473A2160B9C; Wed, 24 May 2017 14:05:09 +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 8D499160BB4 for ; Wed, 24 May 2017 16:05:08 +0200 (CEST) Received: (qmail 45080 invoked by uid 500); 24 May 2017 14:05:07 -0000 Mailing-List: contact issues-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list issues@flink.apache.org Received: (qmail 45071 invoked by uid 99); 24 May 2017 14:05:07 -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; Wed, 24 May 2017 14:05:07 +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 607BFC76F3 for ; Wed, 24 May 2017 14:05:07 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] 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 0TrJ3lt93ldt for ; Wed, 24 May 2017 14:05:05 +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 06E295FD7D for ; Wed, 24 May 2017 14:05:05 +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 7BD75E0A64 for ; Wed, 24 May 2017 14:05:04 +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 3474C21B57 for ; Wed, 24 May 2017 14:05:04 +0000 (UTC) Date: Wed, 24 May 2017 14:05:04 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@flink.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FLINK-6650) Fix Non-windowed group-aggregate error when using append-table mode. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Wed, 24 May 2017 14:05:09 -0000 [ https://issues.apache.org/jira/browse/FLINK-6650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16022936#comment-16022936 ] ASF GitHub Bot commented on FLINK-6650: --------------------------------------- Github user asfgit closed the pull request at: https://github.com/apache/flink/pull/3958 > Fix Non-windowed group-aggregate error when using append-table mode. > -------------------------------------------------------------------- > > Key: FLINK-6650 > URL: https://issues.apache.org/jira/browse/FLINK-6650 > Project: Flink > Issue Type: Sub-task > Components: Table API & SQL > Reporter: sunjincheng > Assignee: sunjincheng > > When I test Non-windowed group-aggregate with {{stream.toTable(tEnv, 'a, 'b, 'c).select('a.sum, weightAvgFun('a, 'b)).toAppendStream[Row].addSink(new StreamITCase.StringSink)}}, I got the error as follows: > {code} > org.apache.flink.table.api.TableException: Table is not an append-only table. Output needs to handle update and delete changes. > at org.apache.flink.table.api.StreamTableEnvironment.translate(StreamTableEnvironment.scala:631) > at org.apache.flink.table.api.StreamTableEnvironment.translate(StreamTableEnvironment.scala:607) > at org.apache.flink.table.api.scala.StreamTableEnvironment.toAppendStream(StreamTableEnvironment.scala:219) > at org.apache.flink.table.api.scala.StreamTableEnvironment.toAppendStream(StreamTableEnvironment.scala:195) > at org.apache.flink.table.api.scala.TableConversions.toAppendStream(TableConversions.scala:121) > {code} > The reason is {{DataStreamGroupAggregate#producesUpdates}} as follows: > {code} > override def producesUpdates = true > {code} > I think in the view of the user, what user want are(for example): > Data: > {code} > val data = List( > (1L, 1, "Hello"), > (2L, 2, "Hello"), > (3L, 3, "Hello"), > (4L, 4, "Hello"), > (5L, 5, "Hello"), > (6L, 6, "Hello"), > (7L, 7, "Hello World"), > (8L, 8, "Hello World"), > (20L, 20, "Hello World")) > {code} > * Case1: > TableAPI > {code} > stream.toTable(tEnv, 'a, 'b, 'c).select('a.sum) > .toAppendStream[Row].addSink(new StreamITCase.StringSink) > {code} > Result > {code} > // StringSink process datas: > 1 > 3 > 6 > 10 > 15 > 21 > 28 > 36 > 56 > // Last output datas: > 1 > 3 > 6 > 10 > 15 > 21 > 28 > 36 > 56 > {code} > * Case 2: > TableAPI > {code} > stream.toTable(tEnv, 'a, 'b, 'c).select('a.sum).toRetractStream[Row] > .addSink(new StreamITCase.RetractingSink) > {code} > Result: > {code} > // RetractingSink process datas: > (true,1) > (false,1) > (true,3) > (false,3) > (true,6) > (false,6) > (true,10) > (false,10) > (true,15) > (false,15) > (true,21) > (false,21) > (true,28) > (false,28) > (true,36) > (false,36) > (true,56) > // Last output data: > 56 > {code} > In fact about #Case 1,we can using unbounded OVER windows, as follows: > TableAPI > {code} > stream.toTable(tEnv, 'a, 'b, 'c, 'proctime.proctime) > .window(Over orderBy 'proctime preceding UNBOUNDED_ROW as 'w) > .select('a.sum over 'w) > .toAppendStream[Row].addSink(new StreamITCase.StringSink) > {code} > Result > {code} > Same as #Case1 > {code} > But after the [FLINK-6649 | https://issues.apache.org/jira/browse/FLINK-6649] OVER can not express the #Case1 with earlyFiring. > So I still think that Non-windowed group-aggregate not always update-table, user can decide which mode to use. > Is there any drawback to this improvement? Welcome anyone feedback? -- This message was sent by Atlassian JIRA (v6.3.15#6346)