try {
mSemaphore.acquire();
release = true;
int attempts = 0;
boolean retry;
LocalCommand cmd;
do {
retry = false;
if(command.getType() == RSyncCommand.Type.TO_LOCAL) {
cmd = mLocalCommandFactory.create(collector,
String.format("timeout 1h rsync -vaPe \"ssh -i %s\" --timeout 600 %s@%s:%s %s",
command.getPrivateKey(), command.getUser(), command.getHost(),
command.getRemoteFile(), command.getLocalFile()));
} else if(command.getType() == RSyncCommand.Type.FROM_LOCAL) {
cmd = mLocalCommandFactory.create(collector,
String.format("timeout 1h rsync -vaPe \"ssh -i %s\" --timeout 600 --delete --delete-during --force %s %s@%s:%s",
command.getPrivateKey(), command.getLocalFile(), command.getUser(), command.getHost(),
command.getRemoteFile()));
} else {
throw new UnsupportedOperationException(String.valueOf(command.getType()));
}
if(mShutdown) {
mLogger.warn("Shutting down command " + command);
cmd.kill();
command.setExitCode(Constants.EXIT_CODE_UNKNOWN);
return;
}
// 12 is timeout and 255 is unspecified error
if(attempts++ <= 3 && cmd.getExitCode() != 0) {
mLogger.warn("Command exited with " + cmd.getExitCode() + ", will retry: " + command);
retry = true;
TimeUnit.SECONDS.sleep(20);
}
} while (!mShutdown && retry); // an error occurred, re-try
command.setExitCode(cmd.getExitCode());
} catch (IOException e) {
command.setException(e);
} catch (InterruptedException e) {
command.setException(e);
} finally {