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 9beec35  Publishing website 2021/01/12 00:03:10 at commit dd71c9a
9beec35 is described below

commit 9beec35b1be3e75d2ea5a8746cac73d505daa660
Author: jenkins <[email protected]>
AuthorDate: Tue Jan 12 00:03:10 2021 +0000

    Publishing website 2021/01/12 00:03:10 at commit dd71c9a
---
 website/generated-content/documentation/index.xml    | 19 +++++++++++--------
 .../io/built-in/google-bigquery/index.html           | 20 +++++++++++---------
 website/generated-content/sitemap.xml                |  2 +-
 3 files changed, 23 insertions(+), 18 deletions(-)

diff --git a/website/generated-content/documentation/index.xml 
b/website/generated-content/documentation/index.xml
index 17d974a..04e9667 100644
--- a/website/generated-content/documentation/index.xml
+++ b/website/generated-content/documentation/index.xml
@@ -12437,11 +12437,14 @@ use &lt;code>readTableRows&lt;/code>.&lt;/p>
 Avro &lt;code>GenericRecord&lt;/code> into your custom type, or use 
&lt;code>readTableRows()&lt;/code> to parse
 them into JSON &lt;code>TableRow&lt;/code> objects.&lt;/p>
 &lt;!-- Python specific -->
-&lt;p class="language-py">To read from a BigQuery table using the Beam SDK for 
Python, apply a &lt;code>Read&lt;/code>
-transform on a &lt;code>BigQuerySource&lt;/code>. Read returns a 
&lt;code>PCollection&lt;/code> of dictionaries,
+&lt;p class="language-py">To read from a BigQuery table using the Beam SDK for 
Python, apply a &lt;code>ReadFromBigQuery&lt;/code>
+transfrom. &lt;code>ReadFromBigQuery&lt;/code> returns a 
&lt;code>PCollection&lt;/code> of dictionaries,
 where each element in the &lt;code>PCollection&lt;/code> represents a single 
row in the table.
 Integer values in the &lt;code>TableRow&lt;/code> objects are encoded as 
strings to match
 BigQuery&amp;rsquo;s exported JSON format.&lt;/p>
+&lt;p class="language-py">&lt;em>&lt;strong>Note:&lt;/strong>&lt;/em> 
&lt;code>BigQuerySource()&lt;/code> is deprecated as of Beam SDK 2.25.0. Before 
2.25.0, to read from
+a BigQuery table using the Beam SDK, you will apply a &lt;code>Read&lt;/code> 
transform on a &lt;code>BigQuerySource&lt;/code>. For example,
+&lt;code>beam.io.Read(beam.io.BigQuerySource(table_spec))&lt;/code>.&lt;/p>
 &lt;h3 id="reading-from-a-table">Reading from a table&lt;/h3>
 &lt;p class="language-java">To read an entire BigQuery table, use the 
&lt;code>from&lt;/code> method with a BigQuery table
 name. This example uses &lt;code>readTableRows&lt;/code>.&lt;/p>
@@ -12480,7 +12483,7 @@ then extracts the &lt;code>max_temperature&lt;/code> 
column.&lt;/p>
 &lt;div class=language-py>
 &lt;div class="highlight">&lt;pre class="chroma">&lt;code class="language-py" 
