You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by br...@apache.org on 2017/06/06 23:50:11 UTC

drill-site git commit: odbc doc edits per cskrbina

Repository: drill-site
Updated Branches:
  refs/heads/asf-site 1cbd033b6 -> b8a6d6699


odbc doc edits per cskrbina


Project: http://git-wip-us.apache.org/repos/asf/drill-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill-site/commit/b8a6d669
Tree: http://git-wip-us.apache.org/repos/asf/drill-site/tree/b8a6d669
Diff: http://git-wip-us.apache.org/repos/asf/drill-site/diff/b8a6d669

Branch: refs/heads/asf-site
Commit: b8a6d6699fd823dc3dc2f35988486bf0909ddd7c
Parents: 1cbd033
Author: Bridget Bevens <bb...@maprtech.com>
Authored: Tue Jun 6 16:49:52 2017 -0700
Committer: Bridget Bevens <bb...@maprtech.com>
Committed: Tue Jun 6 16:49:52 2017 -0700

----------------------------------------------------------------------
 docs/configuring-odbc-on-linux/index.html       | 31 +++++----
 docs/configuring-odbc-on-mac-os-x/index.html    |  2 +-
 docs/configuring-odbc-on-windows/index.html     |  2 +-
 .../index.html                                  | 68 +++++++++++---------
 docs/installing-the-driver-on-linux/index.html  |  6 +-
 .../index.html                                  | 16 ++---
 .../installing-the-driver-on-windows/index.html |  6 +-
 docs/odbc-configuration-reference/index.html    | 18 +++---
 docs/testing-the-odbc-connection/index.html     |  2 +-
 feed.xml                                        |  4 +-
 10 files changed, 80 insertions(+), 75 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill-site/blob/b8a6d669/docs/configuring-odbc-on-linux/index.html
----------------------------------------------------------------------
diff --git a/docs/configuring-odbc-on-linux/index.html b/docs/configuring-odbc-on-linux/index.html
index 5411be2..4c8598d 100644
--- a/docs/configuring-odbc-on-linux/index.html
+++ b/docs/configuring-odbc-on-linux/index.html
@@ -1122,7 +1122,7 @@
 
     </div>
 
-     May 31, 2017
+     Jun 6, 2017
 
     <link href="/css/docpage.css" rel="stylesheet" type="text/css">
 
@@ -1163,11 +1163,17 @@ on Linux, copy the following configuration files in <code>/opt/mapr/drill/Setup<
 <h2 id="step-1:-set-environment-variables">Step 1: Set Environment Variables</h2>
 
 <ol>
-<li><p>Set the ODBCINI environment variable to point to the <code>.odbc.ini</code> in your home directory. For example:<br>
+<li><p>Set the ODBCINI environment variable to point to the <code>.odbc.ini</code> in your home directory. </p>
+
+<p>Example:<br>
 <code>export ODBCINI=~/.odbc.ini</code></p></li>
-<li><p>Set the MAPRDRILLINI environment variable to point to <code>.mapr.drillodbc.ini</code> in your home directory. For example:<br>
+<li><p>Set the MAPRDRILLINI environment variable to point to <code>.mapr.drillodbc.ini</code> in your home directory. </p>
+
+<p>Example:<br>
 <code>export MAPRDRILLINI=~/.mapr.drillodbc.ini</code></p></li>
-<li><p>Set the <code>LD_LIBRARY_PATH</code> environment variable  to point to your ODBC driver manager libraries. For example:<br>
+<li><p>Set the <code>LD_LIBRARY_PATH</code> environment variable  to point to your ODBC driver manager libraries. </p>
+
+<p>Example:<br>
 <code>export LD_LIBRARY_PATH=/usr/local/lib</code></p></li>
 </ol>
 
@@ -1189,20 +1195,21 @@ PORT=31010
 ZKQuorum=
 ZKClusterID=
 </code></pre></div>
