This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 654f9f5  Publishing website 2021/05/29 00:06:42 at commit dd15d59
654f9f5 is described below

commit 654f9f512a0ce45bc1c2867f3e68886fbf1c88e5
Author: jenkins <bui...@apache.org>
AuthorDate: Sat May 29 00:06:42 2021 +0000

    Publishing website 2021/05/29 00:06:42 at commit dd15d59
---
 website/generated-content/get-started/index.xml    | 191 ++++++++++++---------
 .../get-started/quickstart-java/index.html         | 182 +++++++++++---------
 website/generated-content/sitemap.xml              |   2 +-
 3 files changed, 210 insertions(+), 165 deletions(-)

diff --git a/website/generated-content/get-started/index.xml 
b/website/generated-content/get-started/index.xml
index 312daab..f08232d 100644
--- a/website/generated-content/get-started/index.xml
+++ b/website/generated-content/get-started/index.xml
@@ -1130,8 +1130,9 @@ limitations under the License.
 &lt;nav id="TableOfContents">
 &lt;ul>
 &lt;li>&lt;a href="#set-up-your-development-environment">Set up your 
Development Environment&lt;/a>&lt;/li>
-&lt;li>&lt;a href="#get-the-wordcount-code">Get the WordCount 
Code&lt;/a>&lt;/li>
+&lt;li>&lt;a href="#get-the-example-code">Get the Example Code&lt;/a>&lt;/li>
 &lt;li>&lt;a href="#optional-convert-from-maven-to-gradle-project">Optional: 
Convert from Maven to Gradle Project&lt;/a>&lt;/li>
+&lt;li>&lt;a href="#get-sample-text">Get sample text&lt;/a>&lt;/li>
 &lt;li>&lt;a href="#run-a-pipeline">Run a pipeline&lt;/a>
 &lt;ul>
 &lt;li>&lt;a href="#run-wordcount-using-maven">Run WordCount Using 
Maven&lt;/a>&lt;/li>
@@ -1154,8 +1155,8 @@ limitations under the License.
 &lt;p>Optional: Install &lt;a href="https://gradle.org/install/";>Gradle&lt;/a> 
if you would like to convert your Maven project into Gradle.&lt;/p>
 &lt;/li>
 &lt;/ol>
-&lt;h2 id="get-the-wordcount-code">Get the WordCount Code&lt;/h2>
-&lt;p>The easiest way to get a copy of the WordCount pipeline is to use the 
following command to generate a simple Maven project that contains 
Beam&amp;rsquo;s WordCount examples and builds against the most recent Beam 
release:&lt;/p>
+&lt;h2 id="get-the-example-code">Get the Example Code&lt;/h2>
+&lt;p>Use the following command to generate a Maven project that contains 
Beam&amp;rsquo;s WordCount examples and builds against the most recent Beam 
release:&lt;/p>
 &lt;div class="snippet">
 &lt;div class="notebook-skip code-snippet without_switcher">
 &lt;a class="copy" type="button" data-bs-toggle="tooltip" 
data-bs-placement="bottom" title="Copy to clipboard">
@@ -1188,7 +1189,7 @@ limitations under the License.
 -D interactiveMode=false&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
-&lt;p>This will create a directory &lt;code>word-count-beam&lt;/code> that 
contains a simple &lt;code>pom.xml&lt;/code> and a series of example pipelines 
that count words in text files.&lt;/p>
+&lt;p>This will create a &lt;code>word-count-beam&lt;/code> directory that 
contains a &lt;code>pom.xml&lt;/code> and several example pipelines that count 
words in text files.&lt;/p>
 &lt;div class="snippet">
 &lt;div class="notebook-skip code-snippet without_switcher">
 &lt;a class="copy" type="button" data-bs-toggle="tooltip" 
