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 72121200B9A for ; Fri, 23 Sep 2016 08:07:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 70895160AE0; Fri, 23 Sep 2016 06:07:22 +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 AC814160AAD for ; Fri, 23 Sep 2016 08:07:21 +0200 (CEST) Received: (qmail 55730 invoked by uid 500); 23 Sep 2016 06:07:20 -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 55716 invoked by uid 99); 23 Sep 2016 06:07:20 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Sep 2016 06:07:20 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id A03022C2A60 for ; Fri, 23 Sep 2016 06:07:20 +0000 (UTC) Date: Fri, 23 Sep 2016 06:07:20 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@flink.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FLINK-4624) Gelly's summarization algorithm cannot deal with null vertex group values MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Fri, 23 Sep 2016 06:07:22 -0000 [ https://issues.apache.org/jira/browse/FLINK-4624?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15515524#comment-15515524 ] ASF GitHub Bot commented on FLINK-4624: --------------------------------------- Github user s1ck commented on a diff in the pull request: https://github.com/apache/flink/pull/2527#discussion_r80186110 --- Diff: flink-libraries/flink-gelly/src/main/java/org/apache/flink/graph/library/Summarization.java --- @@ -226,11 +247,15 @@ public void setGroupRepresentativeId(K groupRepresentativeId) { } public VGV getVertexGroupValue() { - return f2; + return f2.isLeft() ? f2.left() : null; } public void setVertexGroupValue(VGV vertexGroupValue) { - f2 = vertexGroupValue; + if (vertexGroupValue == null) { + f2 = new Either.Right<>(NullValue.getInstance()); --- End diff -- An instance of `VertexGroupItem` is reused in the `VertexGroupReducer`. Here the setter is implicitly only called once in the open method. So I thought reusing the new Right<>(NullValue.getInstance()) wouldn't be a benefit. > Gelly's summarization algorithm cannot deal with null vertex group values > ------------------------------------------------------------------------- > > Key: FLINK-4624 > URL: https://issues.apache.org/jira/browse/FLINK-4624 > Project: Flink > Issue Type: Bug > Components: Gelly > Reporter: Till Rohrmann > Assignee: Martin Junghanns > Fix For: 1.2.0 > > > Gelly's {{Summarization}} algorithm cannot handle null values in the `VertexGroupItem.f2`. This behaviour is hidden by using Strings as a vertex value in the {{SummarizationITCase}}, because the {{StringSerializer}} can handle null values. -- This message was sent by Atlassian JIRA (v6.3.4#6332)