data-lang="py">&lt;span class="n">max_temperatures&lt;/span> &lt;span 
class="o">=&lt;/span> &lt;span class="p">(&lt;/span>
 &lt;span class="n">p&lt;/span>
-&lt;span class="o">|&lt;/span> &lt;span 
class="s1">&amp;#39;ReadTable&amp;#39;&lt;/span> &lt;span 
class="o">&amp;gt;&amp;gt;&lt;/span> &lt;span class="n">beam&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">io&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">Read&lt;/span>&lt;span 
class="p">(&lt;/span>&lt;span class="n">beam&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">io&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">BigQuerySource&lt;/span>&lt [...]
+&lt;span class="o">|&lt;/span> &lt;span 
class="s1">&amp;#39;ReadTable&amp;#39;&lt;/span> &lt;span 
class="o">&amp;gt;&amp;gt;&lt;/span> &lt;span class="n">beam&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">io&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">ReadFromBigQuery&lt;/span>&lt;span 
class="p">(&lt;/span>&lt;span class="n">table&lt;/span>&lt;span 
class="o">=&lt;/span>&lt;span class="n">table_spec&lt;/span>&lt;span 
class="p">)&lt;/span>
 &lt;span class="c1"># Each row is a dictionary where the keys are the BigQuery 
columns&lt;/span>
 &lt;span class="o">|&lt;/span> &lt;span class="n">beam&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">Map&lt;/span>&lt;span 
class="p">(&lt;/span>&lt;span class="k">lambda&lt;/span> &lt;span 
class="n">elem&lt;/span>&lt;span class="p">:&lt;/span> &lt;span 
class="n">elem&lt;/span>&lt;span class="p">[&lt;/span>&lt;span 
class="s1">&amp;#39;max_temperature&amp;#39;&lt;/span>&lt;span 
class="p">]))&lt;/span>&lt;/code>&lt;/pre>&lt;/div>
 &lt;/div>
@@ -12488,7 +12491,7 @@ then extracts the &lt;code>max_temperature&lt;/code> 
column.&lt;/p>
 &lt;p class="language-java">If you don&amp;rsquo;t want to read an entire 
table, you can supply a query string with
 the &lt;code>fromQuery&lt;/code> method.&lt;/p>
 &lt;p class="language-py">If you don&amp;rsquo;t want to read an entire table, 
you can supply a query string to
-&lt;code>BigQuerySource&lt;/code> by specifying the &lt;code>query&lt;/code> 
parameter.&lt;/p>
+&lt;code>ReadFromBigQuery&lt;/code> by specifying the &lt;code>query&lt;/code> 
parameter.&lt;/p>
 &lt;p class="language-py">The following code uses a SQL query to only read the 
&lt;code>max_temperature&lt;/code> column.&lt;/p>
 &lt;div class=language-java>
 &lt;div class="highlight">&lt;pre class="chroma">&lt;code 
class="language-java" data-lang="java">&lt;span class="kn">import&lt;/span> 
&lt;span 
class="nn">org.apache.beam.examples.snippets.transforms.io.gcp.bigquery.BigQueryMyData.MyData&lt;/span>&lt;span
 class="o">;&lt;/span>
@@ -12523,9 +12526,9 @@ the &lt;code>fromQuery&lt;/code> method.&lt;/p>
 &lt;div class=language-py>
 &lt;div class="highlight">&lt;pre class="chroma">&lt;code class="language-py" 
data-lang="py">&lt;span class="n">max_temperatures&lt;/span> &lt;span 
class="o">=&lt;/span> &lt;span class="p">(&lt;/span>
 &lt;span class="n">p&lt;/span>
-&lt;span class="o">|&lt;/span> &lt;span 
class="s1">&amp;#39;QueryTable&amp;#39;&lt;/span> &lt;span 
class="o">&amp;gt;&amp;gt;&lt;/span> &lt;span class="n">beam&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">io&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">Read&lt;/span>&lt;span 
class="p">(&lt;/span>&lt;span class="n">beam&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">io&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">BigQuerySource&lt;/span>&l [...]
+&lt;span class="o">|&lt;/span> &lt;span 
class="s1">&amp;#39;QueryTable&amp;#39;&lt;/span> &lt;span 
class="o">&amp;gt;&amp;gt;&lt;/span> &lt;span class="n">beam&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">io&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">ReadFromBigQuery&lt;/span>&lt;span 
class="p">(&lt;/span>
 &lt;span class="n">query&lt;/span>&lt;span class="o">=&lt;/span>&lt;span 
class="s1">&amp;#39;SELECT max_temperature FROM &amp;#39;&lt;/span>\
-&lt;span 
class="s1">&amp;#39;[clouddataflow-readonly:samples.weather_stations]&amp;#39;&lt;/span>&lt;span
 class="p">))&lt;/span>
+&lt;span 
class="s1">&amp;#39;[clouddataflow-readonly:samples.weather_stations]&amp;#39;&lt;/span>&lt;span
 class="p">)&lt;/span>
 &lt;span class="c1"># Each row is a dictionary where the keys are the BigQuery 
columns&lt;/span>
 &lt;span class="o">|&lt;/span> &lt;span class="n">beam&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">Map&lt;/span>&lt;span 
class="p">(&lt;/span>&lt;span class="k">lambda&lt;/span> &lt;span 
class="n">elem&lt;/span>&lt;span class="p">:&lt;/span> &lt;span 
class="n">elem&lt;/span>&lt;span class="p">[&lt;/span>&lt;span 
class="s1">&amp;#39;max_temperature&amp;#39;&lt;/span>&lt;span 
class="p">]))&lt;/span>&lt;/code>&lt;/pre>&lt;/div>
 &lt;/div>
