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 5FF2D200B64 for ; Tue, 2 Aug 2016 22:04:12 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 5E7F6160AB2; Tue, 2 Aug 2016 20:04:12 +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 1FCB4160AAC for ; Tue, 2 Aug 2016 22:04:09 +0200 (CEST) Received: (qmail 43102 invoked by uid 500); 2 Aug 2016 20:04:09 -0000 Mailing-List: contact commits-help@beam.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.incubator.apache.org Delivered-To: mailing list commits@beam.incubator.apache.org Received: (qmail 43078 invoked by uid 99); 2 Aug 2016 20:04:09 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Aug 2016 20:04:09 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id ACC181A60B6 for ; Tue, 2 Aug 2016 20:04:08 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -3.446 X-Spam-Level: X-Spam-Status: No, score=-3.446 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, KAM_MANYCOMMENTS=1.2, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id A8UWTuU4eGV5 for ; Tue, 2 Aug 2016 20:03:50 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 6716060E4E for ; Tue, 2 Aug 2016 20:03:48 +0000 (UTC) Received: (qmail 41368 invoked by uid 99); 2 Aug 2016 20:03:47 -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, 02 Aug 2016 20:03:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 812F7EEB00; Tue, 2 Aug 2016 20:03:47 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kenn@apache.org To: commits@beam.incubator.apache.org Date: Tue, 02 Aug 2016 20:04:02 -0000 Message-Id: <67c9949bd53e4f89994f7009cbc0b40e@git.apache.org> In-Reply-To: <4dac88767984489d802aa54016a31f59@git.apache.org> References: <4dac88767984489d802aa54016a31f59@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [16/51] [partial] incubator-beam-site git commit: Regenerate content after merge of #32 archived-at: Tue, 02 Aug 2016 20:04:12 -0000 http://git-wip-us.apache.org/repos/asf/incubator-beam-site/blob/505f6412/content/javadoc/0.1.0-incubating/org/apache/beam/runners/direct/InMemoryWatermarkManager.html ---------------------------------------------------------------------- diff --git a/content/javadoc/0.1.0-incubating/org/apache/beam/runners/direct/InMemoryWatermarkManager.html b/content/javadoc/0.1.0-incubating/org/apache/beam/runners/direct/InMemoryWatermarkManager.html deleted file mode 100644 index 86a3c63..0000000 --- a/content/javadoc/0.1.0-incubating/org/apache/beam/runners/direct/InMemoryWatermarkManager.html +++ /dev/null @@ -1,442 +0,0 @@ - - - - - - -InMemoryWatermarkManager (Apache Beam SDK for Java 0.1.0-incubating API) - - - - - - - - - - - - -
-
org.apache.beam.runners.direct
-

Class InMemoryWatermarkManager

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.apache.beam.runners.direct.InMemoryWatermarkManager
    • -
    -
  • -
-
-
    -
  • -
    -
    -
    public class InMemoryWatermarkManager
    -extends Object
    -
    Manages watermarks of PCollections and input and output watermarks of - AppliedPTransforms to provide event-time and completion tracking for - in-memory execution. InMemoryWatermarkManager is designed to update and return a - consistent view of watermarks in the presence of concurrent updates. - -

    An InMemoryWatermarkManager is provided with the collection of root - AppliedPTransforms and a map of PCollections to - all the AppliedPTransforms that consume them at construction time. - -

    Whenever a root transform produces elements, the - InMemoryWatermarkManager is provided with the produced elements and the output watermark - of the producing transform. The - watermark manager is responsible for computing the watermarks - of all transforms that consume one or more - PCollections. - -

    Whenever a non-root AppliedPTransform finishes processing one or more in-flight - elements (referred to as the input bundle), the following occurs - atomically: -

      -
    • All of the in-flight elements are removed from the collection of pending elements for the - AppliedPTransform.
    • -
    • All of the elements produced by the AppliedPTransform are added to the collection - of pending elements for each AppliedPTransform that consumes them.
    • -
    • The input watermark for the AppliedPTransform becomes the maximum value of -
        -
      • the previous input watermark
      • -
      • the minimum of -
          -
        • the timestamps of all currently pending elements
        • -
        • all input PCollection watermarks
        • -
        -
      • -
      -
    • -
    • The output watermark for the AppliedPTransform becomes the maximum of -
        -
      • the previous output watermark
      • -
      • the minimum of -
          -
        • the current input watermark
        • -
        • the current watermark holds
        • -
        -
      • -
      -
    • -
    • The watermark of the output PCollection can be advanced to the output watermark of - the AppliedPTransform
    • -
    • The watermark of all downstream AppliedPTransforms can be - advanced.
    • -
    - -

    The watermark of a PCollection is equal to the output watermark of the - AppliedPTransform that produces it. - -

    The watermarks for a PTransform are updated as follows when output is committed:

    - Watermark_In'  = MAX(Watermark_In, MIN(U(TS_Pending), U(Watermark_InputPCollection)))
    - Watermark_Out' = MAX(Watermark_Out, MIN(Watermark_In', U(StateHold)))
    - Watermark_PCollection = Watermark_Out_ProducingPTransform
    - 
    -
  • -
-
-
- -
-
- -
-
- - - - - -

Copyright © 2016 The Apache Software Foundation. All rights reserved.

- - http://git-wip-us.apache.org/repos/asf/incubator-beam-site/blob/505f6412/content/javadoc/0.1.0-incubating/org/apache/beam/runners/direct/InProcessBundleOutputManager.html ---------------------------------------------------------------------- diff --git a/content/javadoc/0.1.0-incubating/org/apache/beam/runners/direct/InProcessBundleOutputManager.html b/content/javadoc/0.1.0-incubating/org/apache/beam/runners/direct/InProcessBundleOutputManager.html deleted file mode 100644 index da149dc..0000000 --- a/content/javadoc/0.1.0-incubating/org/apache/beam/runners/direct/InProcessBundleOutputManager.html +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - -InProcessBundleOutputManager (Apache Beam SDK for Java 0.1.0-incubating API) - - - - - - - - - - - - -
-
org.apache.beam.runners.direct
-

Class InProcessBundleOutputManager

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.apache.beam.runners.direct.InProcessBundleOutputManager
    • -
    -
  • -
-
- -
-
- -
-
- -
-
- - - - - -

Copyright © 2016 The Apache Software Foundation. All rights reserved.

- - http://git-wip-us.apache.org/repos/asf/incubator-beam-site/blob/505f6412/content/javadoc/0.1.0-incubating/org/apache/beam/runners/direct/InProcessPipelineOptions.html ---------------------------------------------------------------------- diff --git a/content/javadoc/0.1.0-incubating/org/apache/beam/runners/direct/InProcessPipelineOptions.html b/content/javadoc/0.1.0-incubating/org/apache/beam/runners/direct/InProcessPipelineOptions.html deleted file mode 100644 index 1fab964..0000000 --- a/content/javadoc/0.1.0-incubating/org/apache/beam/runners/direct/InProcessPipelineOptions.html +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - -InProcessPipelineOptions (Apache Beam SDK for Java 0.1.0-incubating API) - - - - - - - - - - - - -
-
org.apache.beam.runners.direct
-

Interface InProcessPipelineOptions

-
-
-
- -
-
- -
-
- -
-
- - - - - -

Copyright © 2016 The Apache Software Foundation. All rights reserved.

- -