Repository: kylin Updated Branches: refs/heads/document 27e474650 -> 988c4978c
fix org.apache.kylin.tool.StorageCleanupJob, new package name Project: http://git-wip-us.apache.org/repos/asf/kylin/repo Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/988c4978 Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/988c4978 Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/988c4978 Branch: refs/heads/document Commit: 988c4978c9aa8d64fdde670ba403d02b2fcaad52 Parents: 27e4746 Author: Li Yang <liy...@apache.org> Authored: Sun Aug 6 15:18:37 2017 +0800 Committer: Li Yang <liy...@apache.org> Committed: Sun Aug 6 15:18:54 2017 +0800 ---------------------------------------------------------------------- website/_docs20/howto/howto_cleanup_storage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kylin/blob/988c4978/website/_docs20/howto/howto_cleanup_storage.md ---------------------------------------------------------------------- diff --git a/website/_docs20/howto/howto_cleanup_storage.md b/website/_docs20/howto/howto_cleanup_storage.md index badede1..b6afa88 100644 --- a/website/_docs20/howto/howto_cleanup_storage.md +++ b/website/_docs20/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;