You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by js...@apache.org on 2015/05/09 03:10:58 UTC

[2/2] drill git commit: DRILL-2960: Add back hive boostrap-storage-plugin to make it show up in a default Drill install as disabled.

DRILL-2960: Add back hive boostrap-storage-plugin to make it show up in a default Drill install as disabled.


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

Branch: refs/heads/master
Commit: d4f9bf2e994969c863b2b90b58e90139d242b106
Parents: 099a35b
Author: Jason Altekruse <al...@gmail.com>
Authored: Thu May 7 10:05:30 2015 -0700
Committer: Jason Altekruse <al...@gmail.com>
Committed: Fri May 8 17:15:43 2015 -0700

----------------------------------------------------------------------
 .../main/resources/bootstrap-storage-plugins.json    | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/d4f9bf2e/contrib/storage-hive/core/src/main/resources/bootstrap-storage-plugins.json
----------------------------------------------------------------------
diff --git a/contrib/storage-hive/core/src/main/resources/bootstrap-storage-plugins.json b/contrib/storage-hive/core/src/main/resources/bootstrap-storage-plugins.json
new file mode 100644
index 0000000..5c7174e
--- /dev/null
+++ b/contrib/storage-hive/core/src/main/resources/bootstrap-storage-plugins.json
@@ -0,0 +1,15 @@
+{
+  "storage":{
+    hive : {
+      type:"hive",
+      enabled: false,
+      config : {
+        "hive.metastore.uris" : "",
+        "javax.jdo.option.ConnectionURL" : "jdbc:derby:;databaseName=../sample-data/drill_hive_db;create=true",
+        "hive.metastore.warehouse.dir" : "/tmp/drill_hive_wh",
+        "fs.default.name" : "file:///",
+        "hive.metastore.sasl.enabled" : "false"
+      }
+    }
+  }
+}