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 369D7200BF7 for ; Mon, 9 Jan 2017 23:31:43 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 351D8160B3E; Mon, 9 Jan 2017 22:31:43 +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 631BF160B63 for ; Mon, 9 Jan 2017 23:31:40 +0100 (CET) Received: (qmail 28808 invoked by uid 500); 9 Jan 2017 22:31:39 -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 27584 invoked by uid 99); 9 Jan 2017 22:31:37 -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; Mon, 09 Jan 2017 22:31:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CE110DFC60; Mon, 9 Jan 2017 22:31:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davor@apache.org To: commits@beam.apache.org Date: Mon, 09 Jan 2017 22:32:18 -0000 Message-Id: <286e3545848944ee8f6c9e822682736a@git.apache.org> In-Reply-To: <84111c2e83cc404e92f8e292fe1e5eeb@git.apache.org> References: <84111c2e83cc404e92f8e292fe1e5eeb@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [43/52] [partial] beam-site git commit: Publish Javadoc for version 0.4.0 archived-at: Mon, 09 Jan 2017 22:31:43 -0000 http://git-wip-us.apache.org/repos/asf/beam-site/blob/de6a0417/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/ApexYarnLauncher.html ---------------------------------------------------------------------- diff --git a/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/ApexYarnLauncher.html b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/ApexYarnLauncher.html new file mode 100644 index 0000000..1e510f6 --- /dev/null +++ b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/ApexYarnLauncher.html @@ -0,0 +1,405 @@ + + + + + + +ApexYarnLauncher (Apache Beam SDK for Java, version 0.4.0) + + + + + + + + + + + + +
+
org.apache.beam.runners.apex
+

Class ApexYarnLauncher

+
+
+ +
+
    +
  • +
    +
    +
    public class ApexYarnLauncher
    +extends Object
    +
    Proxy to launch the YARN application through the hadoop script to run in the + pre-configured environment (class path, configuration, native libraries etc.). + +

    The proxy takes the DAG and communicates with the Hadoop services to launch + it on the cluster.

    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ApexYarnLauncher

        +
        public ApexYarnLauncher()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        launchApp

        +
        public org.apache.apex.api.Launcher.AppHandle launchApp(com.datatorrent.api.StreamingApplication app)
        +                                                 throws IOException
        +
        +
        Throws:
        +
        IOException
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getYarnDeployDependencies

        +
        public static List<File> getYarnDeployDependencies()
        +                                            throws IOException
        +
        From the current classpath, find the jar files that need to be deployed + with the application to run on YARN. Hadoop dependencies are provided + through the Hadoop installation and the application should not bundle them + to avoid conflicts. This is done by removing the Hadoop compile + dependencies (transitively) by parsing the Maven dependency tree.
        +
        +
        Returns:
        +
        list of jar files to ship
        +
        Throws:
        +
        IOException - when dependency information cannot be read
        +
        +
      • +
      + + + +
        +
      • +

        createJar

        +
        public static void createJar(File dir,
        +                             File jarFile)
        +                      throws IOException
        +
        Create a jar file from the given directory.
        +
        +
        Parameters:
        +
        dir - source directory
        +
        jarFile - jar file name
        +
        Throws:
        +
        IOException - when file cannot be created
        +
        +
      • +
      + + + +
        +
      • +

        main

        +
        public static void main(String[] args)
        +                 throws IOException
        +
        The main method expects the serialized DAG and will launch the YARN application.
        +
        +
        Parameters:
        +
        args - location of launch parameters
        +
        Throws:
        +
        IOException - when parameters cannot be read
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

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

+ + http://git-wip-us.apache.org/repos/asf/beam-site/blob/de6a0417/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/TestApexRunner.html ---------------------------------------------------------------------- diff --git a/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/TestApexRunner.html b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/TestApexRunner.html new file mode 100644 index 0000000..7f83a20 --- /dev/null +++ b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/TestApexRunner.html @@ -0,0 +1,294 @@ + + + + + + +TestApexRunner (Apache Beam SDK for Java, version 0.4.0) + + + + + + + + + + + + +
+
org.apache.beam.runners.apex
+

Class TestApexRunner

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + + + + +

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

+ + http://git-wip-us.apache.org/repos/asf/beam-site/blob/de6a0417/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexPipelineOptions.html ---------------------------------------------------------------------- diff --git a/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexPipelineOptions.html b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexPipelineOptions.html new file mode 100644 index 0000000..82a5c0e --- /dev/null +++ b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexPipelineOptions.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Interface org.apache.beam.runners.apex.ApexPipelineOptions (Apache Beam SDK for Java, version 0.4.0) + + + + + + + + + + + +
+

