You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@griffin.apache.org by gu...@apache.org on 2019/07/27 00:22:48 UTC

[griffin] branch master updated: [GRIFFIN-270] Fix wrong hadoop configuration in deploy guide

This is an automated email from the ASF dual-hosted git repository.

guoyp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/griffin.git


The following commit(s) were added to refs/heads/master by this push:
     new d49cdb0  [GRIFFIN-270] Fix wrong hadoop configuration in deploy guide
d49cdb0 is described below

commit d49cdb031dccc4387f3ee4ca3b64ccd1f98e0a2e
Author: sjq1992 <in...@126.com>
AuthorDate: Sat Jul 27 08:22:31 2019 +0800

    [GRIFFIN-270] Fix wrong hadoop configuration in deploy guide
    
    the demo of hadoop/core-site.xml in the deploy-guide.md misses a <property> tag
    
    Author: sjq1992 <in...@126.com>
    
    Closes #512 from sjq1992/master.
---
 griffin-doc/deploy/deploy-guide.md | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/griffin-doc/deploy/deploy-guide.md b/griffin-doc/deploy/deploy-guide.md
index cd15213..33e2f40 100644
--- a/griffin-doc/deploy/deploy-guide.md
+++ b/griffin-doc/deploy/deploy-guide.md
@@ -126,8 +126,10 @@ export PATH=$PATH:$HIVE_HOME/bin:$HADOOP_HOME/bin:$SPARK_HOME/bin:$LIVY_HOME/bin
 Put site-specific property overrides in this file **/apache/hadoop/etc/hadoop/core-site.xml**
 ```xml
 <configuration>
-    <name>fs.defaultFS</name>
-    <value>hdfs://127.0.0.1:9000</value>
+    <property>
+        <name>fs.defaultFS</name>
+        <value>hdfs://127.0.0.1:9000</value>
+    </property>    
 </configuration>
 ```