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 034CD200C65 for ; Sat, 29 Apr 2017 18:48:27 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id F0DC9160BB7; Sat, 29 Apr 2017 16:48:26 +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 4397B160B98 for ; Sat, 29 Apr 2017 18:48:26 +0200 (CEST) Received: (qmail 9377 invoked by uid 500); 29 Apr 2017 16:48:25 -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 9368 invoked by uid 99); 29 Apr 2017 16:48:25 -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; Sat, 29 Apr 2017 16:48:25 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 52BD9E01BC; Sat, 29 Apr 2017 16:48:25 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: lcwik@apache.org To: commits@beam.apache.org Date: Sat, 29 Apr 2017 16:48:25 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] beam git commit: [BEAM-2098] Walkthrough URL in example code Javadoc is 404 not found archived-at: Sat, 29 Apr 2017 16:48:27 -0000 Repository: beam Updated Branches: refs/heads/master f29444bf8 -> be883666f [BEAM-2098] Walkthrough URL in example code Javadoc is 404 not found Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/15802de1 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/15802de1 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/15802de1 Branch: refs/heads/master Commit: 15802de1708df27d30f30c8fb6f1606fadb1ac26 Parents: f29444b Author: Peter Gergo Barna Authored: Thu Apr 27 18:30:56 2017 +0200 Committer: Lukasz Cwik Committed: Sat Apr 29 09:47:47 2017 -0700 ---------------------------------------------------------------------- .../java/src/main/java/org/apache/beam/examples/WordCount.java | 4 ++-- .../java/org/apache/beam/examples/cookbook/TriggerExample.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/15802de1/examples/java/src/main/java/org/apache/beam/examples/WordCount.java ---------------------------------------------------------------------- diff --git a/examples/java/src/main/java/org/apache/beam/examples/WordCount.java b/examples/java/src/main/java/org/apache/beam/examples/WordCount.java index 58720b8..b64d2c1 100644 --- a/examples/java/src/main/java/org/apache/beam/examples/WordCount.java +++ b/examples/java/src/main/java/org/apache/beam/examples/WordCount.java @@ -45,8 +45,8 @@ import org.apache.beam.sdk.values.PCollection; * pipeline, for introduction of additional concepts. * *

For a detailed walkthrough of this example, see - * - * http://beam.apache.org/use/walkthroughs/ + * + * https://beam.apache.org/get-started/wordcount-example/ * * *

Basic concepts, also in the MinimalWordCount example: http://git-wip-us.apache.org/repos/asf/beam/blob/15802de1/examples/java/src/main/java/org/apache/beam/examples/cookbook/TriggerExample.java ---------------------------------------------------------------------- diff --git a/examples/java/src/main/java/org/apache/beam/examples/cookbook/TriggerExample.java b/examples/java/src/main/java/org/apache/beam/examples/cookbook/TriggerExample.java index 0b5d9ad..49d5eda 100644 --- a/examples/java/src/main/java/org/apache/beam/examples/cookbook/TriggerExample.java +++ b/examples/java/src/main/java/org/apache/beam/examples/cookbook/TriggerExample.java @@ -75,8 +75,8 @@ import org.joda.time.Instant; * *

Before running this example, it will be useful to familiarize yourself with Beam triggers * and understand the concept of 'late data', - * See: - * http://beam.apache.org/use/walkthroughs/ + * See: + * https://beam.apache.org/documentation/programming-guide/#triggers * *

The example is configured to use the default BigQuery table from the example common package * (there are no defaults for a general Beam pipeline).