public void run() throws Exception
{
log.info("Starting kafka sweeper");
int numThreads = Integer.parseInt(props.getProperty("num.threads", DEFAULT_NUM_THREADS));
executorService = executorService = new PriorityExecutor(numThreads);
String fromLocation = (String) props.getProperty("camus.sweeper.source.dir");
String destLocation = (String) props.getProperty("camus.sweeper.dest.dir", "");
String tmpLocation = (String) props.getProperty("camus.sweeper.tmp.dir", "");