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

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


The following commit(s) were added to refs/heads/asf-site by this push:
     new 5fc881e  doc changes
5fc881e is described below

commit 5fc881e2106f764c920db0b775d1caed0211d6bf
Author: bridget <bridget.bev...@hpe.com>
AuthorDate: Thu Dec 19 14:59:33 2019 -0800

    doc changes
---
 docs/connect-a-data-source-introduction/index.html | 6 +++---
 docs/json-data-model/index.html                    | 2 +-
 docs/starting-drill-in-distributed-mode/index.html | 6 +++---
 docs/using-the-jdbc-driver/index.html              | 2 +-
 feed.xml                                           | 4 ++--
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/docs/connect-a-data-source-introduction/index.html 
b/docs/connect-a-data-source-introduction/index.html
index 554d4c3..b698a3c 100644
--- a/docs/connect-a-data-source-introduction/index.html
+++ b/docs/connect-a-data-source-introduction/index.html
@@ -1318,15 +1318,15 @@
 
     </div>
 
-     Nov 2, 2018
+     Dec 19, 2019
 
     <link href="/css/docpage.css" rel="stylesheet" type="text/css">
 
     <div class="int_text" align="left">
       
-        <p>A storage plugin is a software module for connecting Drill to data 
sources. A storage plugin typically optimizes execution of Drill queries, 
provides the location of the data, and configures the workspace and file 
formats for reading data. Several storage plugins are installed with Drill that 
you can configure to suit your environment. Through a storage plugin, Drill 
connects to a data source, such as a database, a file on a local or distributed 
file system, or a Hive metastore. </p>
+        <p>A storage plugin is a software module for connecting Drill to data 
sources. A storage plugin typically optimizes execution of Drill queries, 
provides the location of the data, and configures the workspace and file 
formats for reading data. Drill has several storage plugins than you can 
configure to suit your environment. Through a storage plugin, Drill connects to 
a data source, such as a database, a file on a local or distributed file 
system, or a Hive metastore. You can modi [...]
 
-<p>You can modify the default configuration X of a storage plugin and give the 
new configuration a unique name Y. This document refers to Y as a different 
storage plugin, although it is actually just a reconfiguration of original 
interface. When you execute a query, Drill gets the storage plugin 
configuration name in one of several ways:</p>
+<p>When you execute a query, Drill gets the storage plugin configuration name 
in one of several ways:</p>
 
 <ul>
 <li>The FROM clause of the query can identify the plugin to use.</li>
diff --git a/docs/json-data-model/index.html b/docs/json-data-model/index.html
index 4d46f94..9db337c 100644
--- a/docs/json-data-model/index.html
+++ b/docs/json-data-model/index.html
@@ -1442,7 +1442,7 @@ Reads all data from JSON files as VARCHAR. You need to 
cast numbers from VARCHAR
 { name: &quot;Oranges&quot;, desc: &quot;Florida Navel&quot; }
 </code></pre></div>
 <p>To read and <a href="/docs/json-data-model/#analyzing-json">analyze complex 
