You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2016/12/30 07:54:39 UTC

kylin git commit: fix wrong mapreduce parameter

Repository: kylin
Updated Branches:
  refs/heads/document 1cc818aca -> 7e234260a


fix wrong mapreduce parameter


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

Branch: refs/heads/document
Commit: 7e234260ae6bb8769388bad4442652723dd21d6e
Parents: 1cc818a
Author: shaofengshi <sh...@apache.org>
Authored: Fri Dec 30 15:54:34 2016 +0800
Committer: shaofengshi <sh...@apache.org>
Committed: Fri Dec 30 15:54:34 2016 +0800

----------------------------------------------------------------------
 website/_docs15/install/advance_settings.md | 4 ++--
 website/_docs16/install/advance_settings.md | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/7e234260/website/_docs15/install/advance_settings.md
----------------------------------------------------------------------
diff --git a/website/_docs15/install/advance_settings.md b/website/_docs15/install/advance_settings.md
index 5b978c0..2b9b383 100644
--- a/website/_docs15/install/advance_settings.md
+++ b/website/_docs15/install/advance_settings.md
@@ -19,8 +19,8 @@ Here take two example:
 ## Overwrite default Hadoop job conf at Cube level
 The `conf/kylin_job_conf.xml` and `conf/kylin_job_conf_inmem.xml` manage the default configurations for Hadoop jobs. If you have the need to customize the configs by cube, you can achieve that with the similar way as above, but need adding a prefix `kylin.job.mr.config.override.`; These configs will be parsed out and then applied when submitting jobs. See two examples below:
 
- * If want a cube's job getting more memory from Yarn, you can define: `kylin.job.mr.config.override.mapred.map.child.java.opts=-Xmx7g` and `kylin.job.mr.config.override.mapred.map.memory.mb=8192`
- * If want a cube's job going to a different Yarn resource queue, you can define: `kylin.job.mr.config.override.mapred.job.queuename=myQueue` (note: "myQueue" is just a sample)
+ * If want a cube's job getting more memory from Yarn, you can define: `kylin.job.mr.config.override.mapreduce.map.java.opts=-Xmx7g` and `kylin.job.mr.config.override.mapreduce.map.memory.mb=8192`
+ * If want a cube's job going to a different Yarn resource queue, you can define: `kylin.job.mr.config.override.mapreduce.job.queuename=myQueue` (note: "myQueue" is just a sample)
 
 ## Enable compression
 

http://git-wip-us.apache.org/repos/asf/kylin/blob/7e234260/website/_docs16/install/advance_settings.md
----------------------------------------------------------------------
diff --git a/website/_docs16/install/advance_settings.md b/website/_docs16/install/advance_settings.md
index eb13248..306637d 100644
--- a/website/_docs16/install/advance_settings.md
+++ b/website/_docs16/install/advance_settings.md
@@ -19,8 +19,8 @@ Here take two example:
 ## Overwrite default Hadoop job conf at Cube level
 The `conf/kylin_job_conf.xml` and `conf/kylin_job_conf_inmem.xml` manage the default configurations for Hadoop jobs. If you have the need to customize the configs by cube, you can achieve that with the similar way as above, but need adding a prefix `kylin.job.mr.config.override.`; These configs will be parsed out and then applied when submitting jobs. See two examples below:
 
- * If want a cube's job getting more memory from Yarn, you can define: `kylin.job.mr.config.override.mapred.map.child.java.opts=-Xmx7g` and `kylin.job.mr.config.override.mapred.map.memory.mb=8192`
- * If want a cube's job going to a different Yarn resource queue, you can define: `kylin.job.mr.config.override.mapred.job.queuename=myQueue` (note: "myQueue" is just a sample)
+ * If want a cube's job getting more memory from Yarn, you can define: `kylin.job.mr.config.override.mapreduce.map.java.opts=-Xmx7g` and `kylin.job.mr.config.override.mapreduce.map.memory.mb=8192`
+ * If want a cube's job going to a different Yarn resource queue, you can define: `kylin.job.mr.config.override.mapreduce.job.queuename=myQueue` (note: "myQueue" is just a sample)
 
 ## Enable compression