@@ -12544,10 +12547,10 @@ in the following example:&lt;/p>
 &lt;div class=language-py>
 &lt;div class="highlight">&lt;pre class="chroma">&lt;code class="language-py" 
data-lang="py">&lt;span class="n">max_temperatures&lt;/span> &lt;span 
class="o">=&lt;/span> &lt;span class="p">(&lt;/span>
 &lt;span class="n">p&lt;/span>
-&lt;span class="o">|&lt;/span> &lt;span 
class="s1">&amp;#39;QueryTableStdSQL&amp;#39;&lt;/span> &lt;span 
class="o">&amp;gt;&amp;gt;&lt;/span> &lt;span class="n">beam&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">io&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">Read&lt;/span>&lt;span 
class="p">(&lt;/span>&lt;span class="n">beam&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">io&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">BigQuerySource&lt;/s [...]
+&lt;span class="o">|&lt;/span> &lt;span 
class="s1">&amp;#39;QueryTableStdSQL&amp;#39;&lt;/span> &lt;span 
class="o">&amp;gt;&amp;gt;&lt;/span> &lt;span class="n">beam&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">io&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">ReadFromBigQuery&lt;/span>&lt;span 
class="p">(&lt;/span>
 &lt;span class="n">query&lt;/span>&lt;span class="o">=&lt;/span>&lt;span 
class="s1">&amp;#39;SELECT max_temperature FROM &amp;#39;&lt;/span>\
 &lt;span 
class="s1">&amp;#39;`clouddataflow-readonly.samples.weather_stations`&amp;#39;&lt;/span>&lt;span
 class="p">,&lt;/span>
-&lt;span class="n">use_standard_sql&lt;/span>&lt;span 
class="o">=&lt;/span>&lt;span class="bp">True&lt;/span>&lt;span 
class="p">))&lt;/span>
+&lt;span class="n">use_standard_sql&lt;/span>&lt;span 
class="o">=&lt;/span>&lt;span class="bp">True&lt;/span>&lt;span 
class="p">)&lt;/span>
 &lt;span class="c1"># Each row is a dictionary where the keys are the BigQuery 
columns&lt;/span>
 &lt;span class="o">|&lt;/span> &lt;span class="n">beam&lt;/span>&lt;span 
class="o">.&lt;/span>&lt;span class="n">Map&lt;/span>&lt;span 
class="p">(&lt;/span>&lt;span class="k">lambda&lt;/span> &lt;span 
class="n">elem&lt;/span>&lt;span class="p">:&lt;/span> &lt;span 
class="n">elem&lt;/span>&lt;span class="p">[&lt;/span>&lt;span 
class="s1">&amp;#39;max_temperature&amp;#39;&lt;/span>&lt;span 
class="p">]))&lt;/span>&lt;/code>&lt;/pre>&lt;/div>
 &lt;/div>
diff --git 
a/website/generated-content/documentation/io/built-in/google-bigquery/index.html
 
b/website/generated-content/documentation/io/built-in/google-bigquery/index.html
index 9012b61..36e329f 100644
--- 
a/website/generated-content/documentation/io/built-in/google-bigquery/index.html
+++ 
b/website/generated-content/documentation/io/built-in/google-bigquery/index.html
@@ -151,11 +151,13 @@ match BigQuery&rsquo;s exported JSON format. This method 
is convenient, but can
 use <code>readTableRows</code>.</p></li></ol></span><p 