-<p>To use Drill in distributed mode, set the following properties, described in detail in section <a href="/docs/configuring-odbc-on-linux/#direct-and-zookeeper-quorum-properties">&quot;Direct and ZooKeeper Quorum Properties&quot;</a>:</p>
+<p>To use Drill in distributed mode, set the following properties. (These properties are described in detail in the <a href="/docs/configuring-odbc-on-linux/#direct-and-zookeeper-quorum-properties">Direct and ZooKeeper Quorum Properties</a> section.)</p>
 <div class="highlight"><pre><code class="language-text" data-lang="text">ConnectionType=ZooKeeper
 HOST=
 PORT=
 ZKQuorum=&lt;host name&gt;:&lt;port&gt;,&lt;host name&gt;:&lt;port&gt; . . . &lt;host name&gt;:&lt;port&gt;
 ZKClusterID=&lt;cluster name in `drill-override.conf`&gt;
 </code></pre></div>
-<p>The following Linux sample shows a possible configuration for using Drill in distributed mode. The example modifies the default Linux-installed <code>.odbc.ini</code> for a 64-bit system by commenting out 32-bit properties, adding 64-bit properties, and removes the extraneous MapR Drill 64-bit from <code>.odbc.ini</code>.</p>
+<p>The following Linux sample shows a possible configuration for using Drill in distributed mode. </p>
 <div class="highlight"><pre><code class="language-text" data-lang="text">[ODBC]
 Trace=no
 
 [ODBC Data Sources]
 MapR Drill 32-bit=MapR Drill ODBC Driver 32-bit
 MapR Drill 64-bit=MapR Drill ODBC Driver 64-bit
+
 [MapR Drill 32-bit]
 # This key is not necessary and only describes the data source.
 
@@ -1220,10 +1227,10 @@ Driver=/opt/mapr/drill/lib/32/libdrillodbc_sb32.so
 # Values for ConnectionType, AdvancedProperties, Catalog, Schema should be set here.
 # If ConnectionType is Direct, include Host and Port. If ConnectionType is ZooKeeper, include ZKQuorum and ZKClusterID
 # They can also be specified on the connection string.
-# AuthenticationType:No authentication;Plain;Kerberos
+# AuthenticationType:No authentication;Plain;Kerberos;
 ConnectionType=Direct
-HOST=
-PORT=
+HOST=[HOST]
+PORT=[PORT]
 ZKQuorum=[Zookeeper Quorum]
 ZKClusterID=[Cluster ID]]
 AuthenticationType=No Authentication
@@ -1251,10 +1258,10 @@ Driver=/opt/mapr/drill/lib/64/libdrillodbc_sb64.so
 # Values for ConnectionType, AdvancedProperties, Catalog, Schema should be set here.
 # If ConnectionType is Direct, include Host and Port. If ConnectionType is ZooKeeper, include ZKQuorum and ZKClusterID
 # They can also be specified on the connection string.
-# AuthenticationType:No authentication;Plain;Kerberos;MapRSASL
+# AuthenticationType:No authentication;Plain;Kerberos;MapRSASL;
 ConnectionType=Direct
-HOST=
-PORT=
+HOST=[HOST]
+PORT=[PORT]
 ZKQuorum=[Zookeeper Quorum]
 ZKClusterID=[Cluster ID]]
 AuthenticationType=No Authentication

http://git-wip-us.apache.org/repos/asf/drill-site/blob/b8a6d669/docs/configuring-odbc-on-mac-os-x/index.html
----------------------------------------------------------------------
diff --git a/docs/configuring-odbc-on-mac-os-x/index.html b/docs/configuring-odbc-on-mac-os-x/index.html
index eaa19c0..698b74a 100644
--- a/docs/configuring-odbc-on-mac-os-x/index.html
+++ b/docs/configuring-odbc-on-mac-os-x/index.html
@@ -1122,7 +1122,7 @@
 
     </div>
 
