You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by gi...@apache.org on 2022/03/04 00:02:40 UTC

[beam] branch asf-site updated: Publishing website 2022/03/04 00:01:49 at commit 2aa4da0

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 a69611b  Publishing website 2022/03/04 00:01:49 at commit 2aa4da0
a69611b is described below

commit a69611b5f016e626430964d92273d19d495b2d4f
Author: jenkins <bu...@apache.org>
AuthorDate: Fri Mar 4 00:01:50 2022 +0000

    Publishing website 2022/03/04 00:01:49 at commit 2aa4da0
---
 website/generated-content/documentation/index.xml  |  8 +++---
 .../documentation/programming-guide/index.html     | 10 +++----
 .../resources/learning-resources/index.html        |  2 +-
 .../documentation/sdks/go/index.html               |  2 +-
 website/generated-content/get-started/index.xml    | 32 +++++++++++-----------
 .../get-started/quickstart-go/index.html           |  8 +++---
 .../get-started/try-apache-beam/index.html         | 12 ++++----
 .../get-started/wordcount-example/index.html       | 16 +++++------
 website/generated-content/sitemap.xml              |  2 +-
 9 files changed, 46 insertions(+), 46 deletions(-)

diff --git a/website/generated-content/documentation/index.xml b/website/generated-content/documentation/index.xml
index a3268aa..b92b260 100644
--- a/website/generated-content/documentation/index.xml
+++ b/website/generated-content/documentation/index.xml
@@ -12099,7 +12099,7 @@ version = “v” 1*(DIGIT / “.”) ; For example, ‘v1.2’&lt;/code>&lt;/pr
 &lt;/ol>
 &lt;h4 id="1323-using-cross-language-transforms-in-a-go-pipeline">13.2.3. Using cross-language transforms in a Go pipeline&lt;/h4>
 &lt;p>If a Go-specific wrapper for a cross-language is available, use that. Otherwise, you have to use the
-lower-level &lt;a href="https://pkg.go.dev/github.com/apache/beam/sdks/go/pkg/beam#CrossLanguage">CrossLanguage&lt;/a>
+lower-level &lt;a href="https://pkg.go.dev/github.com/apache/beam/sdks/v2/go/pkg/beam#CrossLanguage">CrossLanguage&lt;/a>
 function to access the transform.&lt;/p>
 &lt;p>&lt;strong>Expansion Services&lt;/strong>&lt;/p>
 &lt;p>The Go SDK does not yet support automatically starting an expansion service. In order to use
@@ -12133,10 +12133,10 @@ Refer to &lt;a href="#create-x-lang-transforms">Creating cross-language transfor
 &lt;li>
 &lt;p>Use the &lt;code>beam.CrossLanguage&lt;/code> function in your pipeline as appropriate. Reference the URN, payload,
 expansion service address, and define inputs and outputs. You can use the
-&lt;a href="https://pkg.go.dev/github.com/apache/beam/sdks/go/pkg/beam#CrossLanguagePayload">beam.CrossLanguagePayload&lt;/a>
+&lt;a href="https://pkg.go.dev/github.com/apache/beam/sdks/v2/go/pkg/beam#CrossLanguagePayload">beam.CrossLanguagePayload&lt;/a>
 function as a helper for encoding a payload. You can use the
