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/03/03 03:53:51 UTC

kylin git commit: KYLIN-1459 Update documents due to StorageCleanupJob was moved to package org.apache.kylin.storage.hbase.util

Repository: kylin
Updated Branches:
  refs/heads/document 28d64ee80 -> 5db53afd2


KYLIN-1459 Update documents due to StorageCleanupJob was moved to package org.apache.kylin.storage.hbase.util

Signed-off-by: Hongbin Ma <ma...@apache.org>


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

Branch: refs/heads/document
Commit: 5db53afd20e9947ee0e86f3fbbbd80d125c5eb28
Parents: 28d64ee
Author: John Zhao <yu...@ebay.com>
Authored: Mon Feb 29 15:19:41 2016 -0800
Committer: Hongbin Ma <ma...@apache.org>
Committed: Thu Mar 3 10:53:02 2016 +0800

----------------------------------------------------------------------
 website/_docs2/howto/howto_cleanup_storage.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/5db53afd/website/_docs2/howto/howto_cleanup_storage.md
----------------------------------------------------------------------
diff --git a/website/_docs2/howto/howto_cleanup_storage.md b/website/_docs2/howto/howto_cleanup_storage.md
index f440d8b..8ccab53 100644
--- a/website/_docs2/howto/howto_cleanup_storage.md
+++ b/website/_docs2/howto/howto_cleanup_storage.md
@@ -3,8 +3,8 @@ layout: docs2
 title:  How to Cleanup Storage (HDFS & HBase Tables)
 categories: howto
 permalink: /docs2/howto/howto_cleanup_storage.html
-version: v0.7.2
-since: v0.7.1
+version: v2
+since: v2
 ---
 
 Kylin will generate intermediate files in HDFS during the cube building; Besides, when purge/drop/merge cubes, some HBase tables may be left in HBase and will no longer be queried; Although Kylin has started to do some 
@@ -13,11 +13,11 @@ automated garbage collection, it might not cover all cases; You can do an offlin
 Steps:
 1. Check which resources can be cleanup, this will not remove anything:
 {% highlight Groff markup %}
-hbase org.apache.hadoop.util.RunJar ${KYLIN_HOME}/lib/kylin-job-(version).jar org.apache.kylin.job.hadoop.cube.StorageCleanupJob --delete false
+hbase org.apache.hadoop.util.RunJar ${KYLIN_HOME}/lib/kylin-job-(version).jar org.apache.kylin.storage.hbase.util.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 %}
-hbase org.apache.hadoop.util.RunJar ${KYLIN_HOME}/lib/kylin-job-(version).jar org.apache.kylin.job.hadoop.cube.StorageCleanupJob --delete true
+hbase org.apache.hadoop.util.RunJar ${KYLIN_HOME}/lib/kylin-job-(version).jar org.apache.kylin.storage.hbase.util.StorageCleanupJob --delete true
 {% endhighlight %}
-On finish, the intermediate HDFS location and HTables will be dropped;
\ No newline at end of file
+On finish, the intermediate HDFS location and HTables will be dropped;