You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2016/12/16 02:25:16 UTC

kylin git commit: KYLIN-2006 howto_use_distributed_scheduler

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


KYLIN-2006 howto_use_distributed_scheduler

Signed-off-by: Li Yang <li...@apache.org>


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

Branch: refs/heads/document
Commit: 1cc818aca6e25a10ba718cc55135f0c4e1e341ff
Parents: b570ebb
Author: kangkaisen <ka...@live.com>
Authored: Fri Dec 2 19:11:24 2016 +0800
Committer: Li Yang <li...@apache.org>
Committed: Fri Dec 16 10:24:49 2016 +0800

----------------------------------------------------------------------
 website/_data/docs.yml                              |  1 +
 .../howto/howto_use_distributed_scheduler.md        | 16 ++++++++++++++++
 2 files changed, 17 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/1cc818ac/website/_data/docs.yml
----------------------------------------------------------------------
diff --git a/website/_data/docs.yml b/website/_data/docs.yml
index 5e5de00..e0f0c0d 100644
--- a/website/_data/docs.yml
+++ b/website/_data/docs.yml
@@ -57,3 +57,4 @@
   - howto/howto_jdbc
   - howto/howto_upgrade
   - howto/howto_ldap_and_sso
+  - howto/howto_use_distributed_scheduler

http://git-wip-us.apache.org/repos/asf/kylin/blob/1cc818ac/website/_docs16/howto/howto_use_distributed_scheduler.md
----------------------------------------------------------------------
diff --git a/website/_docs16/howto/howto_use_distributed_scheduler.md b/website/_docs16/howto/howto_use_distributed_scheduler.md
new file mode 100644
index 0000000..6d92584
--- /dev/null
+++ b/website/_docs16/howto/howto_use_distributed_scheduler.md
@@ -0,0 +1,16 @@
+---
+layout: docs16
+title:  Use distributed job scheduler
+categories: howto
+permalink: /docs16/howto/howto_use_distributed_scheduler.html
+---
+
+Since Kylin 1.6.1, Kylin support distributed job scheduler.
+Which is more extensible, available and reliable than default job scheduler.
+To enable the distributed job scheduler, you need to set or update three configs in the kylin.properties:
+
+```
+1. kylin.job.scheduler.default=2
+2. kylin.job.lock=org.apache.kylin.storage.hbase.util.ZookeeperDistributedJobLock
+3. add all job servers and query servers to the kylin.server.cluster-servers
+```