From commits-return-102559-archive-asf-public=cust-asf.ponee.io@beam.apache.org Tue Jul 9 13:18:36 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 798FF180676 for ; Tue, 9 Jul 2019 15:18:36 +0200 (CEST) Received: (qmail 6238 invoked by uid 500); 9 Jul 2019 13:18:35 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 6192 invoked by uid 99); 9 Jul 2019 13:18:35 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jul 2019 13:18:35 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id ADD4B87AD7; Tue, 9 Jul 2019 13:18:35 +0000 (UTC) Date: Tue, 09 Jul 2019 13:18:51 +0000 To: "commits@beam.apache.org" Subject: [beam] 34/45: Fix javadoc of AggregatorCombiner MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: echauchot@apache.org In-Reply-To: <156267829511.7091.14138832347784517506@gitbox.apache.org> References: <156267829511.7091.14138832347784517506@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: beam X-Git-Refname: refs/heads/spark-runner_structured-streaming X-Git-Reftype: branch X-Git-Rev: 721b1d0ff63222567b8c16484bbf57c693385ffa X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20190709131835.ADD4B87AD7@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. echauchot pushed a commit to branch spark-runner_structured-streaming in repository https://gitbox.apache.org/repos/asf/beam.git commit 721b1d0ff63222567b8c16484bbf57c693385ffa Author: Etienne Chauchot AuthorDate: Thu Jul 4 11:27:28 2019 +0200 Fix javadoc of AggregatorCombiner --- .../structuredstreaming/translation/batch/AggregatorCombiner.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runners/spark/src/main/java/org/apache/beam/runners/spark/structuredstreaming/translation/batch/AggregatorCombiner.java b/runners/spark/src/main/java/org/apache/beam/runners/spark/structuredstreaming/translation/batch/AggregatorCombiner.java index c61d937..138e5c2 100644 --- a/runners/spark/src/main/java/org/apache/beam/runners/spark/structuredstreaming/translation/batch/AggregatorCombiner.java +++ b/runners/spark/src/main/java/org/apache/beam/runners/spark/structuredstreaming/translation/batch/AggregatorCombiner.java @@ -41,8 +41,7 @@ import org.apache.spark.sql.expressions.Aggregator; import org.joda.time.Instant; import scala.Tuple2; -/** An {@link Aggregator} for the Spark Batch Runner. It does not use ReduceFnRunner - * for windowMerging, because reduceFnRunner is based on state which requires a keyed collection. +/** An {@link Aggregator} for the Spark Batch Runner. * The accumulator is a {@code Iterable> because an {@code InputT} can be in multiple windows. So, when accumulating {@code InputT} values, we create one accumulator per input window. * */