-     Jun 3, 2017
+     Jun 6, 2017
 
     <link href="/css/docpage.css" rel="stylesheet" type="text/css">
 

http://git-wip-us.apache.org/repos/asf/drill-site/blob/b8a6d669/docs/configuring-odbc-on-windows/index.html
----------------------------------------------------------------------
diff --git a/docs/configuring-odbc-on-windows/index.html b/docs/configuring-odbc-on-windows/index.html
index 1637b41..8308c72 100644
--- a/docs/configuring-odbc-on-windows/index.html
+++ b/docs/configuring-odbc-on-windows/index.html
@@ -1122,7 +1122,7 @@
 
     </div>
 
-     Jun 3, 2017
+     Jun 6, 2017
 
     <link href="/css/docpage.css" rel="stylesheet" type="text/css">
 

http://git-wip-us.apache.org/repos/asf/drill-site/blob/b8a6d669/docs/connecting-drill-explorer-to-data/index.html
----------------------------------------------------------------------
diff --git a/docs/connecting-drill-explorer-to-data/index.html b/docs/connecting-drill-explorer-to-data/index.html
index 787727f..6b14feb 100644
--- a/docs/connecting-drill-explorer-to-data/index.html
+++ b/docs/connecting-drill-explorer-to-data/index.html
@@ -1122,7 +1122,7 @@
 
     </div>
 
-     May 31, 2017
+     Jun 6, 2017
 
     <link href="/css/docpage.css" rel="stylesheet" type="text/css">
 
@@ -1132,54 +1132,64 @@
 
 <h2 id="connecting-drill-explorer-to-data-on-linux">Connecting Drill Explorer to Data on Linux</h2>
 
-<p>You need an X-11 XDisplay to use Drill Explorer on Linux. Run the DrillExplorer executable in <code>/opt/mapr/drillodbc/DrillExplorer</code>, and then follow instructions from step 2 in the next section, &quot;Connecting Drill Explorer to Data on Mac OS X.&quot;</p>
+<p>You need an X-11 XDisplay to use Drill Explorer on Linux. Run the DrillExplorer executable in <code>/opt/mapr/drillodbc/DrillExplorer</code>, and then follow instructions from step 2 in the next section, <em>Connecting Drill Explorer to Data on Mac OS X</em>.</p>
 
 <h2 id="connecting-drill-explorer-to-data-on-mac-os-x">Connecting Drill Explorer to Data on Mac OS X</h2>
 
 <ol>