-&lt;a href="https://pkg.go.dev/github.com/apache/beam/sdks/go/pkg/beam#UnnamedInput">beam.UnnamedInput&lt;/a> and
-&lt;a href="https://pkg.go.dev/github.com/apache/beam/sdks/go/pkg/beam#UnnamedOutput">beam.UnnamedOutput&lt;/a>
+&lt;a href="https://pkg.go.dev/github.com/apache/beam/sdks/v2/go/pkg/beam#UnnamedInput">beam.UnnamedInput&lt;/a> and
+&lt;a href="https://pkg.go.dev/github.com/apache/beam/sdks/v2/go/pkg/beam#UnnamedOutput">beam.UnnamedOutput&lt;/a>
 functions as shortcuts for single, unnamed inputs/outputs or define a map for named ones.&lt;/p>
 &lt;div class="highlight">&lt;pre class="chroma">&lt;code class="language-go" data-lang="go">&lt;span class="kd">type&lt;/span> &lt;span class="nx">prefixPayload&lt;/span> &lt;span class="kd">struct&lt;/span> &lt;span class="p">{&lt;/span>
 &lt;span class="nx">Data&lt;/span> &lt;span class="kt">string&lt;/span> &lt;span class="s">`beam:&amp;#34;data&amp;#34;`&lt;/span>
diff --git a/website/generated-content/documentation/programming-guide/index.html b/website/generated-content/documentation/programming-guide/index.html
index cd575ab..445f6ba 100644
--- a/website/generated-content/documentation/programming-guide/index.html
+++ b/website/generated-content/documentation/programming-guide/index.html
@@ -4278,7 +4278,7 @@ version = “v” 1*(DIGIT / “.”)  ; For example, ‘v1.2’</code></pre></d
             <span class=o>&lt;</span><span class=n>Address</span> <span class=n>of</span> <span class=n>expansion</span> <span class=n>service</span><span class=o>&gt;</span><span class=p>))</span>
     <span class=n>assert_that</span><span class=p>(</span><span class=n>res</span><span class=p>,</span> <span class=n>equal_to</span><span class=p>([</span><span class=s1>&#39;0a&#39;</span><span class=p>,</span> <span class=s1>&#39;0b&#39;</span><span class=p>]))</span>
 </code></pre></div><p>For additional examples, see <a href=https://github.com/apache/beam/blob/master/examples/multi-language/python/addprefix.py>addprefix.py</a> and <a href=https://github.com/apache/beam/blob/master/examples/multi-language/python/javacount.py>javacount.py</a>.</p></li><li><p>After the job has been submitted to the Beam runner, shut down the expansion service by terminating the expansion service process.</p></li></ol><h4 id=1323-using-cross-language-transforms-in-a-go-p [...]
-lower-level <a href=https://pkg.go.dev/github.com/apache/beam/sdks/go/pkg/beam#CrossLanguage>CrossLanguage</a>
+lower-level <a href=https://pkg.go.dev/github.com/apache/beam/sdks/v2/go/pkg/beam#CrossLanguage>CrossLanguage</a>
 function to access the transform.</p><p><strong>Expansion Services</strong></p><p>The Go SDK does not yet support automatically starting an expansion service. In order to use
 cross-language transforms, you must manually start any necessary expansion services on your local
 machine and ensure they are accessible to your code during pipeline construction; see more at
@@ -4298,10 +4298,10 @@ and call it from your pipeline as shown in the example:</p><div class=highlight>
 </code></pre></div><p><strong>Using the CrossLanguage function</strong></p><p>When an SDK-specific wrapper isn&rsquo;t available, you will have to access the cross-language transform through the <code>beam.CrossLanguage</code> function.</p><ol><li><p>Make sure you have the appropriate expansion service running. See the expansion service section for details.</p></li><li><p>Make sure the transform you&rsquo;re trying to use is available and can be used by the expansion service.
 Refer to <a href=#create-x-lang-transforms>Creating cross-language transforms</a> for details.</p></li><li><p>Use the <code>beam.CrossLanguage</code> function in your pipeline as appropriate. Reference the URN, payload,
 expansion service address, and define inputs and outputs. You can use the
-<a href=https://pkg.go.dev/github.com/apache/beam/sdks/go/pkg/beam#CrossLanguagePayload>beam.CrossLanguagePayload</a>
+<a href=https://pkg.go.dev/github.com/apache/beam/sdks/v2/go/pkg/beam#CrossLanguagePayload>beam.CrossLanguagePayload</a>
 function as a helper for encoding a payload. You can use the
-<a href=https://pkg.go.dev/github.com/apache/beam/sdks/go/pkg/beam#UnnamedInput>beam.UnnamedInput</a> and
-<a href=https://pkg.go.dev/github.com/apache/beam/sdks/go/pkg/beam#UnnamedOutput>beam.UnnamedOutput</a>
+<a href=https://pkg.go.dev/github.com/apache/beam/sdks/v2/go/pkg/beam#UnnamedInput>beam.UnnamedInput</a> and
+<a href=https://pkg.go.dev/github.com/apache/beam/sdks/v2/go/pkg/beam#UnnamedOutput>beam.UnnamedOutput</a>
 functions as shortcuts for single, unnamed inputs/outputs or define a map for named ones.</p><div class=highlight><pre class=chroma><code class=language-go data-lang=go><span class=kd>type</span> <span class=nx>prefixPayload</span> <span class=kd>struct</span> <span class=p>{</span>
    <span class=nx>Data</span> <span class=kt>string</span> <span class=s>`beam:&#34;data&#34;`</span>
 <span class=p>}</span>
@@ -4311,7 +4311,7 @@ functions as shortcuts for single, unnamed inputs/outputs or define a map for na
 <span class=nx>outT</span> <span class=o>:=</span> <span class=nx>beam</span><span class=p>.</span><span class=nf>UnnamedOutput</span><span class=p>(</span><span class=nx>typex</span><span class=p>.</span><span class=nf>New</span><span class=p>(</span><span class=nx>reflectx</span><span class=p>.</span><span class=nx>String</span><span class=p>))</span>
 <span class=nx>res</span> <span class=o>:=</span> <span class=nx>beam</span><span class=p>.</span><span class=nf>CrossLanguage</span><span class=p>(</span><span class=nx>s</span><span class=p>,</span> <span class=nx>urn</span><span class=p>,</span> <span class=nx>payload</span><span class=p>,</span> <span class=nx>expansionAddr</span><span class=p>,</span> <span class=nx>beam</span><span class=p>.</span><span class=nf>UnnamedInput</span><span class=p>(</span><span class=nx>inputPCol</spa [...]
 </code></pre></div></li><li><p>After the job has been submitted to the Beam runner, shutdown the expansion service by
-terminating the expansion service process.</p></li></ol><h3 id=x-lang-transform-runner-support>13.3. Runner Support</h3><p>Currently, portable runners such as Flink, Spark, and the direct runner can be used with multi-language pipelines.</p><p>Dataflow supports multi-language pipelines through the Dataflow Runner v2 backend architecture.</p><h3 id=x-lang-transform-tips-troubleshooting>13.4 Tips and Troubleshooting</h3><p>For additional tips and troubleshooting information, see <a href=ht [...]
+terminating the expansion service process.</p></li></ol><h3 id=x-lang-transform-runner-support>13.3. Runner Support</h3><p>Currently, portable runners such as Flink, Spark, and the direct runner can be used with multi-language pipelines.</p><p>Dataflow supports multi-language pipelines through the Dataflow Runner v2 backend architecture.</p><h3 id=x-lang-transform-tips-troubleshooting>13.4 Tips and Troubleshooting</h3><p>For additional tips and troubleshooting information, see <a href=ht [...]
 <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/documentation/resources/learning-resources/index.html b/website/generated-content/documentation/resources/learning-resources/index.html
index 8bcc07a..8a5a4bb 100644
--- a/website/generated-content/documentation/resources/learning-resources/index.html
+++ b/website/generated-content/documentation/resources/learning-resources/index.html
@@ -23,7 +23,7 @@ that can help you to learn Apache Beam concepts and programming model hands-on.
 Built based on <a href=https://www.jetbrains.com/education/>JetBrains Educational Products</a>, Beam Katas
 objective is to provide a series of structured hands-on learning experiences for learners
 to understand about Apache Beam and its SDKs by solving exercises with gradually increasing
-complexity. Beam Katas are available for both Java and Python SDKs.</p><h3 id=java-1>Java</h3><ul><li>Download <a href="https://www.jetbrains.com/education/download/#section=idea">IntelliJ Edu</a></li><li>Upon opening the IDE, expand the &ldquo;Learn and Teach&rdquo; menu, then select &ldquo;Browse Courses&rdquo;</li><li>Search for &ldquo;Beam Katas - Java&rdquo;</li><li>Expand the &ldquo;Advanced Settings&rdquo; and modify the &ldquo;Location&rdquo; and &ldquo;Jdk&rdquo; appropriately</ [...]
+complexity. Beam Katas are available for both Java and Python SDKs.</p><h3 id=java-1>Java</h3><ul><li>Download <a href="https://www.jetbrains.com/education/download/#section=idea">IntelliJ Edu</a></li><li>Upon opening the IDE, expand the &ldquo;Learn and Teach&rdquo; menu, then select &ldquo;Browse Courses&rdquo;</li><li>Search for &ldquo;Beam Katas - Java&rdquo;</li><li>Expand the &ldquo;Advanced Settings&rdquo; and modify the &ldquo;Location&rdquo; and &ldquo;Jdk&rdquo; appropriately</ [...]
 <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/documentation/sdks/go/index.html b/website/generated-content/documentation/sdks/go/index.html
index 3d2e1a3..74fd242 100644
--- a/website/generated-content/documentation/sdks/go/index.html
+++ b/website/generated-content/documentation/sdks/go/index.html
@@ -19,7 +19,7 @@ function addPlaceholder(){$('input:text').attr('placeholder',"What are you looki
 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>Languages</span></li><li><span class=section-nav-list-title>Java</span><ul class=section-nav-list><li><a href=/documentation/sdks/java/>Java SDK overvi [...]
-It is based on the following <a href=https://s.apache.org/beam-go-sdk-design-rfc>design</a>.</p><h2 id=get-started-with-the-go-sdk>Get Started with the Go SDK</h2><p>Get started with the <a href=/get-started/quickstart-go>Beam Go SDK quickstart</a> to set up your development environment and run an example pipeline. Then, read through the <a href=/documentation/programming-guide>Beam programming guide</a> to learn the basic concepts that apply to all SDKs in Beam.</p><p>See the <a href=ht [...]
+It is based on the following <a href=https://s.apache.org/beam-go-sdk-design-rfc>design</a>.</p><h2 id=get-started-with-the-go-sdk>Get Started with the Go SDK</h2><p>Get started with the <a href=/get-started/quickstart-go>Beam Go SDK quickstart</a> to set up your development environment and run an example pipeline. Then, read through the <a href=/documentation/programming-guide>Beam programming guide</a> to learn the basic concepts that apply to all SDKs in Beam.</p><p>See the <a href=ht [...]
 It&rsquo;s possible to write many kinds of transforms, but specific built in transforms may still be missing.</p><p>Requests for specific transforms may be filed to the <a href="https://issues.apache.org/jira/issues/?jql=project%20%3D%20BEAM%20AND%20status%20in%20(Open%2C%20%22In%20Progress%22%2C%20Idea%2C%20%22Under%20Discussion%22%2C%20%22In%20Implementation%22%2C%20%22Triage%20Needed%22)%20AND%20component%20%3D%20sdk-go%20ORDER%20BY%20updated%20DESC"><code>sdk-go</code> component in J [...]
 Contributions are welcome.</p></div></div><footer class=footer><div class=footer__contained><div class=footer__cols><div class="footer__cols__col footer__cols__col__logos"><div class=footer__cols__col__logo><img src=/images/beam_logo_circle.svg class=footer__logo alt="Beam logo"></div><div class=footer__cols__col__logo><img src=/images/apache_logo_circle.svg class=footer__logo alt="Apache logo"></div></div><div class=footer-wrapper><div class=wrapper-grid><div class=footer__cols__col><di [...]
 <a href=http://www.apache.org>The Apache Software Foundation</a>
diff --git a/website/generated-content/get-started/index.xml b/website/generated-content/get-started/index.xml
index 97c13fb..e122b08 100644
--- a/website/generated-content/get-started/index.xml
+++ b/website/generated-content/get-started/index.xml
@@ -1065,7 +1065,7 @@ required arguments described in the examples.&lt;/p>
 &lt;a class="copy" type="button" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Copy to clipboard">
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
-&lt;pre>&lt;code class="language-direct" data-lang="direct">$ go install github.com/apache/beam/sdks/go/examples/wordcount
+&lt;pre>&lt;code class="language-direct" data-lang="direct">$ go install github.com/apache/beam/sdks/v2/go/examples/wordcount
 $ wordcount --input &amp;lt;PATH_TO_INPUT_FILE&amp;gt; --output counts&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -1074,7 +1074,7 @@ $ wordcount --input &amp;lt;PATH_TO_INPUT_FILE&amp;gt; --output counts&lt;/code>
 &lt;a class="copy" type="button" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Copy to clipboard">
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
-&lt;pre>&lt;code class="language-dataflow" data-lang="dataflow">$ go install github.com/apache/beam/sdks/go/examples/wordcount
+&lt;pre>&lt;code class="language-dataflow" data-lang="dataflow">$ go install github.com/apache/beam/sdks/v2/go/examples/wordcount
 # As part of the initial setup, for non linux users - install package unix before run
 $ go get -u golang.org/x/sys/unix
 $ wordcount --input gs://dataflow-samples/shakespeare/kinglear.txt \
@@ -1096,7 +1096,7 @@ $ wordcount --input gs://dataflow-samples/shakespeare/kinglear.txt \
 # -PsparkMasterUrl is optional. If it is unset the job will be run inside an embedded Spark cluster.
 $ ./gradlew :runners:spark:3:job-server:runShadow -PsparkMasterUrl=spark://localhost:7077
 # In a separate terminal, run:
-$ go install github.com/apache/beam/sdks/go/examples/wordcount
+$ go install github.com/apache/beam/sdks/v2/go/examples/wordcount
 $ wordcount --input &amp;lt;PATH_TO_INPUT_FILE&amp;gt; \
 --output counts \
 --runner spark \
@@ -1106,7 +1106,7 @@ $ wordcount --input &amp;lt;PATH_TO_INPUT_FILE&amp;gt; \
 &lt;h2 id="next-steps">Next Steps&lt;/h2>
 &lt;ul>
 &lt;li>Learn more about the &lt;a href="/documentation/sdks/go/">Beam SDK for Go&lt;/a>
-and look through the &lt;a href="https://pkg.go.dev/github.com/apache/beam/sdks/go/pkg/beam">godoc&lt;/a>.&lt;/li>
+and look through the &lt;a href="https://pkg.go.dev/github.com/apache/beam/sdks/v2/go/pkg/beam">godoc&lt;/a>.&lt;/li>
 &lt;li>Walk through these WordCount examples in the &lt;a href="/get-started/wordcount-example">WordCount Example Walkthrough&lt;/a>.&lt;/li>
 &lt;li>Take a self-paced tour through our &lt;a href="/documentation/resources/learning-resources">Learning Resources&lt;/a>.&lt;/li>
 &lt;li>Dive in to some of our favorite &lt;a href="/documentation/resources/videos-and-podcasts">Videos and Podcasts&lt;/a>.&lt;/li>
@@ -2419,7 +2419,7 @@ show other best practices.&lt;/p>
 &lt;a class="copy" type="button" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Copy to clipboard">
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
-&lt;div class="highlight">&lt;pre class="chroma">&lt;code class="language-go" data-lang="go">&lt;span class="err">$&lt;/span> &lt;span class="k">go&lt;/span> &lt;span class="nx">install&lt;/span> &lt;span class="nx">github&lt;/span>&lt;span class="p">.&lt;/span>&lt;span class="nx">com&lt;/span>&lt;span class="o">/&lt;/span>&lt;span class="nx">apache&lt;/span>&lt;span class="o">/&lt;/span>&lt;span class="nx">beam&lt;/span>&lt;span class="o">/&lt;/span>&lt;span class="nx">sdks&lt;/span>&lt [...]
+&lt;div class="highlight">&lt;pre class="chroma">&lt;code class="language-go" data-lang="go">&lt;span class="err">$&lt;/span> &lt;span class="k">go&lt;/span> &lt;span class="nx">install&lt;/span> &lt;span class="nx">github&lt;/span>&lt;span class="p">.&lt;/span>&lt;span class="nx">com&lt;/span>&lt;span class="o">/&lt;/span>&lt;span class="nx">apache&lt;/span>&lt;span class="o">/&lt;/span>&lt;span class="nx">beam&lt;/span>&lt;span class="o">/&lt;/span>&lt;span class="nx">sdks&lt;/span>&lt [...]
 &lt;span class="err">$&lt;/span> &lt;span class="nx">minimal_wordcount&lt;/span>&lt;/code>&lt;/pre>&lt;/div>
 &lt;/div>
 &lt;/div>
@@ -2910,7 +2910,7 @@ python -m apache_beam.examples.wordcount --input gs://dataflow-samples/shakespea
 &lt;a class="copy" type="button" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Copy to clipboard">
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
-&lt;pre>&lt;code class="language-direct" data-lang="direct">$ go install github.com/apache/beam/sdks/go/examples/wordcount
+&lt;pre>&lt;code class="language-direct" data-lang="direct">$ go install github.com/apache/beam/sdks/v2/go/examples/wordcount
 $ wordcount --input &amp;lt;PATH_TO_INPUT_FILE&amp;gt; --output counts&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -2943,7 +2943,7 @@ $ wordcount --input &amp;lt;PATH_TO_INPUT_FILE&amp;gt; --output counts&lt;/code>
 &lt;a class="copy" type="button" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Copy to clipboard">
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
-&lt;pre>&lt;code class="language-dataflow" data-lang="dataflow">$ go install github.com/apache/beam/sdks/go/examples/wordcount
+&lt;pre>&lt;code class="language-dataflow" data-lang="dataflow">$ go install github.com/apache/beam/sdks/v2/go/examples/wordcount
 # As part of the initial setup, for non linux users - install package unix before run
 $ go get -u golang.org/x/sys/unix
 $ wordcount --input gs://dataflow-samples/shakespeare/kinglear.txt \
@@ -3341,7 +3341,7 @@ python -m apache_beam.examples.wordcount_debugging --input gs://dataflow-samples
 &lt;a class="copy" type="button" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Copy to clipboard">
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
-&lt;pre>&lt;code class="language-direct" data-lang="direct">$ go install github.com/apache/beam/sdks/go/examples/debugging_wordcount
+&lt;pre>&lt;code class="language-direct" data-lang="direct">$ go install github.com/apache/beam/sdks/v2/go/examples/debugging_wordcount
 $ debugging_wordcount --input &amp;lt;PATH_TO_INPUT_FILE&amp;gt; --output counts&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -3374,7 +3374,7 @@ $ debugging_wordcount --input &amp;lt;PATH_TO_INPUT_FILE&amp;gt; --output counts
 &lt;a class="copy" type="button" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Copy to clipboard">
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
-&lt;pre>&lt;code class="language-dataflow" data-lang="dataflow">$ go install github.com/apache/beam/sdks/go/examples/debugging_wordcount
+&lt;pre>&lt;code class="language-dataflow" data-lang="dataflow">$ go install github.com/apache/beam/sdks/v2/go/examples/debugging_wordcount
 # As part of the initial setup, for non linux users - install package unix before run
 $ go get -u golang.org/x/sys/unix
 $ debugging_wordcount --input gs://dataflow-samples/shakespeare/kinglear.txt \
@@ -3771,7 +3771,7 @@ python -m apache_beam.examples.windowed_wordcount --input YOUR_INPUT_FILE \
 &lt;a class="copy" type="button" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Copy to clipboard">
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
-&lt;pre>&lt;code class="language-direct" data-lang="direct">$ go install github.com/apache/beam/sdks/go/examples/windowed_wordcount
+&lt;pre>&lt;code class="language-direct" data-lang="direct">$ go install github.com/apache/beam/sdks/v2/go/examples/windowed_wordcount
 $ windowed_wordcount --input &amp;lt;PATH_TO_INPUT_FILE&amp;gt; --output counts&lt;/code>&lt;/pre>
 &lt;/div>
 &lt;/div>
@@ -3804,7 +3804,7 @@ $ windowed_wordcount --input &amp;lt;PATH_TO_INPUT_FILE&amp;gt; --output counts&
 &lt;a class="copy" type="button" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Copy to clipboard">
 &lt;img src="/images/copy-icon.svg"/>
 &lt;/a>
-&lt;pre>&lt;code class="language-dataflow" data-lang="dataflow">$ go install github.com/apache/beam/sdks/go/examples/windowed_wordcount
+&lt;pre>&lt;code class="language-dataflow" data-lang="dataflow">$ go install github.com/apache/beam/sdks/v2/go/examples/windowed_wordcount
 # As part of the initial setup, for non linux users - install package unix before run
 $ go get -u golang.org/x/sys/unix
 $ windowed_wordcount --input gs://dataflow-samples/shakespeare/kinglear.txt \
@@ -4803,11 +4803,11 @@ View on GitHub
 &lt;span class="s">&amp;#34;flag&amp;#34;&lt;/span>
 &lt;span class="s">&amp;#34;fmt&amp;#34;&lt;/span>
 &lt;span class="s">&amp;#34;regexp&amp;#34;&lt;/span>
-&lt;span class="s">&amp;#34;github.com/apache/beam/sdks/go/pkg/beam&amp;#34;&lt;/span>
-&lt;span class="s">&amp;#34;github.com/apache/beam/sdks/go/pkg/beam/io/textio&amp;#34;&lt;/span>
-&lt;span class="s">&amp;#34;github.com/apache/beam/sdks/go/pkg/beam/runners/direct&amp;#34;&lt;/span>
-&lt;span class="s">&amp;#34;github.com/apache/beam/sdks/go/pkg/beam/transforms/stats&amp;#34;&lt;/span>
-&lt;span class="nx">_&lt;/span> &lt;span class="s">&amp;#34;github.com/apache/beam/sdks/go/pkg/beam/io/filesystem/local&amp;#34;&lt;/span>
+&lt;span class="s">&amp;#34;github.com/apache/beam/sdks/v2/go/pkg/beam&amp;#34;&lt;/span>
+&lt;span class="s">&amp;#34;github.com/apache/beam/sdks/v2/go/pkg/beam/io/textio&amp;#34;&lt;/span>
+&lt;span class="s">&amp;#34;github.com/apache/beam/sdks/v2/go/pkg/beam/runners/direct&amp;#34;&lt;/span>
+&lt;span class="s">&amp;#34;github.com/apache/beam/sdks/v2/go/pkg/beam/transforms/stats&amp;#34;&lt;/span>
+&lt;span class="nx">_&lt;/span> &lt;span class="s">&amp;#34;github.com/apache/beam/sdks/v2/go/pkg/beam/io/filesystem/local&amp;#34;&lt;/span>
 &lt;span class="p">)&lt;/span>
 &lt;span class="kd">var&lt;/span> &lt;span class="p">(&lt;/span>
 &lt;span class="nx">input&lt;/span> &lt;span class="p">=&lt;/span> &lt;span class="nx">flag&lt;/span>&lt;span class="p">.&lt;/span>&lt;span class="nf">String&lt;/span>&lt;span class="p">(&lt;/span>&lt;span class="s">&amp;#34;input&amp;#34;&lt;/span>&lt;span class="p">,&lt;/span> &lt;span class="s">&amp;#34;data/*&amp;#34;&lt;/span>&lt;span class="p">,&lt;/span> &lt;span class="s">&amp;#34;File(s) to read.&amp;#34;&lt;/span>&lt;span class="p">)&lt;/span>
diff --git a/website/generated-content/get-started/quickstart-go/index.html b/website/generated-content/get-started/quickstart-go/index.html
index de0b459..c731ace 100644
--- a/website/generated-content/get-started/quickstart-go/index.html
+++ b/website/generated-content/get-started/quickstart-go/index.html
@@ -21,8 +21,8 @@ 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 [...]
 <a href=https://github.com/apache/beam/tree/master/sdks/go/examples>examples</a>
 directory has many examples. All examples can be run by passing the
-required arguments described in the examples.</p><p>For example, to run <code>wordcount</code>, run:</p><div class="runner-direct snippet"><div class="notebook-skip code-snippet"><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 class=language-direct data-lang=direct>$ go install github.com/apache/beam/sdks/go/examples/wordcount
-$ wordcount --input &lt;PATH_TO_INPUT_FILE&gt; --output counts</code></pre></div></div><div class="runner-dataflow snippet"><div class="notebook-skip code-snippet"><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 class=language-dataflow data-lang=dataflow>$ go install github.com/apache/beam/sdks/go/examples/wordcount
+required arguments described in the examples.</p><p>For example, to run <code>wordcount</code>, run:</p><div class="runner-direct snippet"><div class="notebook-skip code-snippet"><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 class=language-direct data-lang=direct>$ go install github.com/apache/beam/sdks/v2/go/examples/wordcount
+$ wordcount --input &lt;PATH_TO_INPUT_FILE&gt; --output counts</code></pre></div></div><div class="runner-dataflow snippet"><div class="notebook-skip code-snippet"><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 class=language-dataflow data-lang=dataflow>$ go install github.com/apache/beam/sdks/v2/go/examples/wordcount
 # As part of the initial setup, for non linux users - install package unix before run
 $ go get -u golang.org/x/sys/unix
 $ wordcount --input gs://dataflow-samples/shakespeare/kinglear.txt \
@@ -37,12 +37,12 @@ $ wordcount --input gs://dataflow-samples/shakespeare/kinglear.txt \
 $ ./gradlew :runners:spark:3:job-server:runShadow -PsparkMasterUrl=spark://localhost:7077
 
 # In a separate terminal, run:
-$ go install github.com/apache/beam/sdks/go/examples/wordcount
+$ go install github.com/apache/beam/sdks/v2/go/examples/wordcount
 $ wordcount --input &lt;PATH_TO_INPUT_FILE&gt; \
             --output counts \
             --runner spark \
             --endpoint localhost:8099</code></pre></div></div><h2 id=next-steps>Next Steps</h2><ul><li>Learn more about the <a href=/documentation/sdks/go/>Beam SDK for Go</a>
-and look through the <a href=https://pkg.go.dev/github.com/apache/beam/sdks/go/pkg/beam>godoc</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://pkg.go.dev/github.com/apache/beam/sdks/v2/go/pkg/beam>godoc</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 h [...]
 <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/get-started/try-apache-beam/index.html b/website/generated-content/get-started/try-apache-beam/index.html
index 3bb7c95..25cc92f 100644
--- a/website/generated-content/get-started/try-apache-beam/index.html
+++ b/website/generated-content/get-started/try-apache-beam/index.html
@@ -77,12 +77,12 @@ function openMenu(){addPlaceholder();blockScroll();}</script><div class="clearfi
 	<span class=s>&#34;fmt&#34;</span>
 	<span class=s>&#34;regexp&#34;</span>
 
-	<span class=s>&#34;github.com/apache/beam/sdks/go/pkg/beam&#34;</span>
-	<span class=s>&#34;github.com/apache/beam/sdks/go/pkg/beam/io/textio&#34;</span>
-	<span class=s>&#34;github.com/apache/beam/sdks/go/pkg/beam/runners/direct&#34;</span>
-	<span class=s>&#34;github.com/apache/beam/sdks/go/pkg/beam/transforms/stats&#34;</span>
+	<span class=s>&#34;github.com/apache/beam/sdks/v2/go/pkg/beam&#34;</span>
+	<span class=s>&#34;github.com/apache/beam/sdks/v2/go/pkg/beam/io/textio&#34;</span>
+	<span class=s>&#34;github.com/apache/beam/sdks/v2/go/pkg/beam/runners/direct&#34;</span>
+	<span class=s>&#34;github.com/apache/beam/sdks/v2/go/pkg/beam/transforms/stats&#34;</span>
 
-	<span class=nx>_</span> <span class=s>&#34;github.com/apache/beam/sdks/go/pkg/beam/io/filesystem/local&#34;</span>
+	<span class=nx>_</span> <span class=s>&#34;github.com/apache/beam/sdks/v2/go/pkg/beam/io/filesystem/local&#34;</span>
 <span class=p>)</span>
 
 <span class=kd>var</span> <span class=p>(</span>
@@ -114,7 +114,7 @@ function openMenu(){addPlaceholder();blockScroll();}</script><div class="clearfi
 
 	<span class=nx>direct</span><span class=p>.</span><span class=nf>Execute</span><span class=p>(</span><span class=nx>context</span><span class=p>.</span><span class=nf>Background</span><span class=p>(),</span> <span class=nx>pipeline</span><span class=p>)</span>
 <span class=p>}</span></code></pre></div></div></div><p class=language-go><a class="button button--primary" target=_blank href=https://colab.sandbox.google.com/github/apache/beam/blob/master/examples/notebooks/get-started/try-apache-beam-go.ipynb>Run in Colab</a>
-<a class="button button--primary" target=_blank href=https://github.com/apache/beam/blob/master/examples/notebooks/get-started/try-apache-beam-go.ipynb>View on GitHub</a></p><p class=language-go>To learn how to install and run the Apache Beam Go SDK on your own computer, follow the instructions in the <a href=/get-started/quickstart-go>Go Quickstart</a>.</p><p>For a more detailed explanation about how WordCount works, see the <a href=/get-started/wordcount-example>WordCount Example Walkt [...]
+<a class="button button--primary" target=_blank href=https://github.com/apache/beam/blob/master/examples/notebooks/get-started/try-apache-beam-go.ipynb>View on GitHub</a></p><p class=language-go>To learn how to install and run the Apache Beam Go SDK on your own computer, follow the instructions in the <a href=/get-started/quickstart-go>Go Quickstart</a>.</p><p>For a more detailed explanation about how WordCount works, see the <a href=/get-started/wordcount-example>WordCount Example Walkt [...]
 <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/get-started/wordcount-example/index.html b/website/generated-content/get-started/wordcount-example/index.html
index 7cc86a8..570a088 100644
--- a/website/generated-content/get-started/wordcount-example/index.html
+++ b/website/generated-content/get-started/wordcount-example/index.html
@@ -35,7 +35,7 @@ perform any error checking; it is intended to only show you the &ldquo;bare bone
 creating a Beam pipeline. This lack of parameterization makes this particular
 pipeline less portable across different runners than standard Beam pipelines. In
 later examples, we will parameterize the pipeline&rsquo;s input and output sources and
-show other best practices.</p><div class="language-java snippet"><div class="notebook-skip code-snippet"><a class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img src=/images/copy-icon.svg></a><div class=highlight><pre class=chroma><code class=language-java data-lang=java><span class=n>$</span> <span class=n>mvn</span> <span class=n>compile</span> <span class=n>exec</span><span class=o>:</span><span class=n>java</span> <span class=o>-</span> [...]
+show other best practices.</p><div class="language-java snippet"><div class="notebook-skip code-snippet"><a class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img src=/images/copy-icon.svg></a><div class=highlight><pre class=chroma><code class=language-java data-lang=java><span class=n>$</span> <span class=n>mvn</span> <span class=n>compile</span> <span class=n>exec</span><span class=o>:</span><span class=n>java</span> <span class=o>-</span> [...]
 <span class=err>$</span> <span class=nx>minimal_wordcount</span></code></pre></div></div></div><p class=language-java>To view the full code in Java, see
 <strong><a href=https://github.com/apache/beam/blob/master/examples/java/src/main/java/org/apache/beam/examples/MinimalWordCount.java>MinimalWordCount</a>.</strong></p><p class=language-py>To view the full code in Python, see
 <strong><a href=https://github.com/apache/beam/blob/master/sdks/python/apache_beam/examples/wordcount_minimal.py>wordcount_minimal.py</a>.</strong></p><p class=language-go>To view the full code in Go, see
@@ -150,8 +150,8 @@ python -m apache_beam.examples.wordcount --input gs://dataflow-samples/shakespea
                                          --project YOUR_GCP_PROJECT \
                                          --region YOUR_GCP_REGION \
                                          --temp_location gs://YOUR_GCS_BUCKET/tmp/</code></pre></div></div><div class="runner-samza snippet"><div class="notebook-skip code-snippet"><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 class=language-samza data-lang=samza>This runner is not yet available for the Python SDK.</code></pre></div></div><div class="runner-nemo snippet"><div class="notebo [...]
-<strong><a href=https://github.com/apache/beam/blob/master/sdks/python/apache_beam/examples/wordcount.py>wordcount.py</a>.</strong></p><p><strong>To run this example in Go:</strong></p><div class="runner-direct snippet"><div class="notebook-skip code-snippet"><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 class=language-direct data-lang=direct>$ go install github.com/apache/beam/sdks/go/exa [...]
-$ wordcount --input &lt;PATH_TO_INPUT_FILE&gt; --output counts</code></pre></div></div><div class="runner-flink snippet"><div class="notebook-skip code-snippet"><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 class=language-flink data-lang=flink>This runner is not yet available for the Go SDK.</code></pre></div></div><div class="runner-flinkCluster snippet"><div class="notebook-skip code-sni [...]
+<strong><a href=https://github.com/apache/beam/blob/master/sdks/python/apache_beam/examples/wordcount.py>wordcount.py</a>.</strong></p><p><strong>To run this example in Go:</strong></p><div class="runner-direct snippet"><div class="notebook-skip code-snippet"><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 class=language-direct data-lang=direct>$ go install github.com/apache/beam/sdks/v2/go/ [...]
+$ wordcount --input &lt;PATH_TO_INPUT_FILE&gt; --output counts</code></pre></div></div><div class="runner-flink snippet"><div class="notebook-skip code-snippet"><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 class=language-flink data-lang=flink>This runner is not yet available for the Go SDK.</code></pre></div></div><div class="runner-flinkCluster snippet"><div class="notebook-skip code-sni [...]
 # As part of the initial setup, for non linux users - install package unix before run
 $ go get -u golang.org/x/sys/unix
 $ wordcount --input gs://dataflow-samples/shakespeare/kinglear.txt \
@@ -308,8 +308,8 @@ python -m apache_beam.examples.wordcount_debugging --input gs://dataflow-samples
                                          --runner DataflowRunner \
                                          --project YOUR_GCP_PROJECT \
                                          --temp_location gs://YOUR_GCS_BUCKET/tmp/</code></pre></div></div><div class="runner-samza snippet"><div class="notebook-skip code-snippet"><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 class=language-samza data-lang=samza>This runner is not yet available for the Python SDK.</code></pre></div></div><div class="runner-nemo snippet"><div class="notebo [...]
-<strong><a href=https://github.com/apache/beam/blob/master/sdks/python/apache_beam/examples/wordcount_debugging.py>wordcount_debugging.py</a>.</strong></p><p><strong>To run this example in Go:</strong></p><div class="runner-direct snippet"><div class="notebook-skip code-snippet"><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 class=language-direct data-lang=direct>$ go install github.com/apa [...]
-$ debugging_wordcount --input &lt;PATH_TO_INPUT_FILE&gt; --output counts</code></pre></div></div><div class="runner-flink snippet"><div class="notebook-skip code-snippet"><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 class=language-flink data-lang=flink>This runner is not yet available for the Go SDK.</code></pre></div></div><div class="runner-flinkCluster snippet"><div class="notebook-ski [...]
+<strong><a href=https://github.com/apache/beam/blob/master/sdks/python/apache_beam/examples/wordcount_debugging.py>wordcount_debugging.py</a>.</strong></p><p><strong>To run this example in Go:</strong></p><div class="runner-direct snippet"><div class="notebook-skip code-snippet"><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 class=language-direct data-lang=direct>$ go install github.com/apa [...]
+$ debugging_wordcount --input &lt;PATH_TO_INPUT_FILE&gt; --output counts</code></pre></div></div><div class="runner-flink snippet"><div class="notebook-skip code-snippet"><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 class=language-flink data-lang=flink>This runner is not yet available for the Go SDK.</code></pre></div></div><div class="runner-flinkCluster snippet"><div class="notebook-ski [...]
 # As part of the initial setup, for non linux users - install package unix before run
 $ go get -u golang.org/x/sys/unix
 $ debugging_wordcount --input gs://dataflow-samples/shakespeare/kinglear.txt \
@@ -460,8 +460,8 @@ python -m apache_beam.examples.windowed_wordcount --input YOUR_INPUT_FILE \
                                          --runner DataflowRunner \
                                          --project YOUR_GCP_PROJECT \
                                          --temp_location gs://YOUR_GCS_BUCKET/tmp/</code></pre></div></div><div class="runner-samza snippet"><div class="notebook-skip code-snippet"><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 class=language-samza data-lang=samza>This runner is not yet available for the Python SDK.</code></pre></div></div><div class="runner-nemo snippet"><div class="notebo [...]
-<strong><a href=https://github.com/apache/beam/blob/master/sdks/python/apache_beam/examples/windowed_wordcount.py>windowed_wordcount.py</a>.</strong></p><p><strong>To run this example in Go:</strong></p><div class="runner-direct snippet"><div class="notebook-skip code-snippet"><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 class=language-direct data-lang=direct>$ go install github.com/apach [...]
-$ windowed_wordcount --input &lt;PATH_TO_INPUT_FILE&gt; --output counts</code></pre></div></div><div class="runner-flink snippet"><div class="notebook-skip code-snippet"><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 class=language-flink data-lang=flink>This runner is not yet available for the Go SDK.</code></pre></div></div><div class="runner-flinkCluster snippet"><div class="notebook-skip [...]
+<strong><a href=https://github.com/apache/beam/blob/master/sdks/python/apache_beam/examples/windowed_wordcount.py>windowed_wordcount.py</a>.</strong></p><p><strong>To run this example in Go:</strong></p><div class="runner-direct snippet"><div class="notebook-skip code-snippet"><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 class=language-direct data-lang=direct>$ go install github.com/apach [...]
+$ windowed_wordcount --input &lt;PATH_TO_INPUT_FILE&gt; --output counts</code></pre></div></div><div class="runner-flink snippet"><div class="notebook-skip code-snippet"><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 class=language-flink data-lang=flink>This runner is not yet available for the Go SDK.</code></pre></div></div><div class="runner-flinkCluster snippet"><div class="notebook-skip [...]
 # As part of the initial setup, for non linux users - install package unix before run
 $ go get -u golang.org/x/sys/unix
 $ windowed_wordcount --input gs://dataflow-samples/shakespeare/kinglear.txt \
@@ -602,7 +602,7 @@ Google Pub/Sub. The code formats the results and writes them to a Pub/Sub topic
 using <a href=https://beam.apache.org/releases/pydoc/2.36.0/apache_beam.io.gcp.pubsub.html#apache_beam.io.gcp.pubsub.WriteToPubSub><code>beam.io.WriteToPubSub</code></a>.</p><div class="language-java snippet"><div class="notebook-skip code-snippet"><a class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img src=/images/copy-icon.svg></a><div class=highlight><pre class=chroma><code class=language-java data-lang=java>  <span class=o>//</span> <s [...]
   <span class=n>_</span> <span class=o>=</span> <span class=p>(</span><span class=n>output</span>
     <span class=o>|</span> <span class=s1>&#39;EncodeString&#39;</span> <span class=o>&gt;&gt;</span> <span class=n>Map</span><span class=p>(</span><span class=k>lambda</span> <span class=n>s</span><span class=p>:</span> <span class=n>s</span><span class=o>.</span><span class=n>encode</span><span class=p>(</span><span class=s1>&#39;utf-8&#39;</span><span class=p>))</span>
-    <span class=o>|</span> <span class=n>beam</span><span class=o>.</span><span class=n>io</span><span class=o>.</span><span class=n>WriteToPubSub</span><span class=p>(</span><span class=n>known_args</span><span class=o>.</span><span class=n>output_topic</span><span class=p>))</span></code></pre></div></div></div><div class="language-go snippet"><div class="notebook-skip code-snippet"><a class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img [...]
+    <span class=o>|</span> <span class=n>beam</span><span class=o>.</span><span class=n>io</span><span class=o>.</span><span class=n>WriteToPubSub</span><span class=p>(</span><span class=n>known_args</span><span class=o>.</span><span class=n>output_topic</span><span class=p>))</span></code></pre></div></div></div><div class="language-go snippet"><div class="notebook-skip code-snippet"><a class=copy type=button data-bs-toggle=tooltip data-bs-placement=bottom title="Copy to clipboard"><img [...]
 <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 fa2936e..75ad00a 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>/categories/blog/</loc><lastmod>2022-03-01T11:27:44-08:00</lastmod></url><url><loc>/blog/</loc><lastmod>2022-03-01T11:27:44-08:00</lastmod></url><url><loc>/categories/</loc><lastmod>2022-03-01T11:27:44-08:00</lastmod></url><url><loc>/blog/upcoming-events-for-beam-in-2022/</loc><lastmod>2022-03-01T11:27:44-08:00</lastmod></ [...]
\ 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>/categories/blog/</loc><lastmod>2022-03-01T11:27:44-08:00</lastmod></url><url><loc>/blog/</loc><lastmod>2022-03-01T11:27:44-08:00</lastmod></url><url><loc>/categories/</loc><lastmod>2022-03-01T11:27:44-08:00</lastmod></url><url><loc>/blog/upcoming-events-for-beam-in-2022/</loc><lastmod>2022-03-01T11:27:44-08:00</lastmod></ [...]
\ No newline at end of file