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 6ACEE200C3F for ; Tue, 7 Mar 2017 18:06:32 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 67DFB160B65; Tue, 7 Mar 2017 17:06:32 +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 B8A8D160B68 for ; Tue, 7 Mar 2017 18:06:31 +0100 (CET) Received: (qmail 28800 invoked by uid 500); 7 Mar 2017 17:06:31 -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 28673 invoked by uid 99); 7 Mar 2017 17:06:30 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Mar 2017 17:06:30 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C4DD4DFF39; Tue, 7 Mar 2017 17:06:30 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: davor@apache.org To: commits@beam.apache.org Date: Tue, 07 Mar 2017 17:06:31 -0000 Message-Id: <368743ec8b114e0ba1729f49474f1cdc@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/3] beam-site git commit: Regenerate website archived-at: Tue, 07 Mar 2017 17:06:32 -0000 Regenerate website Project: http://git-wip-us.apache.org/repos/asf/beam-site/repo Commit: http://git-wip-us.apache.org/repos/asf/beam-site/commit/c0f78d7a Tree: http://git-wip-us.apache.org/repos/asf/beam-site/tree/c0f78d7a Diff: http://git-wip-us.apache.org/repos/asf/beam-site/diff/c0f78d7a Branch: refs/heads/asf-site Commit: c0f78d7a3b45047671ef85697cfadbf97113660e Parents: f2a4d29 Author: Davor Bonaci Authored: Tue Mar 7 09:06:03 2017 -0800 Committer: Davor Bonaci Committed: Tue Mar 7 09:06:03 2017 -0800 ---------------------------------------------------------------------- content/documentation/programming-guide/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam-site/blob/c0f78d7a/content/documentation/programming-guide/index.html ---------------------------------------------------------------------- diff --git a/content/documentation/programming-guide/index.html b/content/documentation/programming-guide/index.html index a6403e0..0752642 100644 --- a/content/documentation/programming-guide/index.html +++ b/content/documentation/programming-guide/index.html @@ -464,7 +464,7 @@

In such roles, ParDo is a common intermediate step in a pipeline. You might use it to extract certain fields from a set of raw input records, or convert raw input into a different format; you might also use ParDo to convert processed data into a format suitable for output, like database table rows or printable strings.

-

When you apply a ParDo transform, you’ll need to provide user code in the form of a DoFn object. DoFn is a Beam SDK class that defines a distribured processing function.

+

When you apply a ParDo transform, you’ll need to provide user code in the form of a DoFn object. DoFn is a Beam SDK class that defines a distributed processing function.

When you create a subclass of DoFn, note that your subclass should adhere to the General Requirements for Writing User Code for Beam Transforms.