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 2020/03/10 17:40:31 UTC

[beam] branch asf-site updated: Publishing website 2020/03/10 17:40:24 at commit 39a2342

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 8f21e73  Publishing website 2020/03/10 17:40:24 at commit 39a2342
8f21e73 is described below

commit 8f21e73b0c70e43d08a3c2634cdb4ebc27b5726a
Author: jenkins <bu...@apache.org>
AuthorDate: Tue Mar 10 17:40:24 2020 +0000

    Publishing website 2020/03/10 17:40:24 at commit 39a2342
---
 .../dsls/sql/extensions/create-external-table/index.html              | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/website/generated-content/documentation/dsls/sql/extensions/create-external-table/index.html b/website/generated-content/documentation/dsls/sql/extensions/create-external-table/index.html
index ad95a63..e474888 100644
--- a/website/generated-content/documentation/dsls/sql/extensions/create-external-table/index.html
+++ b/website/generated-content/documentation/dsls/sql/extensions/create-external-table/index.html
@@ -431,7 +431,7 @@ See the I/O specific sections for <code class="highlighter-rouge">tblProperties<
 <div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>CREATE EXTERNAL TABLE [ IF NOT EXISTS ] tableName (tableElement [, tableElement ]*)
 TYPE bigquery
 LOCATION '[PROJECT_ID]:[DATASET].[TABLE]'
-TBLPROPERTIES '{"method": "DEFAULT"}'
+TBLPROPERTIES '{"method": "DIRECT_READ"}'
 </code></pre></div></div>
 
 <ul>
@@ -446,9 +446,9 @@ TBLPROPERTIES '{"method": "DEFAULT"}'
     <ul>
       <li><code class="highlighter-rouge">method</code>: Optional. Read method to use. Following options are available:
         <ul>
-          <li><code class="highlighter-rouge">DEFAULT</code>: If no property is set, will be used as default. Currently uses <code class="highlighter-rouge">EXPORT</code>.</li>
           <li><code class="highlighter-rouge">DIRECT_READ</code>: Use the BigQuery Storage API.</li>
           <li><code class="highlighter-rouge">EXPORT</code>: Export data to Google Cloud Storage in Avro format and read data files from that location.</li>
+          <li>Default is <code class="highlighter-rouge">DIRECT_READ</code> for Beam 2.21+ (older versions use <code class="highlighter-rouge">EXPORT</code>).</li>
         </ul>
       </li>
     </ul>