-<li><p>On a node that is running Drill, run Drill Explorer.  The Drill Explorer app is located in the <code>/Applications</code> directory.<br>
-The Drill Explorer console appears. </p></li>
-<li><p>Click <strong>Connect</strong> on the console.<br>
-The Drill Explorer dialog appears.<br>
-<img src="/docs/img/explorer-connect.png" alt="sample mapr drill dsn"></p></li>
-<li><p>If you connect through a DSN, on the ODBC DSN tab, select the name of the DSN you configured. For example, select Sample MapR Drill DSN.<br>
-Alternatively, if you use a DSN-less connection, on the Advanced tab, type a connection string in the text box. For example, type the following connection string:<br>
-     DRIVER=MapR Drill ODBC Driver;AdvancedProperties={HandshakeTimeout=0;QueryTimeout=0;TimestampTZDisplayTimezone=utc;ExcludedSchemas=sys, INFORMATION_SCHEMA;};Catalog=DRILL;Schema=;ConnectionType=ZooKeeper;ZKQuorum=192.168.39.43:5181;ZKClusterID=drillbits1</p></li>
-<li><p>If you set the <a href="/docs/odbc-configuration-reference/#configuration-options">AuthenticationType property</a> to Plain or Basic Authentication, which enables impersonation, respond to the prompt for a user name and password.</p></li>
-<li><p>Click <strong>Connect</strong> in the dialog.<br>
-In the Schemas panel, the <a href="/docs/odbc-configuration-reference/#schema">schema</a> for the connected data source appear. For example, the default schema is <code>dfs</code>, which points to the local file system on your machine.<br>
-<img src="/docs/img/explorer-schemas.png" alt="explorer schemas"> </p></li>
+<li><p>On a node that is running Drill, run Drill Explorer.  The Drill Explorer app is located in the <code>/Applications</code> directory. The Drill Explorer console appears. </p></li>
+<li><p>Click <strong>Connect</strong> on the console. The Drill Explorer dialog appears.  </p>
+
+<p><img src="http://i.imgur.com/vvr1vs4.png" alt=""></p></li>
+<li><p>If you connect through a DSN, select the name of the DSN you configured on the <strong>ODBC DSN</strong> tab. For example, select <strong>MapR Drill</strong>. Alternatively, if you use a DSN-less connection, type a connection string in the text box on the <strong>Advanced</strong> tab.. For example, type the following connection string:  </p>
+<div class="highlight"><pre><code class="language-text" data-lang="text"> DRIVER=MapR Drill ODBC Driver;AdvancedProperties={HandshakeTimeout=0;QueryTimeout=0;TimestampTZDisplayTimezone=utc;ExcludedSchemas=sys, INFORMATION_SCHEMA;};Catalog=DRILL;Schema=;ConnectionType=ZooKeeper;ZKQuorum=192.168.39.43:5181;ZKClusterID=drillbits1
+</code></pre></div></li>
+<li><p>If you set the Authentication Type property to <strong>Plain</strong> (or Basic Authentication), which enables impersonation, respond to the prompt for a user name and password.</p></li>
+<li><p>Click <strong>Connect</strong> in the dialog. In the <strong>Schemas</strong> panel, the schema for the connected data source appear.   </p>
+
+<p><img src="http://i.imgur.com/PZaVPRf.png" alt=""></p></li>
 </ol>
 
 <h2 id="starting-drill-explorer-on-windows">Starting Drill Explorer on Windows</h2>
 
-<p>In Windows 10, you can start Drill Explorer from the Start menu or from the ODBC Data Source Administrator.</p>
+<p>In Windows 10, you can start Drill Explorer in two ways::</p>
 
-<p>To start Drill Explorer from the Start menu:</p>
+<ul>
+<li>Start menu </li>
+<li>ODBC Data Source Administrator</li>
+</ul>
 
-<p>1. Click <strong>Start</strong>, and locate MaprR Drill ODBC Driver &lt;<em>version</em>&gt;. </p>
+<h3 id="start-menu">Start Menu</h3>
 
-<p><img src="/docs/img/winstart.png" alt="winstart"></p>
+<p>To start Drill Explorer from the Start menu:</p>
 
-<p>2. Click <strong>Drill Explorer</strong>.</p>
+<ol>
+<li><p>Click <strong>Start</strong>, and locate <strong>MaprR Drill Driver 1.3 &lt;<em>version</em>&gt;</strong>. </p></li>
+<li><p>Click <strong>Drill Explorer</strong>.</p>
 
-<p><img src="/docs/img/odbc-explorer-win.png" alt="odbcexplore"></p>
+<p><img src="http://i.imgur.com/qswpcKS.png" alt=""></p></li>
+</ol>
 
-<p>3. Select the DSN that you want to explore. For example, select MapR Drill and click Connect.</p>
+<p>The <strong>ODBC Connection</strong> dialog with the <strong>DSN</strong> tab displayed appears in Drill Explorer.</p>
 
-<p>To start Drill Explorer from the ODBC Administrator in Windows 10:</p>
+<p><img src="http://i.imgur.com/W1CQwH0.png" alt=""></p>
 
-<p>1. In the Settings field, enter <strong>odbc</strong>. Select a version and the ODBC Data Source Administrator <version> appears. </p>
+<p>3. Select the DSN that you want to explore. For example, select <strong>MapR Drill</strong> and click <strong>Connect</strong>.</p>
 