JSON</a> files, use the FLATTEN and KVGEN functions. For example, you need to 
flatten the data to read all the names in this JSON file:</p>
-<div class="highlight"><pre><code class="language-text" data-lang="text"> 
{&quot;Fruits: [{&quot;name&quot;:&quot;Apples&quot;, &quot;quantity&quot;:115},
+<div class="highlight"><pre><code class="language-text" data-lang="text"> 
{&quot;Fruits&quot;: [{&quot;name&quot;:&quot;Apples&quot;, 
&quot;quantity&quot;:115},
             {&quot;name&quot;:&quot;Oranges&quot;,&quot;quantity&quot;:199},
             {&quot;name&quot;:&quot;Peaches&quot;, &quot;quantity&quot;:116}
            ]
diff --git a/docs/starting-drill-in-distributed-mode/index.html 
b/docs/starting-drill-in-distributed-mode/index.html
index 4b74654..e8f2d07 100644
--- a/docs/starting-drill-in-distributed-mode/index.html
+++ b/docs/starting-drill-in-distributed-mode/index.html
@@ -1376,7 +1376,7 @@ Drill lists information about the Drillbits that are 
running, such as the host n
 
 <p>To use a custom connection to Drill, but not alter the connection string in 
<code>drill-conf</code> that you normally use, start the Drill shell on an 
ad-hoc basis using <code>sqlline</code>. For example, to start the Drill shell 
using a particular storage plugin as a schema, use the following command 
syntax: </p>
 
-<p><code>sqlline –u jdbc:drill:[schema=&lt;storage plugin&gt;;]zk=&lt;zk 
name&gt;[:&lt;port&gt;][,&lt;zk name2&gt;[:&lt;port&gt;]... ]</code></p>
+<p><code>sqlline -u jdbc:drill:[schema=&lt;storage plugin&gt;;]zk=&lt;zk 
name&gt;[:&lt;port&gt;][,&lt;zk name2&gt;[:&lt;port&gt;]... ]</code></p>
 
 <h3 id="sqlline-arguments-and-connection-parameters">sqlline Arguments and 
Connection Parameters</h3>
 
@@ -1390,13 +1390,13 @@ Drill lists information about the Drillbits that are 
running, such as the host n
 
 <p>For example, start the Drill shell with the default schema being the 
<code>dfs</code> storage plugin:</p>
 
-<p><code>bin/sqlline –u jdbc:drill:schema=dfs;zk=centos26</code></p>
+<p><code>bin/sqlline -u jdbc:drill:schema=dfs;zk=centos26</code></p>
 
 <p>Specifying the storage plugin configuration name when you start up 
eliminates the need to enter <code>USE &lt;schema name&gt;</code> or specify 
the it in the FROM clause.</p>
 
 <p>The following command starts the Drill shell in a cluster configured to run 
ZooKeeper on three nodes:</p>
 
-<p><code>bin/sqlline –u jdbc:drill:zk=cento23,centos24,centos26:5181</code></p>
+<p><code>bin/sqlline -u jdbc:drill:zk=cento23,centos24,centos26:5181</code></p>
 
 <h2 id="making-a-direct-drillbit-connection">Making a Direct Drillbit 
Connection</h2>
 
diff --git a/docs/using-the-jdbc-driver/index.html 
b/docs/using-the-jdbc-driver/index.html
index b07ae79..2e97bc1 100644
--- a/docs/using-the-jdbc-driver/index.html
+++ b/docs/using-the-jdbc-driver/index.html
@@ -1356,7 +1356,7 @@
 <p>Or</p>
 
 <ul>
-<li>Download a <a href="http://apache.osuosl.org/drill/";>TAR file for the 
latest Drill release</a> to a location on your client machine, and extract the 
file. On Windows, you may need to use a decompression utility, such as <a 
href="http://www.7-zip.org/";>7-zip</a>. The driver is extracted to the 
following directory:<br>
+<li>Download a <a href="https://apache.osuosl.org/drill/";>TAR file for the 
latest Drill release</a> to a location on your client machine, and extract the 
file. On Windows, you may need to use a decompression utility, such as <a 
href="http://www.7-zip.org/";>7-zip</a>. The driver is extracted to the 
following directory:<br>
 
<code>&lt;drill-installation_directory&gt;/jars/jdbc-driver/drill-jdbc-all-&lt;version&gt;.jar</code></li>
 </ul>
 
diff --git a/feed.xml b/feed.xml
index 75f966a..bc300ea 100644
--- a/feed.xml
+++ b/feed.xml
@@ -6,8 +6,8 @@
 </description>
     <link>/</link>
     <atom:link href="/feed.xml" rel="self" type="application/rss+xml"/>
-    <pubDate>Thu, 30 May 2019 20:08:33 -0700</pubDate>
-    <lastBuildDate>Thu, 30 May 2019 20:08:33 -0700</lastBuildDate>
+    <pubDate>Thu, 19 Dec 2019 14:39:20 -0800</pubDate>
+    <lastBuildDate>Thu, 19 Dec 2019 14:39:20 -0800</lastBuildDate>
     <generator>Jekyll v2.5.2</generator>
     
       <item>

Reply via email to