private void startAutoRecovery(BookieServer bserver,
ServerConfiguration conf) throws CompatibilityException,
KeeperException, InterruptedException, IOException,
UnavailableException {
if (isAutoRecoveryEnabled()) {
AutoRecoveryMain autoRecoveryProcess = new AutoRecoveryMain(conf);
autoRecoveryProcess.start();
autoRecoveryProcesses.put(bserver, autoRecoveryProcess);
LOG.debug("Starting Auditor Recovery for the bookie:"
+ bserver.getLocalAddress());
}
}