-<p><img src="/docs/img/odbc-configure1.png" alt="obdcconfig"></p>
+<h3 id="odbc-data-source-administrator">ODBC Data Source Administrator</h3>
 
-<p>3. Click <strong>System DSN</strong>. Select MapR Drill and click Connect. 
-   The DSN Setup dialog appears showing the properties.  </p>
+<p>To start Drill Explorer from the ODBC Data Source Administrator:</p>
 
-<p><img src="/docs/img/odbc-configure2.png" alt="odbcconfig2"></p>
+<ol>
+<li><p>Enter <strong>odbc</strong> and select a version of the utility from the Windows Settings field. The <strong>ODBC Data Source Administrator &lt;<em>version</em>&gt;</strong> dialog appears. </p>
 
-<p>. Click <strong>Drill Explorer</strong> at the bottom of the dialog.
-   Drill Explorer appears.</p>
+<p><img src="http://i.imgur.com/W9ZO5PN.png" alt=""></p></li>
+<li><p>Click the  <strong>System DSN</strong> tab.</p></li>
+<li><p>Select <strong>MapR Drill</strong> and click <strong>Configure</strong>. The <strong>MapR Drill ODBC Driver DSN Setup</strong> dialog appears showing multiple configuration properties.  </p>
+
+<p><img src="http://i.imgur.com/FlRRuSm.png" alt=""></p></li>
+<li><p>Click <strong>Drill Explorer</strong> at the bottom of the dialog. Drill Explorer appears.</p></li>
+</ol>
 
     
       

http://git-wip-us.apache.org/repos/asf/drill-site/blob/b8a6d669/docs/installing-the-driver-on-linux/index.html
----------------------------------------------------------------------
diff --git a/docs/installing-the-driver-on-linux/index.html b/docs/installing-the-driver-on-linux/index.html
index e5964df..a7813df 100644
--- a/docs/installing-the-driver-on-linux/index.html
+++ b/docs/installing-the-driver-on-linux/index.html
@@ -1122,7 +1122,7 @@
 
     </div>
 
-     Jun 3, 2017
+     Jun 6, 2017
 
     <link href="/css/docpage.css" rel="stylesheet" type="text/css">
 
@@ -1144,10 +1144,6 @@ application that you use to access Drill. The 64-bit editions of Linux support
 
 <p>Verify that your system meets the system requirements before you start.</p>
 
-<h2 id="known-issue">Known Issue</h2>
-
-<p>MapR SASL support for Kerberos and MapR tickets is only available on 64-bit machines. </p>
-
 <h2 id="system-requirements">System Requirements</h2>
 
 <ul>

http://git-wip-us.apache.org/repos/asf/drill-site/blob/b8a6d669/docs/installing-the-driver-on-mac-os-x/index.html
----------------------------------------------------------------------
diff --git a/docs/installing-the-driver-on-mac-os-x/index.html b/docs/installing-the-driver-on-mac-os-x/index.html
index 7acf449..fa5ac74 100644
--- a/docs/installing-the-driver-on-mac-os-x/index.html
+++ b/docs/installing-the-driver-on-mac-os-x/index.html
@@ -1122,7 +1122,7 @@
 
     </div>
 
-     Jun 3, 2017
+     Jun 6, 2017
 
     <link href="/css/docpage.css" rel="stylesheet" type="text/css">
 
@@ -1139,13 +1139,6 @@ the Drill service.</p>
 <li><a href="/docs/installing-the-driver-on-mac-os-x/#step-3:-check-the-mapr-drill-odbc-driver-version">Step 3: Check the MapR Drill ODBC Driver Version</a></li>
 </ul>
 
-<h2 id="known-issues">Known Issues</h2>
-
-<ul>
-<li>The 32- and 64-bit MapR Drill ODBC drivers are supported on 64-bit machines. </li>
-<li>MapR SASL support for Kerberos and MapR tickets is only available on 64-bit machines. </li>
-</ul>
-
 <h2 id="system-requirements">System Requirements</h2>
 
 <p>To install the driver, you need Administrator privileges on the computer.</p>
