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:49 UTC

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

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.