Uses of Interface
org.apache.beam.runners.apex.ApexPipelineOptions

+
+
+ +
+ + + + +

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

+ + http://git-wip-us.apache.org/repos/asf/beam-site/blob/de6a0417/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunner.CreateApexPCollectionView.html ---------------------------------------------------------------------- diff --git a/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunner.CreateApexPCollectionView.html b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunner.CreateApexPCollectionView.html new file mode 100644 index 0000000..64adae5 --- /dev/null +++ b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunner.CreateApexPCollectionView.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Class org.apache.beam.runners.apex.ApexRunner.CreateApexPCollectionView (Apache Beam SDK for Java, version 0.4.0) + + + + + + + + + + + +
+

Uses of Class
org.apache.beam.runners.apex.ApexRunner.CreateApexPCollectionView

+
+
+ +
+ + + + +

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

+ + http://git-wip-us.apache.org/repos/asf/beam-site/blob/de6a0417/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunner.html ---------------------------------------------------------------------- diff --git a/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunner.html b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunner.html new file mode 100644 index 0000000..343dba2 --- /dev/null +++ b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunner.html @@ -0,0 +1,168 @@ + + + + + + +Uses of Class org.apache.beam.runners.apex.ApexRunner (Apache Beam SDK for Java, version 0.4.0) + + + + + + + + + + + +
+

Uses of Class
org.apache.beam.runners.apex.ApexRunner

+
+
+ +
+ + + + +

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

+ + http://git-wip-us.apache.org/repos/asf/beam-site/blob/de6a0417/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerRegistrar.Options.html ---------------------------------------------------------------------- diff --git a/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerRegistrar.Options.html b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerRegistrar.Options.html new file mode 100644 index 0000000..69fe506 --- /dev/null +++ b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerRegistrar.Options.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.apache.beam.runners.apex.ApexRunnerRegistrar.Options (Apache Beam SDK for Java, version 0.4.0) + + + + + + + + + + + +
+

Uses of Class
org.apache.beam.runners.apex.ApexRunnerRegistrar.Options

+
+
No usage of org.apache.beam.runners.apex.ApexRunnerRegistrar.Options
+ + + + +

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

+ + http://git-wip-us.apache.org/repos/asf/beam-site/blob/de6a0417/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerRegistrar.Runner.html ---------------------------------------------------------------------- diff --git a/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerRegistrar.Runner.html b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerRegistrar.Runner.html new file mode 100644 index 0000000..81d6c54 --- /dev/null +++ b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerRegistrar.Runner.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.apache.beam.runners.apex.ApexRunnerRegistrar.Runner (Apache Beam SDK for Java, version 0.4.0) + + + + + + + + + + + +
+

Uses of Class
org.apache.beam.runners.apex.ApexRunnerRegistrar.Runner

+
+
No usage of org.apache.beam.runners.apex.ApexRunnerRegistrar.Runner
+ + + + +

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

+ + http://git-wip-us.apache.org/repos/asf/beam-site/blob/de6a0417/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerRegistrar.html ---------------------------------------------------------------------- diff --git a/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerRegistrar.html b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerRegistrar.html new file mode 100644 index 0000000..43fed7e --- /dev/null +++ b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerRegistrar.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class org.apache.beam.runners.apex.ApexRunnerRegistrar (Apache Beam SDK for Java, version 0.4.0) + + + + + + + + + + + +
+

Uses of Class
org.apache.beam.runners.apex.ApexRunnerRegistrar

+
+
No usage of org.apache.beam.runners.apex.ApexRunnerRegistrar
+ + + + +

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

+ + http://git-wip-us.apache.org/repos/asf/beam-site/blob/de6a0417/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerResult.html ---------------------------------------------------------------------- diff --git a/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerResult.html b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerResult.html new file mode 100644 index 0000000..5f95499 --- /dev/null +++ b/content/documentation/sdks/javadoc/0.4.0/org/apache/beam/runners/apex/class-use/ApexRunnerResult.html @@ -0,0 +1,172 @@ + + + + + + +Uses of Class org.apache.beam.runners.apex.ApexRunnerResult (Apache Beam SDK for Java, version 0.4.0) + + + + + + + + + + + +
+

Uses of Class
org.apache.beam.runners.apex.ApexRunnerResult

+
+
+ +
+ + + + +

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

+ +