@@ -1166,7 +1159,7 @@ The iodbc-config file in the <code>/usr/local/iODBC/bin</code> includes the vers
 
 <div class="admonition note">
   <p class="first admonition-title">Note</p>
-  <p class="last">The most current (version 1.3.8) MapR Drill ODBC driver for Mac might not be available yet.  </p>
+  <p class="last">The most current (version 1.3.8)  MapR Drill ODBC driver for Mac might not be available yet.  </p>
 </div>  
 
 <p>To download available drivers that support both 32- and 64-bit client applications, click 
@@ -1185,7 +1178,10 @@ The iodbc-config file in the <code>/usr/local/iODBC/bin</code> includes the vers
 <li>When the installation completes, click <strong>Close.</strong></li>
 </ol>
 
-<p>MapR Drill ODBC Driver files install in the following locations:</p>
+<div class="admonition note">
+  <p class="first admonition-title">Note</p>
+  <p class="last">MapR Drill ODBC Driver files install in the following locations:  </p>
+</div>
 
 <ul>
 <li><code>/Library/mapr/drill/ErrorMessages</code> – Error messages files directory</li>

http://git-wip-us.apache.org/repos/asf/drill-site/blob/b8a6d669/docs/installing-the-driver-on-windows/index.html
----------------------------------------------------------------------
diff --git a/docs/installing-the-driver-on-windows/index.html b/docs/installing-the-driver-on-windows/index.html
index b944cf5..c0ff6e5 100644
--- a/docs/installing-the-driver-on-windows/index.html
+++ b/docs/installing-the-driver-on-windows/index.html
@@ -1122,7 +1122,7 @@
 
     </div>
 
-     Jun 3, 2017
+     Jun 6, 2017
 
     <link href="/css/docpage.css" rel="stylesheet" type="text/css">
 
@@ -1138,10 +1138,6 @@ applications on Windows®. On 64-bit Windows operating systems, you can execute
 
 <p>Install the MapR Drill ODBC Driver on a system that meets the system requirements. </p>
 
-<h2 id="known-issue">Known Issue</h2>
-
-<p>Drill does not support running drillbits on 32-bit Windows machines.</p>
-
 <h2 id="system-requirements">System Requirements</h2>
 
 <p>Each computer where you install the driver must meet the following system

http://git-wip-us.apache.org/repos/asf/drill-site/blob/b8a6d669/docs/odbc-configuration-reference/index.html
----------------------------------------------------------------------
diff --git a/docs/odbc-configuration-reference/index.html b/docs/odbc-configuration-reference/index.html
index c173887..c166a0f 100644
--- a/docs/odbc-configuration-reference/index.html
+++ b/docs/odbc-configuration-reference/index.html
@@ -1122,7 +1122,7 @@
 
     </div>
 
-     May 31, 2017
+     Jun 6, 2017
 
     <link href="/css/docpage.css" rel="stylesheet" type="text/css">
 
@@ -1148,17 +1148,17 @@
 </thead><tbody>
 <tr>
 <td>AdvancedProperties</td>
