You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2017/05/11 05:33:32 UTC

[1/3] beam-site git commit: fix typos in hadoop io documentation

Repository: beam-site
Updated Branches:
  refs/heads/asf-site 32241b501 -> d42cbaf11


fix typos in hadoop io documentation


Project: http://git-wip-us.apache.org/repos/asf/beam-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam-site/commit/212b9c7d
Tree: http://git-wip-us.apache.org/repos/asf/beam-site/tree/212b9c7d
Diff: http://git-wip-us.apache.org/repos/asf/beam-site/diff/212b9c7d

Branch: refs/heads/asf-site
Commit: 212b9c7d56748e5a7c025784394cf3c4e61481d9
Parents: 32241b5
Author: Ahmet Altay <al...@google.com>
Authored: Wed May 10 10:49:25 2017 -0700
Committer: Ahmet Altay <al...@google.com>
Committed: Wed May 10 22:29:46 2017 -0700

----------------------------------------------------------------------
 src/documentation/io/built-in-hadoop.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam-site/blob/212b9c7d/src/documentation/io/built-in-hadoop.md
----------------------------------------------------------------------
diff --git a/src/documentation/io/built-in-hadoop.md b/src/documentation/io/built-in-hadoop.md
index dda5843..5c07717 100644
--- a/src/documentation/io/built-in-hadoop.md
+++ b/src/documentation/io/built-in-hadoop.md
@@ -70,7 +70,7 @@ p.apply("read",
 
 #### Read data with configuration and key translation 
 
-For example scenario: Beam `Coder` is not available for key class hence key translation is required.
+For example, a Beam `Coder` is not available for `Key` class, so key translation is required.
 
 ```java
 p.apply("read",
@@ -85,7 +85,7 @@ p.apply("read",
 
 #### Read data with configuration and value translation
 
-For example scenario: Beam `Coder` is not available for value class hence value translation is required.
+For example, a Beam `Coder` is not available for `Value` class, so value translation is required.
 
 ```java
 p.apply("read",
@@ -100,7 +100,7 @@ p.apply("read",
 
 #### Read data with configuration, value translation and key translation 
 
-For example scenario: Beam Coders are not available for both `Key` class and `Value` class of `InputFormat` hence key and value translation is required.
+For example, Beam Coders are not available for both `Key` class and `Value` classes of `InputFormat`, so key and value translation are required.
 
 ```java
 p.apply("read",


[2/3] beam-site git commit: Regenerate website

Posted by al...@apache.org.
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/d5140a40
Tree: http://git-wip-us.apache.org/repos/asf/beam-site/tree/d5140a40
Diff: http://git-wip-us.apache.org/repos/asf/beam-site/diff/d5140a40

Branch: refs/heads/asf-site
Commit: d5140a4096a9958d9d674bf80eb9f24f0a59006b
Parents: 212b9c7
Author: Ahmet Altay <al...@google.com>
Authored: Wed May 10 22:33:17 2017 -0700
Committer: Ahmet Altay <al...@google.com>
Committed: Wed May 10 22:33:17 2017 -0700

----------------------------------------------------------------------
 content/documentation/io/built-in/hadoop/index.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam-site/blob/d5140a40/content/documentation/io/built-in/hadoop/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/io/built-in/hadoop/index.html b/content/documentation/io/built-in/hadoop/index.html
index 7fda51a..c5f051a 100644
--- a/content/documentation/io/built-in/hadoop/index.html
+++ b/content/documentation/io/built-in/hadoop/index.html
@@ -219,7 +219,7 @@
 
 <h4 id="read-data-with-configuration-and-key-translation">Read data with configuration and key translation</h4>
 
-<p>For example scenario: Beam <code class="highlighter-rouge">Coder</code> is not available for key class hence key translation is required.</p>
+<p>For example, a Beam <code class="highlighter-rouge">Coder</code> is not available for <code class="highlighter-rouge">Key</code> class, so key translation is required.</p>
 
 <div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="n">p</span><span class="o">.</span><span class="na">apply</span><span class="o">(</span><span class="s">"read"</span><span class="o">,</span>
   <span class="n">HadoopInputFormatIO</span><span class="o">.&lt;</span><span class="n">MyKeyClass</span><span class="o">,</span> <span class="n">InputFormatKeyClass</span><span class="o">&gt;</span><span class="n">read</span><span class="o">()</span>
@@ -234,7 +234,7 @@
 
 <h4 id="read-data-with-configuration-and-value-translation">Read data with configuration and value translation</h4>
 
-<p>For example scenario: Beam <code class="highlighter-rouge">Coder</code> is not available for value class hence value translation is required.</p>
+<p>For example, a Beam <code class="highlighter-rouge">Coder</code> is not available for <code class="highlighter-rouge">Value</code> class, so value translation is required.</p>
 
 <div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="n">p</span><span class="o">.</span><span class="na">apply</span><span class="o">(</span><span class="s">"read"</span><span class="o">,</span>
   <span class="n">HadoopInputFormatIO</span><span class="o">.&lt;</span><span class="n">InputFormatKeyClass</span><span class="o">,</span> <span class="n">MyValueClass</span><span class="o">&gt;</span><span class="n">read</span><span class="o">()</span>
@@ -249,7 +249,7 @@
 
 <h4 id="read-data-with-configuration-value-translation-and-key-translation">Read data with configuration, value translation and key translation</h4>
 
-<p>For example scenario: Beam Coders are not available for both <code class="highlighter-rouge">Key</code> class and <code class="highlighter-rouge">Value</code> class of <code class="highlighter-rouge">InputFormat</code> hence key and value translation is required.</p>
+<p>For example, Beam Coders are not available for both <code class="highlighter-rouge">Key</code> class and <code class="highlighter-rouge">Value</code> classes of <code class="highlighter-rouge">InputFormat</code>, so key and value translation are required.</p>
 
 <div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="n">p</span><span class="o">.</span><span class="na">apply</span><span class="o">(</span><span class="s">"read"</span><span class="o">,</span>
   <span class="n">HadoopInputFormatIO</span><span class="o">.&lt;</span><span class="n">MyKeyClass</span><span class="o">,</span> <span class="n">MyValueClass</span><span class="o">&gt;</span><span class="n">read</span><span class="o">()</span>


[3/3] beam-site git commit: This closes #236

Posted by al...@apache.org.
This closes #236


Project: http://git-wip-us.apache.org/repos/asf/beam-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam-site/commit/d42cbaf1
Tree: http://git-wip-us.apache.org/repos/asf/beam-site/tree/d42cbaf1
Diff: http://git-wip-us.apache.org/repos/asf/beam-site/diff/d42cbaf1

Branch: refs/heads/asf-site
Commit: d42cbaf119c324926daf06fc3ecdf38bd7fc5fd1
Parents: 32241b5 d5140a4
Author: Ahmet Altay <al...@google.com>
Authored: Wed May 10 22:33:17 2017 -0700
Committer: Ahmet Altay <al...@google.com>
Committed: Wed May 10 22:33:17 2017 -0700

----------------------------------------------------------------------
 content/documentation/io/built-in/hadoop/index.html | 6 +++---
 src/documentation/io/built-in-hadoop.md             | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------