class=language-java><em><strong>Note:</strong></em> 
<code>BigQueryIO.read()</code> is deprecated as of Beam SDK 2.2.0. Instead, use
 <code>read(SerializableFunction&lt;SchemaAndRecord, T>)</code> to parse 
BigQuery rows from
 Avro <code>GenericRecord</code> into your custom type, or use 
<code>readTableRows()</code> to parse
-them into JSON <code>TableRow</code> objects.</p><p class=language-py>To read 
from a BigQuery table using the Beam SDK for Python, apply a <code>Read</code>
-transform on a <code>BigQuerySource</code>. Read returns a 
<code>PCollection</code> of dictionaries,
+them into JSON <code>TableRow</code> objects.</p><p class=language-py>To read 
from a BigQuery table using the Beam SDK for Python, apply a 
<code>ReadFromBigQuery</code>
+transfrom. <code>ReadFromBigQuery</code> returns a <code>PCollection</code> of 
dictionaries,
 where each element in the <code>PCollection</code> represents a single row in 
the table.
 Integer values in the <code>TableRow</code> objects are encoded as strings to 
match
-BigQuery&rsquo;s exported JSON format.</p><h3 id=reading-from-a-table>Reading 
from a table</h3><p class=language-java>To read an entire BigQuery table, use 
the <code>from</code> method with a BigQuery table
+BigQuery&rsquo;s exported JSON format.</p><p 
class=language-py><em><strong>Note:</strong></em> <code>BigQuerySource()</code> 
is deprecated as of Beam SDK 2.25.0. Before 2.25.0, to read from
+a BigQuery table using the Beam SDK, you will apply a <code>Read</code> 
transform on a <code>BigQuerySource</code>. For example,
+<code>beam.io.Read(beam.io.BigQuerySource(table_spec))</code>.</p><h3 
id=reading-from-a-table>Reading from a table</h3><p class=language-java>To read 
an entire BigQuery table, use the <code>from</code> method with a BigQuery table
 name. This example uses <code>readTableRows</code>.</p><p class=language-py>To 
read an entire BigQuery table, use the <code>table</code> parameter with the 
BigQuery
 table name.</p><p>The following code reads an entire table that contains 
weather station data and
 then extracts the <code>max_temperature</code> column.</p><div 
class=language-java><div class=highlight><pre class=chroma><code 
class=language-java data-lang=java><span class=kn>import</span> <span 
class=nn>org.apache.beam.examples.snippets.transforms.io.gcp.bigquery.BigQueryMyData.MyData</span><span
 class=o>;</span>
@@ -188,11 +190,11 @@ then extracts the <code>max_temperature</code> 
column.</p><div class=language-ja
   <span class=o>}</span>
 <span class=o>}</span></code></pre></div></div><div class=language-py><div 
class=highlight><pre class=chroma><code class=language-py data-lang=py><span 
class=n>max_temperatures</span> <span class=o>=</span> <span class=p>(</span>
     <span class=n>p</span>
-    <span class=o>|</span> <span class=s1>&#39;ReadTable&#39;</span> <span 
class=o>&gt;&gt;</span> <span class=n>beam</span><span class=o>.</span><span 
class=n>io</span><span class=o>.</span><span class=n>Read</span><span 
class=p>(</span><span class=n>beam</span><span class=o>.</span><span 
class=n>io</span><span class=o>.</span><span class=n>BigQuerySource</span><span 
class=p>(</span><span class=n>table_spec</span><span class=p>))</span>
+    <span class=o>|</span> <span class=s1>&#39;ReadTable&#39;</span> <span 
class=o>&gt;&gt;</span> <span class=n>beam</span><span class=o>.</span><span 
class=n>io</span><span class=o>.</span><span 
class=n>ReadFromBigQuery</span><span class=p>(</span><span 
class=n>table</span><span class=o>=</span><span class=n>table_spec</span><span 
class=p>)</span>
     <span class=c1># Each row is a dictionary where the keys are the BigQuery 
columns</span>
     <span class=o>|</span> <span class=n>beam</span><span 
class=o>.</span><span class=n>Map</span><span class=p>(</span><span 
class=k>lambda</span> <span class=n>elem</span><span class=p>:</span> <span 
class=n>elem</span><span class=p>[</span><span 
class=s1>&#39;max_temperature&#39;</span><span 
class=p>]))</span></code></pre></div></div><h3 
id=reading-with-a-query-string>Reading with a query string</h3><p 
class=language-java>If you don&rsquo;t want to read an entire table, you can 
supply [...]
 the <code>fromQuery</code> method.</p><p class=language-py>If you don&rsquo;t 