-<td><code>CastAnyToVarchar=true;  HandshakeTimeout=5; QueryTimeout=180;TimestampTZDisplayTimezone=local; ExcludedSchemas=sys,INFORMATION_SCHEMA; NumberOfPrefetchBuffers=5</code></td>
-<td>Not required. Advanced properties for configuring the driver. You can set custom connection properties by specifying them as advanced properties. If you specify a property that the driver does not explicitly support, the driver still accepts the property, and passes it to the server for processing.  Separate advanced properties using a semi-colon (;) and then surround all advanced properties in a connection string using braces { and }. For example,  <code>{&lt;property&gt;;&lt;property&gt;; . . .}</code>  In addition, the following Advanced Properties string excludes the schemas named <code>test</code> and <code>abc</code>, sets the timeout to 30 seconds, and sets the time zone to Coordinated Universal Time:<code>HandshakeTimeout=30;QueryTimeout=30;TimestampTZDisplayTimezone=utc;ExcludedSchemas=test,abc</code>.</td>
+<td><code>CastAnyToVarchar=true; HandshakeTimeout=5; QueryTimeout=180; TimestampTZDisplayTimezone=local; ExcludedSchemas= sys,INFORMATION_SCHEMA; NumberOfPrefetchBuffers=5</code></td>
+<td>Not required. Advanced properties for configuring the driver. You can set custom connection properties by specifying them as advanced properties.   If you specify a property that the driver does not explicitly support, the driver still accepts the property, and passes it to the server for processing.  Separate advanced properties using a semi-colon (;) and then surround all advanced properties in a connection string using braces { and }. For example,  <code>{&lt;property&gt;;&lt;property&gt;; . . .}</code>  In addition, the following Advanced Properties string excludes the schemas named <code>test</code> and <code>abc</code>, sets the timeout to 30 seconds, and sets the time zone to Coordinated Universal Time:<code>HandshakeTimeout=30;QueryTimeout=30;TimestampTZDisplayTimezone=utc;ExcludedSchemas=test,abc</code>.</td>
 </tr>
 <tr>
 <td>AuthenticationType</td>
 <td>No Authentication</td>
-<td>Not required.  This option specifies how the driver authenticates the connection to Drill. No Authentication: The driver does not authenticate the connection to Drill. Kerberos: The driver authenticates the connection using the Kerberos protocol. Plain: The driver authenticates the connection using a user name and a password. MapRSASL: The driver authenticates the connection using the MapR-SASL protocol.</td>
+<td>Not required.  This option specifies how the driver authenticates the connection to Drill.   No Authentication: The driver does not authenticate the connection to Drill. Kerberos: The driver authenticates the connection using the Kerberos protocol. Plain: The driver authenticates the connection using a user name and a password. MapRSASL: The driver authenticates the connection using the MapR-SASL protocol.</td>
 </tr>
 <tr>
 <td>Catalog</td>
-<td>The default catalog name specified in the driver&#39;s .did file (typically, DRILL).</td>
+<td>The default catalog name specified  in the driver&#39;s .did file (typically, DRILL).</td>
 <td>Not required. The name of the synthetic catalog under which all of the schemas/databases are organized. This catalog name is used as the value for SQL_DATABASE_NAME or CURRENT CATALOG.</td>
 </tr>
 <tr>
@@ -1174,7 +1174,7 @@
 <tr>
 <td>DisableAsync</td>
 <td>Clear (0)</td>
-<td>Not required. This option specifies whether the driver supports asynchronous queries. Enabled (1): The driver does not support asynchronous queries. Disabled (0): The driver supports asynchronous queries. This option is not supported in connection strings or DSNs. Instead, it must be set as a driver-wide property in the mapr.drillodbc.ini file. Settings in that file apply to all connections that use the driver.</td>
+<td>Not required. This option specifies whether the driver supports asynchronous queries.   Enabled (1): The driver does not support asynchronous queries. Disabled (0): The driver supports asynchronous queries. This option is not supported in connection strings or DSNs. Instead, it must be set as a driver-wide property in the mapr.drillodbc.ini file. Settings in that file apply to all connections that use the driver.</td>
 </tr>
 <tr>
 <td>Driver</td>
@@ -1199,12 +1199,12 @@
 <tr>
 <td>LogLevel</td>
 <td>OFF (0)</td>
