You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by kr...@apache.org on 2015/12/18 06:18:47 UTC

[1/3] drill git commit: DRILL-4209

Repository: drill
Updated Branches:
  refs/heads/gh-pages db448e461 -> fbc012983


DRILL-4209


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

Branch: refs/heads/gh-pages
Commit: a07645a19a05fb1f731f1e12e678b4ae3249a1cc
Parents: db448e4
Author: Kris Hahn <kr...@apache.org>
Authored: Thu Dec 17 15:55:39 2015 -0800
Committer: Kris Hahn <kr...@apache.org>
Committed: Thu Dec 17 21:16:31 2015 -0800

----------------------------------------------------------------------
 .../020-hive-to-drill-data-type-mapping.md                          | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/a07645a1/_docs/data-sources-and-file-formats/020-hive-to-drill-data-type-mapping.md
----------------------------------------------------------------------
diff --git a/_docs/data-sources-and-file-formats/020-hive-to-drill-data-type-mapping.md b/_docs/data-sources-and-file-formats/020-hive-to-drill-data-type-mapping.md
index 5e2693d..282c4ec 100644
--- a/_docs/data-sources-and-file-formats/020-hive-to-drill-data-type-mapping.md
+++ b/_docs/data-sources-and-file-formats/020-hive-to-drill-data-type-mapping.md
@@ -4,6 +4,7 @@ parent: "Data Sources and File Formats"
 ---
 Using Drill you can read tables created in Hive that use data types compatible with Drill. Drill currently does not support writing Hive tables. The map of SQL types and Hive types shows that several Hive types need to be cast to the supported SQL type in a Drill query:
 
+
 * CHAR   
   Cast the Hive CHAR type to VARCHAR.  
 * TINYINT and SMALLINT  


[3/3] drill git commit: DRILL-4208

Posted by kr...@apache.org.
DRILL-4208


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

Branch: refs/heads/gh-pages
Commit: fbc01298379fd1ce6c6b0a0607045d314a61f834
Parents: b2b11bd
Author: Kris Hahn <kr...@apache.org>
Authored: Thu Dec 17 21:03:07 2015 -0800
Committer: Kris Hahn <kr...@apache.org>
Committed: Thu Dec 17 21:17:49 2015 -0800

----------------------------------------------------------------------
 .../020-storage-plugin-registration.md                    | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/fbc01298/_docs/connect-a-data-source/020-storage-plugin-registration.md
----------------------------------------------------------------------
diff --git a/_docs/connect-a-data-source/020-storage-plugin-registration.md b/_docs/connect-a-data-source/020-storage-plugin-registration.md
index d1cacc5..9763171 100644
--- a/_docs/connect-a-data-source/020-storage-plugin-registration.md
+++ b/_docs/connect-a-data-source/020-storage-plugin-registration.md
@@ -30,9 +30,15 @@ To register a new storage plugin configuration, enter a storage name, click **CR
 
 ## Storage Plugin Configuration Persistence
 
-Drill saves storage plugin configurations in a temporary directory (embedded mode) or in ZooKeeper (distributed mode). For example, on Mac OS X, Drill uses `/tmp/drill/sys.storage_plugins` to store storage plugin configurations. The temporary directory clears when you reboot. Copy storage plugin configurations to a secure location to save them when you run drill in embedded mode.
+Drill saves storage plugin configurations in a temporary directory (embedded mode) or in ZooKeeper (distributed mode). For example, on Mac OS X, Drill uses `/tmp/drill/sys.storage_plugins` to store storage plugin configurations. The temporary directory clears when you reboot. When you run drill in embedded mode, add the sys.store.provider.local.path option to the drill-override.conf file and the path for storing the plugin configurations. For example:
+
+     drill.exec: {
+     	cluster-id: "drillbits1",
+     	zk.connect: "localhost:2181",
+     	sys.store.provider.local.path="/mypath"
+     }
+
 
-<!-- `drill.exec.sys.store.provider.local.path = "/mypath"` -->
 
 <!-- Enabling authorization to protect this data through the Web Console and REST API does not include protection for the data in the tmp directory or in ZooKeeper. 
 


[2/3] drill git commit: formatting

Posted by kr...@apache.org.
formatting


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

Branch: refs/heads/gh-pages
Commit: b2b11bdc2c29b7304d15ff403f1f314399e3cd3c
Parents: a07645a
Author: Kris Hahn <kr...@apache.org>
Authored: Thu Dec 17 16:10:20 2015 -0800
Committer: Kris Hahn <kr...@apache.org>
Committed: Thu Dec 17 21:17:49 2015 -0800

----------------------------------------------------------------------
 .../020-hive-to-drill-data-type-mapping.md                          | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/b2b11bdc/_docs/data-sources-and-file-formats/020-hive-to-drill-data-type-mapping.md
----------------------------------------------------------------------
diff --git a/_docs/data-sources-and-file-formats/020-hive-to-drill-data-type-mapping.md b/_docs/data-sources-and-file-formats/020-hive-to-drill-data-type-mapping.md
index 282c4ec..5e2693d 100644
--- a/_docs/data-sources-and-file-formats/020-hive-to-drill-data-type-mapping.md
+++ b/_docs/data-sources-and-file-formats/020-hive-to-drill-data-type-mapping.md
@@ -4,7 +4,6 @@ parent: "Data Sources and File Formats"
 ---
 Using Drill you can read tables created in Hive that use data types compatible with Drill. Drill currently does not support writing Hive tables. The map of SQL types and Hive types shows that several Hive types need to be cast to the supported SQL type in a Drill query:
 
-
 * CHAR   
   Cast the Hive CHAR type to VARCHAR.  
 * TINYINT and SMALLINT