LOG.info("Successfully started nimbus: started Thrift server...");
thriftServer.serve();
}
private void initFollowerThread(Map conf) {
follower = new FollowerRunnable(data, 5000);
Thread thread = new Thread(follower);
thread.setDaemon(true);
thread.start();
LOG.info("Successfully init Follower thread");
}