-<td>Not required. Use this property to enable or disable logging in the driver and to specify the amount of detail included in log files. Only enable logging long enough to capture an issue. Logging decreases performance and can consume a large quantity of disk space. This option is not supported in connection strings. To configure logging for the Windows driver, you must use the Logging Options dialog box. To configure logging for a non-Windows driver, you must use the mapr.drillodbc.ini file.</td>
+<td>Not required. Use this property to enable or disable logging in the driver and to specify the amount of detail included in log files. Only enable logging long enough to capture an issue. Logging decreases performance and can consume a large quantity of disk space.   This option is not supported in connection strings. To configure logging for the Windows driver, you must use the Logging Options dialog box. To configure logging for a non-Windows driver, you must use the mapr.drillodbc.ini file.</td>
 </tr>
 <tr>
 <td>LogPath</td>
 <td>none</td>
-<td>Required if logging is enabled. The full path to the folder where the driver saves log files when logging is enabled. When logging is enabled, the driver produces two log files at the location that you specify in the LogPath property:  driver.log provides a log of driver activities, and  drillclient.log provides a log of Drill client activities.  This option is not supported in connection strings. To configure logging for the Windows driver, you must use the Logging Options dialog box. To configure logging for a non-Windows driver, you must use the mapr.drillodbc.ini file.</td>
+<td>Required if logging is enabled. The full path to the folder where the driver saves log files when logging is enabled. When logging is enabled, the driver produces two log files at the location that you specify in the LogPath property:  driver.log provides a log of driver activities, and  drillclient.log provides a log of Drill client activities.   This option is not supported in connection strings. To configure logging for the Windows driver, you must use the Logging Options dialog box. To configure logging for a non-Windows driver, you must use the mapr.drillodbc.ini file.</td>
 </tr>
 <tr>
 <td>Port</td>
@@ -1229,7 +1229,7 @@
 <tr>
 <td>UseOnlySSPI (on Windows only)</td>
 <td>Clear (0)</td>
-<td>Not required. This option is available only in the Windows driver. This option specifies how the driver handles Kerberos authentication: either with theSSPI plugin or with MIT Kerberos.  Enabled (1): The driver handles Kerberos authentication by using the SSPI plugin instead of MIT Kerberos by default. Disabled (0): The driver uses MIT Kerberos to handle Kerberos authentication, and only uses the SSPI plugin if the GSSAPI library is not available.</td>
+<td>Not required. This option is available only in the Windows driver. This option specifies how the driver handles Kerberos authentication: either with the SSPI plugin or with MIT Kerberos.   Enabled (1): The driver handles Kerberos authentication by using the SSPI plugin instead of MIT Kerberos by default. Disabled (0): The driver uses MIT Kerberos to handle Kerberos authentication, and only uses the SSPI plugin if the GSSAPI library is not available.</td>
 </tr>
 <tr>
 <td>ZKClusterID</td>

http://git-wip-us.apache.org/repos/asf/drill-site/blob/b8a6d669/docs/testing-the-odbc-connection/index.html
----------------------------------------------------------------------
diff --git a/docs/testing-the-odbc-connection/index.html b/docs/testing-the-odbc-connection/index.html
index b0a49a0..168af08 100644
--- a/docs/testing-the-odbc-connection/index.html
+++ b/docs/testing-the-odbc-connection/index.html
@@ -1122,7 +1122,7 @@
 
     </div>
 
-     Jun 3, 2017
+     Jun 6, 2017
 
     <link href="/css/docpage.css" rel="stylesheet" type="text/css">
 

http://git-wip-us.apache.org/repos/asf/drill-site/blob/b8a6d669/feed.xml
----------------------------------------------------------------------
diff --git a/feed.xml b/feed.xml
index fc1f3c9..9600566 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>Fri, 02 Jun 2017 18:13:00 -0700</pubDate>
-    <lastBuildDate>Fri, 02 Jun 2017 18:13:00 -0700</lastBuildDate>
+    <pubDate>Tue, 06 Jun 2017 16:47:04 -0700</pubDate>
+    <lastBuildDate>Tue, 06 Jun 2017 16:47:04 -0700</lastBuildDate>
     <generator>Jekyll v2.5.2</generator>
     
       <item>