data-bs-placement="bottom" title="Copy to clipboard">
@@ -1286,6 +1287,14 @@ args System.getProperty(&amp;#34;exec.args&amp;#34;, 
&amp;#34;&amp;#34;).split()
 &lt;/div>
 &lt;/li>
 &lt;/ol>
+&lt;h2 id="get-sample-text">Get sample text&lt;/h2>
+&lt;blockquote>
+&lt;p>If you&amp;rsquo;re planning to use the DataflowRunner, you can skip 
this step. The runner will pull text directly from Google Cloud Storage.&lt;/p>
+&lt;/blockquote>
+&lt;ol>
+&lt;li>In the &lt;strong>word-count-beam&lt;/strong> directory, create a file 
called &lt;strong>sample.txt&lt;/strong>.&lt;/li>
+&lt;li>Add some text to the file. For this example, you can use the text of 
Shakespeare&amp;rsquo;s &lt;a 
href="https://storage.cloud.google.com/apache-beam-samples/shakespeare/sonnets.txt";>Sonnets&lt;/a>.&lt;/li>
+&lt;/ol>
 &lt;h2 id="run-a-pipeline">Run a pipeline&lt;/h2>
 &lt;p>A single Beam pipeline can run on multiple Beam &lt;a 
href="/documentation#runners">runners&lt;/a>, including the &lt;a 
href="/documentation/runners/flink">FlinkRunner&lt;/a>, &lt;a 
href="/documentation/runners/spark">SparkRunner&lt;/a>, &lt;a 
href="/documentation/runners/nemo">NemoRunner&lt;/a>, &lt;a 
href="/documentation/runners/jet">JetRunner&lt;/a>, or &lt;a 
href="/documentation/runners/dataflow">DataflowRunner&lt;/a>. The &lt;a 
href="/documentation/runners/direct">DirectRunner [...]
 &lt;p>The general process for running a pipeline goes like this:&lt;/p>
@@ -1309,7 +1318,7 @@ args System.getProperty(&amp;#34;exec.args&amp;#34;, 
&amp;#34;&amp;#34;).split()
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ mvn compile exec:java 
-Dexec.mainClass=org.apache.beam.examples.WordCount \
--Dexec.args=&amp;#34;--inputFile=/path/to/inputfile --output=counts&amp;#34; 
-Pdirect-runner&lt;/code>&lt;/pre>
+-Dexec.args=&amp;#34;--inputFile=sample.txt --output=counts&amp;#34; 
-Pdirect-runner&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;div class="snippet">
@@ -1318,7 +1327,7 @@ args System.getProperty(&amp;#34;exec.args&amp;#34;, 
&amp;#34;&amp;#34;).split()
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ mvn compile exec:java 
-Dexec.mainClass=org.apache.beam.examples.WordCount \
--Dexec.args=&amp;#34;--runner=FlinkRunner --inputFile=/path/to/inputfile 
--output=counts&amp;#34; -Pflink-runner&lt;/code>&lt;/pre>
+-Dexec.args=&amp;#34;--runner=FlinkRunner --inputFile=sample.txt 
--output=counts&amp;#34; -Pflink-runner&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;div class="snippet">
@@ -1328,7 +1337,7 @@ args System.getProperty(&amp;#34;exec.args&amp;#34;, 
&amp;#34;&amp;#34;).split()
 &lt;/a>
 &lt;pre>&lt;code>$ mvn package exec:java 
-Dexec.mainClass=org.apache.beam.examples.WordCount \
 -Dexec.args=&amp;#34;--runner=FlinkRunner --flinkMaster=&amp;lt;flink 
master&amp;gt; --filesToStage=target/word-count-beam-bundled-0.1.jar \
---inputFile=/path/to/quickstart/pom.xml --output=/tmp/counts&amp;#34; 
-Pflink-runner
+--inputFile=sample.txt --output=/tmp/counts&amp;#34; -Pflink-runner
 You can monitor the running job by visiting the Flink dashboard at 
http://&amp;lt;flink master&amp;gt;:8081&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -1338,7 +1347,7 @@ You can monitor the running job by visiting the Flink 
dashboard at http://&amp;l
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ mvn compile exec:java 
-Dexec.mainClass=org.apache.beam.examples.WordCount \
--Dexec.args=&amp;#34;--runner=SparkRunner --inputFile=/path/to/inputfile 
--output=counts&amp;#34; -Pspark-runner&lt;/code>&lt;/pre>
+-Dexec.args=&amp;#34;--runner=SparkRunner --inputFile=sample.txt 
--output=counts&amp;#34; -Pspark-runner&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;div class="snippet">
@@ -1361,7 +1370,7 @@ $ mvn compile exec:java 
-Dexec.mainClass=org.apache.beam.examples.WordCount \
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ mvn compile exec:java 
-Dexec.mainClass=org.apache.beam.examples.WordCount \
--Dexec.args=&amp;#34;--inputFile=/path/to/inputfile --output=/tmp/counts 
--runner=SamzaRunner&amp;#34; -Psamza-runner&lt;/code>&lt;/pre>
+-Dexec.args=&amp;#34;--inputFile=sample.txt --output=/tmp/counts 
--runner=SamzaRunner&amp;#34; -Psamza-runner&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;div class="snippet">
@@ -1370,7 +1379,7 @@ $ mvn compile exec:java 
-Dexec.mainClass=org.apache.beam.examples.WordCount \
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ mvn package -Pnemo-runner &amp;amp;&amp;amp; java -cp 
target/word-count-beam-bundled-0.1.jar org.apache.beam.examples.WordCount \
---runner=NemoRunner --inputFile=`pwd`/pom.xml 
--output=counts&lt;/code>&lt;/pre>
+--runner=NemoRunner --inputFile=`pwd`/sample.txt 
--output=counts&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;div class="snippet">
@@ -1380,7 +1389,7 @@ $ mvn compile exec:java 
-Dexec.mainClass=org.apache.beam.examples.WordCount \
 &lt;/a>
 &lt;pre>&lt;code>$ mvn package -Pjet-runner
 $ java -cp target/word-count-beam-bundled-0.1.jar 
org.apache.beam.examples.WordCount \
---runner=JetRunner --jetLocalMode=3 --inputFile=`pwd`/pom.xml 
--output=counts&lt;/code>&lt;/pre>
+--runner=JetRunner --jetLocalMode=3 --inputFile=`pwd`/sample.txt 
--output=counts&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;p>For Windows PowerShell:&lt;/p>
@@ -1390,7 +1399,7 @@ $ java -cp target/word-count-beam-bundled-0.1.jar 
org.apache.beam.examples.WordC
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>PS&amp;gt; mvn compile exec:java -D 
exec.mainClass=org.apache.beam.examples.WordCount `
--D exec.args=&amp;#34;--inputFile=/path/to/inputfile --output=counts&amp;#34; 
-P direct-runner&lt;/code>&lt;/pre>
+-D exec.args=&amp;#34;--inputFile=sample.txt --output=counts&amp;#34; -P 
direct-runner&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;div class="snippet">
@@ -1399,7 +1408,7 @@ $ java -cp target/word-count-beam-bundled-0.1.jar 
org.apache.beam.examples.WordC
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>PS&amp;gt; mvn compile exec:java -D 
exec.mainClass=org.apache.beam.examples.WordCount `
--D exec.args=&amp;#34;--runner=FlinkRunner --inputFile=/path/to/inputfile 
--output=counts&amp;#34; -P flink-runner&lt;/code>&lt;/pre>
+-D exec.args=&amp;#34;--runner=FlinkRunner --inputFile=sample.txt 
--output=counts&amp;#34; -P flink-runner&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;div class="snippet">
@@ -1409,7 +1418,7 @@ $ java -cp target/word-count-beam-bundled-0.1.jar 
org.apache.beam.examples.WordC
 &lt;/a>
 &lt;pre>&lt;code>PS&amp;gt; mvn package exec:java -D 
exec.mainClass=org.apache.beam.examples.WordCount `
 -D exec.args=&amp;#34;--runner=FlinkRunner --flinkMaster=&amp;lt;flink 
master&amp;gt; --filesToStage=.\target\word-count-beam-bundled-0.1.jar `
---inputFile=C:\path\to\quickstart\pom.xml --output=C:\tmp\counts&amp;#34; -P 
flink-runner
+--inputFile=C:\path\to\quickstart\sample.txt --output=C:\tmp\counts&amp;#34; 
-P flink-runner
 You can monitor the running job by visiting the Flink dashboard at 
http://&amp;lt;flink master&amp;gt;:8081&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -1419,7 +1428,7 @@ You can monitor the running job by visiting the Flink 
dashboard at http://&amp;l
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>PS&amp;gt; mvn compile exec:java -D 
exec.mainClass=org.apache.beam.examples.WordCount `
--D exec.args=&amp;#34;--runner=SparkRunner --inputFile=/path/to/inputfile 
--output=counts&amp;#34; -P spark-runner&lt;/code>&lt;/pre>
+-D exec.args=&amp;#34;--runner=SparkRunner --inputFile=sample.txt 
--output=counts&amp;#34; -P spark-runner&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;div class="snippet">
@@ -1442,7 +1451,7 @@ PS&amp;gt; mvn compile exec:java -D 
exec.mainClass=org.apache.beam.examples.Word
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>PS&amp;gt; mvn compile exec:java -D 
exec.mainClass=org.apache.beam.examples.WordCount `
--D exec.args=&amp;#34;--inputFile=/path/to/inputfile --output=/tmp/counts 
--runner=SamzaRunner&amp;#34; -P samza-runner&lt;/code>&lt;/pre>
+-D exec.args=&amp;#34;--inputFile=sample.txt --output=/tmp/counts 
--runner=SamzaRunner&amp;#34; -P samza-runner&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;div class="snippet">
@@ -1452,7 +1461,7 @@ PS&amp;gt; mvn compile exec:java -D 
exec.mainClass=org.apache.beam.examples.Word
 &lt;/a>
 &lt;pre>&lt;code>PS&amp;gt; mvn package -P nemo-runner -DskipTests
 PS&amp;gt; java -cp target/word-count-beam-bundled-0.1.jar 
org.apache.beam.examples.WordCount `
---runner=NemoRunner --inputFile=`pwd`/pom.xml 
--output=counts&lt;/code>&lt;/pre>
+--runner=NemoRunner --inputFile=`pwd`/sample.txt 
--output=counts&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;div class="snippet">
@@ -1462,7 +1471,7 @@ PS&amp;gt; java -cp 
target/word-count-beam-bundled-0.1.jar org.apache.beam.examp
 &lt;/a>
 &lt;pre>&lt;code>PS&amp;gt; mvn package -P jet-runner
 PS&amp;gt; java -cp target/word-count-beam-bundled-0.1.jar 
org.apache.beam.examples.WordCount `
---runner=JetRunner --jetLocalMode=3 --inputFile=$pwd/pom.xml 
--output=counts&lt;/code>&lt;/pre>
+--runner=JetRunner --jetLocalMode=3 --inputFile=$pwd/sample.txt 
--output=counts&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;h3 id="run-wordcount-using-gradle">Run WordCount Using Gradle&lt;/h3>
@@ -1473,7 +1482,7 @@ PS&amp;gt; java -cp 
target/word-count-beam-bundled-0.1.jar org.apache.beam.examp
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ gradle clean execute 
-DmainClass=org.apache.beam.examples.WordCount \
--Dexec.args=&amp;#34;--inputFile=/path/to/inputfile --output=counts&amp;#34; 
-Pdirect-runner&lt;/code>&lt;/pre>
+-Dexec.args=&amp;#34;--inputFile=sample.txt --output=counts&amp;#34; 
-Pdirect-runner&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;div class="snippet">
@@ -1506,7 +1515,7 @@ PS&amp;gt; java -cp 
target/word-count-beam-bundled-0.1.jar org.apache.beam.examp
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ gradle clean execute 
-DmainClass=org.apache.beam.examples.WordCount \
--Dexec.args=&amp;#34;--inputFile=/path/to/inputfile --output=counts&amp;#34; 
-Pspark-runner&lt;/code>&lt;/pre>
+-Dexec.args=&amp;#34;--inputFile=sample.txt --output=counts&amp;#34; 
-Pspark-runner&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
 &lt;div class="snippet">
@@ -1616,13 +1625,16 @@ PS&amp;gt; java -cp 
target/word-count-beam-bundled-0.1.jar org.apache.beam.examp
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ more counts*
-api: 9
-bundled: 1
-old: 4
-Apache: 2
-The: 1
-limitations: 1
-Foundation: 1
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -1632,13 +1644,16 @@ Foundation: 1
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ more counts*
-The: 1
-api: 9
-old: 4
-Apache: 2
-limitations: 1
-bundled: 1
-Foundation: 1
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -1648,13 +1663,16 @@ Foundation: 1
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ more /tmp/counts*
-The: 1
-api: 9
-old: 4
-Apache: 2
-limitations: 1
-bundled: 1
-Foundation: 1
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -1664,14 +1682,16 @@ Foundation: 1
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ more counts*
-beam: 27
-SF: 1
-fat: 1
-job: 1
-limitations: 1
-require: 1
-of: 11
-profile: 10
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -1681,14 +1701,16 @@ profile: 10
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ gsutil cat gs://&amp;lt;your-gcs-bucket&amp;gt;/counts*
-feature: 15
-smother&amp;#39;st: 1
-revelry: 1
-bashfulness: 1
-Bashful: 1
-Below: 2
-deserves: 32
-barrenly: 1
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -1698,13 +1720,16 @@ barrenly: 1
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ more /tmp/counts*
-api: 7
-are: 2
-can: 2
-com: 14
-end: 14
-for: 14
-has: 2
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -1714,14 +1739,16 @@ has: 2
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ more counts*
-cluster: 2
-handler: 1
-plugins: 9
-exclusions: 14
-finalName: 2
-Adds: 2
-java: 7
-xml: 1
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -1731,16 +1758,16 @@ xml: 1
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
 &lt;pre>&lt;code>$ more counts*
-FlinkRunner: 1
-cleanupDaemonThreads: 2
-sdks: 4
-unit: 1
-Apache: 3
-IO: 2
-copyright: 1
-governing: 1
-overrides: 1
-YARN: 1
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
diff --git a/website/generated-content/get-started/quickstart-java/index.html 
b/website/generated-content/get-started/quickstart-java/index.html
index 0b66e4c..1d00833 100644
--- a/website/generated-content/get-started/quickstart-java/index.html
+++ b/website/generated-content/get-started/quickstart-java/index.html
@@ -18,7 +18,7 @@
 function addPlaceholder(){$('input:text').attr('placeholder',"What are you 
looking for?");}
 function endSearch(){var 
search=document.querySelector(".searchBar");search.classList.add("disappear");var
 icons=document.querySelector("#iconsBar");icons.classList.remove("disappear");}
 function blockScroll(){$("body").toggleClass("fixedPosition");}
-function openMenu(){addPlaceholder();blockScroll();}</script><div 
class="clearfix container-main-content"><div class="section-nav closed" 
data-offset-top=90 data-offset-bottom=500><span class="section-nav-back 
glyphicon glyphicon-menu-left"></span><nav><ul class=section-nav-list 
data-section-nav><li><span class=section-nav-list-main-title>Get 
started</span></li><li><a href=/get-started/beam-overview/>Beam 
Overview</a></li><li><a href=/get-started/tour-of-beam/>Tour of 
Beam</a></li><li><s [...]
+function openMenu(){addPlaceholder();blockScroll();}</script><div 
class="clearfix container-main-content"><div class="section-nav closed" 
data-offset-top=90 data-offset-bottom=500><span class="section-nav-back 
glyphicon glyphicon-menu-left"></span><nav><ul class=section-nav-list 
data-section-nav><li><span class=section-nav-list-main-title>Get 
started</span></li><li><a href=/get-started/beam-overview/>Beam 
Overview</a></li><li><a href=/get-started/tour-of-beam/>Tour of 
Beam</a></li><li><s [...]
       -DarchetypeGroupId=org.apache.beam \
       -DarchetypeArtifactId=beam-sdks-java-maven-archetypes-examples \
       -DarchetypeVersion=2.29.0 \
@@ -34,7 +34,7 @@ function 
openMenu(){addPlaceholder();blockScroll();}</script><div class="clearfi
  -D artifactId=word-count-beam `
  -D version=&#34;0.1&#34; `
  -D package=org.apache.beam.examples `
- -D interactiveMode=false</code></pre></div></div><p>This will create a 
directory <code>word-count-beam</code> that contains a simple 
<code>pom.xml</code> and a series of example pipelines that count words in text 
files.</p><div class=snippet><div class="notebook-skip code-snippet 
without_switcher"><a class=copy type=button data-bs-toggle=tooltip 
data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ cd word-count-beam/
+ -D interactiveMode=false</code></pre></div></div><p>This will create a 
<code>word-count-beam</code> directory that contains a <code>pom.xml</code> and 
several example pipelines that count words in text files.</p><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>$ cd 
word-count-beam/
 
 $ ls
 pom.xml        src
@@ -77,14 +77,14 @@ d-----        7/19/2018  11:00 PM                subprocess
     classpath = sourceSets.main.runtimeClasspath
     systemProperties System.getProperties()
     args System.getProperty(&#34;exec.args&#34;, &#34;&#34;).split()
-}</code></pre></div></div></li><li>Rebuild your project by running:<div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>$ 
gradle build</code></pre></div></div></li></ol><h2 id=run-a-pipeline>Run a 
pipeline</h2><p>A single Beam pipeline can run on multiple Beam <a 
href=/documentation#runners>runners</a>, including the <a h [...]
-     -Dexec.args=&#34;--inputFile=/path/to/inputfile --output=counts&#34; 
-Pdirect-runner</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ mvn compile exec:java 
-Dexec.mainClass=org.apache.beam.examples.WordCount \
-     -Dexec.args=&#34;--runner=FlinkRunner --inputFile=/path/to/inputfile 
--output=counts&#34; -Pflink-runner</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>$ mvn 
package exec:java -Dexec.mainClass=org.apache.beam.examples.WordCount \
+}</code></pre></div></div></li><li>Rebuild your project by running:<div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>$ 
gradle build</code></pre></div></div></li></ol><h2 id=get-sample-text>Get 
sample text</h2><blockquote><p>If you&rsquo;re planning to use the 
DataflowRunner, you can skip this step. The runner will pull [...]
+     -Dexec.args=&#34;--inputFile=sample.txt --output=counts&#34; 
-Pdirect-runner</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ mvn compile exec:java 
-Dexec.mainClass=org.apache.beam.examples.WordCount \
+     -Dexec.args=&#34;--runner=FlinkRunner --inputFile=sample.txt 
--output=counts&#34; -Pflink-runner</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>$ mvn 
package exec:java -Dexec.mainClass=org.apache.beam.examples.WordCount \
      -Dexec.args=&#34;--runner=FlinkRunner --flinkMaster=&lt;flink master&gt; 
--filesToStage=target/word-count-beam-bundled-0.1.jar \
-                  --inputFile=/path/to/quickstart/pom.xml 
--output=/tmp/counts&#34; -Pflink-runner
+                  --inputFile=sample.txt --output=/tmp/counts&#34; 
-Pflink-runner
 
 You can monitor the running job by visiting the Flink dashboard at 
http://&lt;flink master&gt;:8081</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>$ mvn 
compile exec:java -Dexec.mainClass=org.apache.beam.examples.WordCount \
-     -Dexec.args=&#34;--runner=SparkRunner --inputFile=/path/to/inputfile 
--output=counts&#34; -Pspark-runner</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>Make 
sure you complete the setup steps at /documentation/runners/dataflow/#setup
+     -Dexec.args=&#34;--runner=SparkRunner --inputFile=sample.txt 
--output=counts&#34; -Pspark-runner</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>Make 
sure you complete the setup steps at /documentation/runners/dataflow/#setup
 
 $ mvn compile exec:java -Dexec.mainClass=org.apache.beam.examples.WordCount \
      -Dexec.args=&#34;--runner=DataflowRunner 
--project=&lt;your-gcp-project&gt; \
@@ -92,17 +92,17 @@ $ mvn compile exec:java 
-Dexec.mainClass=org.apache.beam.examples.WordCount \
                   --gcpTempLocation=gs://&lt;your-gcs-bucket&gt;/tmp \
                   --inputFile=gs://apache-beam-samples/shakespeare/* 
--output=gs://&lt;your-gcs-bucket&gt;/counts&#34; \
      -Pdataflow-runner</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ mvn compile exec:java 
-Dexec.mainClass=org.apache.beam.examples.WordCount \
-     -Dexec.args=&#34;--inputFile=/path/to/inputfile --output=/tmp/counts 
--runner=SamzaRunner&#34; -Psamza-runner</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>$ mvn 
package -Pnemo-runner &amp;&amp; java -cp 
target/word-count-beam-bundled-0.1.jar org.apache.beam.examples.WordCount \
-     --runner=NemoRunner --inputFile=`pwd`/pom.xml 
--output=counts</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ mvn package -Pjet-runner
+     -Dexec.args=&#34;--inputFile=sample.txt --output=/tmp/counts 
--runner=SamzaRunner&#34; -Psamza-runner</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>$ mvn 
package -Pnemo-runner &amp;&amp; java -cp 
target/word-count-beam-bundled-0.1.jar org.apache.beam.examples.WordCount \
+     --runner=NemoRunner --inputFile=`pwd`/sample.txt 
--output=counts</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ mvn package -Pjet-runner
 $ java -cp target/word-count-beam-bundled-0.1.jar 
org.apache.beam.examples.WordCount \
-     --runner=JetRunner --jetLocalMode=3 --inputFile=`pwd`/pom.xml 
--output=counts</code></pre></div></div><p>For Windows PowerShell:</p><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>PS&gt; 
mvn compile exec:java -D exec.mainClass=org.apache.beam.examples.WordCount `
- -D exec.args=&#34;--inputFile=/path/to/inputfile --output=counts&#34; -P 
direct-runner</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>PS&gt; mvn compile exec:java -D 
exec.mainClass=org.apache.beam.examples.WordCount `
- -D exec.args=&#34;--runner=FlinkRunner --inputFile=/path/to/inputfile 
--output=counts&#34; -P flink-runner</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>PS&gt; 
mvn package exec:java -D exec.mainClass=org.apache.beam.examples.WordCount `
+     --runner=JetRunner --jetLocalMode=3 --inputFile=`pwd`/sample.txt 
--output=counts</code></pre></div></div><p>For Windows PowerShell:</p><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>PS&gt; 
mvn compile exec:java -D exec.mainClass=org.apache.beam.examples.WordCount `
+ -D exec.args=&#34;--inputFile=sample.txt --output=counts&#34; -P 
direct-runner</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>PS&gt; mvn compile exec:java -D 
exec.mainClass=org.apache.beam.examples.WordCount `
+ -D exec.args=&#34;--runner=FlinkRunner --inputFile=sample.txt 
--output=counts&#34; -P flink-runner</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>PS&gt; 
mvn package exec:java -D exec.mainClass=org.apache.beam.examples.WordCount `
  -D exec.args=&#34;--runner=FlinkRunner --flinkMaster=&lt;flink master&gt; 
--filesToStage=.\target\word-count-beam-bundled-0.1.jar `
-               --inputFile=C:\path\to\quickstart\pom.xml 
--output=C:\tmp\counts&#34; -P flink-runner
+               --inputFile=C:\path\to\quickstart\sample.txt 
--output=C:\tmp\counts&#34; -P flink-runner
 
 You can monitor the running job by visiting the Flink dashboard at 
http://&lt;flink master&gt;:8081</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>PS&gt; 
mvn compile exec:java -D exec.mainClass=org.apache.beam.examples.WordCount `
- -D exec.args=&#34;--runner=SparkRunner --inputFile=/path/to/inputfile 
--output=counts&#34; -P spark-runner</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>Make 
sure you complete the setup steps at /documentation/runners/dataflow/#setup
+ -D exec.args=&#34;--runner=SparkRunner --inputFile=sample.txt 
--output=counts&#34; -P spark-runner</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>Make 
sure you complete the setup steps at /documentation/runners/dataflow/#setup
 
 PS&gt; mvn compile exec:java -D 
exec.mainClass=org.apache.beam.examples.WordCount `
  -D exec.args=&#34;--runner=DataflowRunner --project=&lt;your-gcp-project&gt; `
@@ -110,86 +110,104 @@ PS&gt; mvn compile exec:java -D 
exec.mainClass=org.apache.beam.examples.WordCoun
                --gcpTempLocation=gs://&lt;your-gcs-bucket&gt;/tmp `
                --inputFile=gs://apache-beam-samples/shakespeare/* 
--output=gs://&lt;your-gcs-bucket&gt;/counts&#34; `
  -P dataflow-runner</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>PS&gt; mvn compile exec:java -D 
exec.mainClass=org.apache.beam.examples.WordCount `
-     -D exec.args=&#34;--inputFile=/path/to/inputfile --output=/tmp/counts 
--runner=SamzaRunner&#34; -P samza-runner</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>PS&gt; 
mvn package -P nemo-runner -DskipTests
+     -D exec.args=&#34;--inputFile=sample.txt --output=/tmp/counts 
--runner=SamzaRunner&#34; -P samza-runner</code></pre></div></div><div 
class=snippet><div class="notebook-skip code-snippet without_switcher"><a 
class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom 
title="Copy to clipboard"><img src=/images/copy-icon.svg></a><pre><code>PS&gt; 
mvn package -P nemo-runner -DskipTests
 PS&gt; java -cp target/word-count-beam-bundled-0.1.jar 
org.apache.beam.examples.WordCount `
-      --runner=NemoRunner --inputFile=`pwd`/pom.xml 
--output=counts</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>PS&gt; mvn package -P jet-runner
+      --runner=NemoRunner --inputFile=`pwd`/sample.txt 
--output=counts</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>PS&gt; mvn package -P jet-runner
 PS&gt; java -cp target/word-count-beam-bundled-0.1.jar 
org.apache.beam.examples.WordCount `
-      --runner=JetRunner --jetLocalMode=3 --inputFile=$pwd/pom.xml 
--output=counts</code></pre></div></div><h3 id=run-wordcount-using-gradle>Run 
WordCount Using Gradle</h3><p>For Unix shells (Instructions currently only 
available for Direct, Spark, and Dataflow):</p><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ g [...]
-    -Dexec.args=&#34;--inputFile=/path/to/inputfile --output=counts&#34; 
-Pdirect-runner</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>We are working on adding the 
instruction for this runner!</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher" [...]
-    -Dexec.args=&#34;--inputFile=/path/to/inputfile --output=counts&#34; 
-Pspark-runner</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ gradle clean execute 
-DmainClass=org.apache.beam.examples.WordCount \
+      --runner=JetRunner --jetLocalMode=3 --inputFile=$pwd/sample.txt 
--output=counts</code></pre></div></div><h3 id=run-wordcount-using-gradle>Run 
WordCount Using Gradle</h3><p>For Unix shells (Instructions currently only 
available for Direct, Spark, and Dataflow):</p><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code> [...]
+    -Dexec.args=&#34;--inputFile=sample.txt --output=counts&#34; 
-Pdirect-runner</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>We are working on adding the 
instruction for this runner!</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a clas [...]
+    -Dexec.args=&#34;--inputFile=sample.txt --output=counts&#34; 
-Pspark-runner</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ gradle clean execute 
-DmainClass=org.apache.beam.examples.WordCount \
     -Dexec.args=&#34;--project=&lt;your-gcp-project&gt; 
--inputFile=gs://apache-beam-samples/shakespeare/* \
     --output=gs://&lt;your-gcs-bucket&gt;/counts&#34; 
-Pdataflow-runner</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy type=button 
data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>We are working on adding the 
instruction for this runner!</code></pre></div></div><div class=snippet><div 
class="notebook-skip code-snippet without_switcher"><a class=copy ty [...]
-api: 9
-bundled: 1
-old: 4
-Apache: 2
-The: 1
-limitations: 1
-Foundation: 1
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...</code></pre></div></div><div class=snippet><div class="notebook-skip 
code-snippet without_switcher"><a class=copy type=button data-bs-toggle=tooltip 
data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ more counts*
-The: 1
-api: 9
-old: 4
-Apache: 2
-limitations: 1
-bundled: 1
-Foundation: 1
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...</code></pre></div></div><div class=snippet><div class="notebook-skip 
code-snippet without_switcher"><a class=copy type=button data-bs-toggle=tooltip 
data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ more /tmp/counts*
-The: 1
-api: 9
-old: 4
-Apache: 2
-limitations: 1
-bundled: 1
-Foundation: 1
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...</code></pre></div></div><div class=snippet><div class="notebook-skip 
code-snippet without_switcher"><a class=copy type=button data-bs-toggle=tooltip 
data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ more counts*
-beam: 27
-SF: 1
-fat: 1
-job: 1
-limitations: 1
-require: 1
-of: 11
-profile: 10
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...</code></pre></div></div><div class=snippet><div class="notebook-skip 
code-snippet without_switcher"><a class=copy type=button data-bs-toggle=tooltip 
data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ gsutil cat 
gs://&lt;your-gcs-bucket&gt;/counts*
-feature: 15
-smother&#39;st: 1
-revelry: 1
-bashfulness: 1
-Bashful: 1
-Below: 2
-deserves: 32
-barrenly: 1
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...</code></pre></div></div><div class=snippet><div class="notebook-skip 
code-snippet without_switcher"><a class=copy type=button data-bs-toggle=tooltip 
data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ more /tmp/counts*
-api: 7
-are: 2
-can: 2
-com: 14
-end: 14
-for: 14
-has: 2
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...</code></pre></div></div><div class=snippet><div class="notebook-skip 
code-snippet without_switcher"><a class=copy type=button data-bs-toggle=tooltip 
data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ more counts*
-cluster: 2
-handler: 1
-plugins: 9
-exclusions: 14
-finalName: 2
-Adds: 2
-java: 7
-xml: 1
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...</code></pre></div></div><div class=snippet><div class="notebook-skip 
code-snippet without_switcher"><a class=copy type=button data-bs-toggle=tooltip 
data-bs-placement=bottom title="Copy to clipboard"><img 
src=/images/copy-icon.svg></a><pre><code>$ more counts*
-FlinkRunner: 1
-cleanupDaemonThreads: 2
-sdks: 4
-unit: 1
-Apache: 3
-IO: 2
-copyright: 1
-governing: 1
-overrides: 1
-YARN: 1
+wrought: 2
+st: 32
+fresher: 1
+of: 351
+souls: 2
+CXVIII: 1
+reviewest: 1
+untold: 1
+th: 1
+single: 4
 ...</code></pre></div></div><h2 id=next-steps>Next Steps</h2><ul><li>Learn 
more about the <a href=/documentation/sdks/java/>Beam SDK for Java</a>
-and look through the <a href=https://beam.apache.org/releases/javadoc>Java SDK 
API reference</a>.</li><li>Walk through these WordCount examples in the <a 
href=/get-started/wordcount-example>WordCount Example 
Walkthrough</a>.</li><li>Take a self-paced tour through our <a 
href=/documentation/resources/learning-resources>Learning 
Resources</a>.</li><li>Dive in to some of our favorite <a 
href=/documentation/resources/videos-and-podcasts>Videos and 
Podcasts</a>.</li><li>Join the Beam <a href= [...]
+and look through the <a href=https://beam.apache.org/releases/javadoc>Java SDK 
API reference</a>.</li><li>Walk through these WordCount examples in the <a 
href=/get-started/wordcount-example>WordCount Example 
Walkthrough</a>.</li><li>Take a self-paced tour through our <a 
href=/documentation/resources/learning-resources>Learning 
Resources</a>.</li><li>Dive in to some of our favorite <a 
href=/documentation/resources/videos-and-podcasts>Videos and 
Podcasts</a>.</li><li>Join the Beam <a href= [...]
 <a href=http://www.apache.org>The Apache Software Foundation</a>
 | <a href=/privacy_policy>Privacy Policy</a>
 | <a href=/feed.xml>RSS Feed</a><br><br>Apache Beam, Apache, Beam, the Beam 
logo, and the Apache feather logo are either registered trademarks or 
trademarks of The Apache Software Foundation. All other products or name brands 
are trademarks of their respective holders, including The Apache Software 
Foundation.</div></div></div></div></footer></body></html>
\ No newline at end of file
diff --git a/website/generated-content/sitemap.xml 
b/website/generated-content/sitemap.xml
index 53a5b5d..9244361 100644
--- a/website/generated-content/sitemap.xml
+++ b/website/generated-content/sitemap.xml
@@ -1 +1 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset 
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"; 
xmlns:xhtml="http://www.w3.org/1999/xhtml";><url><loc>/blog/beam-2.29.0/</loc><lastmod>2021-04-15T20:51:50-07:00</lastmod></url><url><loc>/categories/blog/</loc><lastmod>2021-04-15T20:51:50-07:00</lastmod></url><url><loc>/blog/</loc><lastmod>2021-04-15T20:51:50-07:00</lastmod></url><url><loc>/categories/</loc><lastmod>2021-05-25T17:22:37-07:00</lastmod></url><url><loc>/blog/b
 [...]
\ No newline at end of file
+<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset 
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"; 
xmlns:xhtml="http://www.w3.org/1999/xhtml";><url><loc>/blog/beam-2.29.0/</loc><lastmod>2021-04-15T20:51:50-07:00</lastmod></url><url><loc>/categories/blog/</loc><lastmod>2021-04-15T20:51:50-07:00</lastmod></url><url><loc>/blog/</loc><lastmod>2021-04-15T20:51:50-07:00</lastmod></url><url><loc>/categories/</loc><lastmod>2021-05-25T17:22:37-07:00</lastmod></url><url><loc>/blog/b
 [...]
\ No newline at end of file

Reply via email to