Repository: chukwa Updated Branches: refs/heads/master 326f05987 -> 6b2ddcf0c
CHUKWA-796. Remove collector from shell script. (Eric Yang) Project: http://git-wip-us.apache.org/repos/asf/chukwa/repo Commit: http://git-wip-us.apache.org/repos/asf/chukwa/commit/3f5bb3c3 Tree: http://git-wip-us.apache.org/repos/asf/chukwa/tree/3f5bb3c3 Diff: http://git-wip-us.apache.org/repos/asf/chukwa/diff/3f5bb3c3 Branch: refs/heads/master Commit: 3f5bb3c3cbc4dccc460f5ead2c132a0108576d47 Parents: 326f059 Author: Eric Yang <[email protected]> Authored: Sat Mar 19 08:41:02 2016 -0700 Committer: Eric Yang <[email protected]> Committed: Sat Mar 19 08:41:02 2016 -0700 ---------------------------------------------------------------------- bin/chukwa | 4 ---- 1 file changed, 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/chukwa/blob/3f5bb3c3/bin/chukwa ---------------------------------------------------------------------- diff --git a/bin/chukwa b/bin/chukwa index db77200..cb42441 100755 --- a/bin/chukwa +++ b/bin/chukwa @@ -35,7 +35,6 @@ if [ $# = 0 ]; then echo "where COMMAND is one of:" echo " agent run a Chukwa Agent" echo " archive run the Archive Manager" - echo " collector run a Chukwa Collector" echo " demux run the Demux Manager" echo " dp run the Post Demux data processors" echo " hicc run a HICC Webserver" @@ -90,9 +89,6 @@ if [ "$COMMAND" = "agent" ]; then elif [ "$COMMAND" = "archive" ]; then APP='archive' CLASS='org.apache.hadoop.chukwa.extraction.archive.ChukwaArchiveManager' -elif [ "$COMMAND" = "collector" ]; then - APP='collector' - CLASS='org.apache.hadoop.chukwa.datacollection.collector.CollectorStub' elif [ "$COMMAND" = "dp" ]; then APP='postprocess' CLASS='org.apache.hadoop.chukwa.extraction.demux.PostProcessorManager'