want to read an entire table, you can supply a query string to
-<code>BigQuerySource</code> by specifying the <code>query</code> 
parameter.</p><p class=language-py>The following code uses a SQL query to only 
read the <code>max_temperature</code> column.</p><div class=language-java><div 
class=highlight><pre class=chroma><code class=language-java 
data-lang=java><span class=kn>import</span> <span 
class=nn>org.apache.beam.examples.snippets.transforms.io.gcp.bigquery.BigQueryMyData.MyData</span><span
 class=o>;</span>
+<code>ReadFromBigQuery</code> by specifying the <code>query</code> 
parameter.</p><p class=language-py>The following code uses a SQL query to only 
read the <code>max_temperature</code> column.</p><div class=language-java><div 
class=highlight><pre class=chroma><code class=language-java 
data-lang=java><span class=kn>import</span> <span 
class=nn>org.apache.beam.examples.snippets.transforms.io.gcp.bigquery.BigQueryMyData.MyData</span><span
 class=o>;</span>
 <span class=kn>import</span> <span 
class=nn>org.apache.beam.sdk.Pipeline</span><span class=o>;</span>
 <span class=kn>import</span> <span 
class=nn>org.apache.beam.sdk.io.gcp.bigquery.BigQueryIO</span><span 
class=o>;</span>
 <span class=kn>import</span> <span 
class=nn>org.apache.beam.sdk.transforms.MapElements</span><span class=o>;</span>
@@ -224,9 +226,9 @@ the <code>fromQuery</code> method.</p><p 
class=language-py>If you don&rsquo;t wa
   <span class=o>}</span>
 <span class=o>}</span></code></pre></div></div><div class=language-py><div 
class=highlight><pre class=chroma><code class=language-py data-lang=py><span 
class=n>max_temperatures</span> <span class=o>=</span> <span class=p>(</span>
     <span class=n>p</span>
-    <span class=o>|</span> <span class=s1>&#39;QueryTable&#39;</span> <span 
class=o>&gt;&gt;</span> <span class=n>beam</span><span class=o>.</span><span 
class=n>io</span><span class=o>.</span><span class=n>Read</span><span 
class=p>(</span><span class=n>beam</span><span class=o>.</span><span 
class=n>io</span><span class=o>.</span><span class=n>BigQuerySource</span><span 
class=p>(</span>
+    <span class=o>|</span> <span class=s1>&#39;QueryTable&#39;</span> <span 
class=o>&gt;&gt;</span> <span class=n>beam</span><span class=o>.</span><span 
class=n>io</span><span class=o>.</span><span 
class=n>ReadFromBigQuery</span><span class=p>(</span>
         <span class=n>query</span><span class=o>=</span><span 
class=s1>&#39;SELECT max_temperature FROM &#39;</span>\
-              <span 
class=s1>&#39;[clouddataflow-readonly:samples.weather_stations]&#39;</span><span
 class=p>))</span>
+              <span 
class=s1>&#39;[clouddataflow-readonly:samples.weather_stations]&#39;</span><span
 class=p>)</span>
     <span class=c1># Each row is a dictionary where the keys are the BigQuery 
columns</span>
     <span class=o>|</span> <span class=n>beam</span><span 
class=o>.</span><span class=n>Map</span><span class=p>(</span><span 
class=k>lambda</span> <span class=n>elem</span><span class=p>:</span> <span 
class=n>elem</span><span class=p>[</span><span 
class=s1>&#39;max_temperature&#39;</span><span 
class=p>]))</span></code></pre></div></div><p>You can also use BigQuery&rsquo;s 
standard SQL dialect with a query string, as shown
 in the following example:</p><div class=language-java><div 
