You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by ma...@apache.org on 2016/11/01 09:59:58 UTC

kylin git commit: update doc according to KYLIN-2144

Repository: kylin
Updated Branches:
  refs/heads/document 3f00136ff -> 900659890


update doc according to KYLIN-2144


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

Branch: refs/heads/document
Commit: 90065989026da1b9af95a42e92c4347ed54f6972
Parents: 3f00136
Author: Hongbin Ma <ma...@apache.org>
Authored: Tue Nov 1 18:00:04 2016 +0800
Committer: Hongbin Ma <ma...@apache.org>
Committed: Tue Nov 1 18:00:04 2016 +0800

----------------------------------------------------------------------
 website/_docs16/howto/howto_cleanup_storage.md | 4 ++--
 website/_docs16/howto/howto_upgrade.md         | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/90065989/website/_docs16/howto/howto_cleanup_storage.md
----------------------------------------------------------------------
diff --git a/website/_docs16/howto/howto_cleanup_storage.md b/website/_docs16/howto/howto_cleanup_storage.md
index 233d32d..3db5d49 100644
--- a/website/_docs16/howto/howto_cleanup_storage.md
+++ b/website/_docs16/howto/howto_cleanup_storage.md
@@ -12,11 +12,11 @@ Steps:
 1. Check which resources can be cleanup, this will not remove anything:
 {% highlight Groff markup %}
 export KYLIN_HOME=/path/to/kylin_home
-${KYLIN_HOME}/bin/kylin.sh org.apache.kylin.storage.hbase.util.StorageCleanupJob --delete false
+${KYLIN_HOME}/bin/kylin.sh org.apache.kylin.tool.StorageCleanupJob --delete false
 {% endhighlight %}
 Here please replace (version) with the specific Kylin jar version in your installation;
 2. You can pickup 1 or 2 resources to check whether they're no longer be referred; Then add the "--delete true" option to start the cleanup:
 {% highlight Groff markup %}
-${KYLIN_HOME}/bin/kylin.sh org.apache.kylin.storage.hbase.util.StorageCleanupJob --delete true
+${KYLIN_HOME}/bin/kylin.sh org.apache.kylin.tool.StorageCleanupJob --delete true
 {% endhighlight %}
 On finish, the intermediate HDFS location and HTables should be dropped;

http://git-wip-us.apache.org/repos/asf/kylin/blob/90065989/website/_docs16/howto/howto_upgrade.md
----------------------------------------------------------------------
diff --git a/website/_docs16/howto/howto_upgrade.md b/website/_docs16/howto/howto_upgrade.md
index 7294bb7..47f0414 100644
--- a/website/_docs16/howto/howto_upgrade.md
+++ b/website/_docs16/howto/howto_upgrade.md
@@ -153,5 +153,5 @@ Here is the command to create hybrid model:
 
 ```
 export KYLIN_HOME="<path_of_1_5_0_installation>"
-$KYLIN_HOME/bin/kylin.sh org.apache.kylin.storage.hbase.util.ExtendCubeToHybridCLI <project_name> <cube_name>
+$KYLIN_HOME/bin/kylin.sh org.apache.kylin.tool.ExtendCubeToHybridCLI <project_name> <cube_name>
 ```