Repository: incubator-gearpump Updated Branches: refs/heads/master b8556fa45 -> a1b235252
[Doc] Fix typo in jarstore deployment Project: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/commit/a1b23525 Tree: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/tree/a1b23525 Diff: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/diff/a1b23525 Branch: refs/heads/master Commit: a1b23525207f86b1a12e3106d98217844df7f762 Parents: b8556fa Author: manuzhang <[email protected]> Authored: Mon May 23 16:45:25 2016 +0800 Committer: manuzhang <[email protected]> Committed: Mon May 23 16:45:25 2016 +0800 ---------------------------------------------------------------------- docs/deployment-ha.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/a1b23525/docs/deployment-ha.md ---------------------------------------------------------------------- diff --git a/docs/deployment-ha.md b/docs/deployment-ha.md index b3cde5e..fc1cc2d 100644 --- a/docs/deployment-ha.md +++ b/docs/deployment-ha.md @@ -33,20 +33,23 @@ to a list of master nodes. For example, if I have 3 master nodes (node1, node2, In `conf/gear.conf`, For entry `gearpump.jarstore.rootpath`, please choose the storage folder for application jars. You need to make sure this jar storage is highly available. We support two storage systems: 1). HDFS + You need to configure the `gearpump.jarstore.rootpath` like this ```bash hdfs://host:port/path/ ``` + For HDFS HA, ```bash - hdfs"//namespace/path/ + hdfs://namespace/path/ ``` 2). Shared NFS folder + First you need to map the NFS directory to local directory(same path) on all machines of master nodes. -Then you need to set the `gearpump.jarstore.rootPath` like this: +Then you need to set the `gearpump.jarstore.rootpath` like this: ```bash file:///your_nfs_mapping_directory