class=highlight><pre class=chroma><code class=language-java 
data-lang=java><span class=n>PCollection</span><span class=o>&lt;</span><span 
class=n>Double</span><span class=o>&gt;</span> <span 
class=n>maxTemperatures</span> <span class=o>=</span>
@@ -238,10 +240,10 @@ in the following example:</p><div 
class=language-java><div class=highlight><pre
             <span class=o>.</span><span class=na>usingStandardSql</span><span 
class=o>()</span>
             <span class=o>.</span><span class=na>withCoder</span><span 
class=o>(</span><span class=n>DoubleCoder</span><span class=o>.</span><span 
class=na>of</span><span class=o>()));</span></code></pre></div></div><div 
class=language-py><div class=highlight><pre class=chroma><code 
class=language-py data-lang=py><span class=n>max_temperatures</span> <span 
class=o>=</span> <span class=p>(</span>
     <span class=n>p</span>
-    <span class=o>|</span> <span class=s1>&#39;QueryTableStdSQL&#39;</span> 
<span class=o>&gt;&gt;</span> <span class=n>beam</span><span 
class=o>.</span><span class=n>io</span><span class=o>.</span><span 
class=n>Read</span><span class=p>(</span><span class=n>beam</span><span 
class=o>.</span><span class=n>io</span><span class=o>.</span><span 
class=n>BigQuerySource</span><span class=p>(</span>
+    <span class=o>|</span> <span class=s1>&#39;QueryTableStdSQL&#39;</span> 
<span class=o>&gt;&gt;</span> <span class=n>beam</span><span 
class=o>.</span><span class=n>io</span><span class=o>.</span><span 
class=n>ReadFromBigQuery</span><span class=p>(</span>
         <span class=n>query</span><span class=o>=</span><span 
class=s1>&#39;SELECT max_temperature FROM &#39;</span>\
               <span 
class=s1>&#39;`clouddataflow-readonly.samples.weather_stations`&#39;</span><span
 class=p>,</span>
-        <span class=n>use_standard_sql</span><span class=o>=</span><span 
class=bp>True</span><span class=p>))</span>
+        <span class=n>use_standard_sql</span><span class=o>=</span><span 
class=bp>True</span><span class=p>)</span>
     <span class=c1># Each row is a dictionary where the keys are the BigQuery 
columns</span>
     <span class=o>|</span> <span class=n>beam</span><span 
class=o>.</span><span class=n>Map</span><span class=p>(</span><span 
class=k>lambda</span> <span class=n>elem</span><span class=p>:</span> <span 
class=n>elem</span><span class=p>[</span><span 
class=s1>&#39;max_temperature&#39;</span><span 
class=p>]))</span></code></pre></div></div><h3 id=storage-api>Using the 
BigQuery Storage API</h3><p>The <a 
href=https://cloud.google.com/bigquery/docs/reference/storage/>BigQuery Storage 
API</a>
 allows you to directly access tables in BigQuery storage, and supports features
diff --git a/website/generated-content/sitemap.xml 
b/website/generated-content/sitemap.xml
index 1c85400..d648f89 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.27.0/</loc><lastmod>2021-01-08T13:31:50-08:00</lastmod></url><url><loc>/categories/blog/</loc><lastmod>2021-01-08T13:31:50-08:00</lastmod></url><url><loc>/blog/</loc><lastmod>2021-01-08T13:31:50-08:00</lastmod></url><url><loc>/categories/</loc><lastmod>2021-01-08T13:31:50-08:00</lastmod></url><url><loc>/blog/d
 [...]
\ 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.27.0/</loc><lastmod>2021-01-08T13:31:50-08:00</lastmod></url><url><loc>/categories/blog/</loc><lastmod>2021-01-08T13:31:50-08:00</lastmod></url><url><loc>/blog/</loc><lastmod>2021-01-08T13:31:50-08:00</lastmod></url><url><loc>/categories/</loc><lastmod>2021-01-08T13:31:50-08:00</lastmod></url><url><loc>/blog/d
 [...]
\ No newline at end of file

Reply via email to