use of com.sequenceiq.datalake.flow.repair.event.SdxRepairWaitRequest in project cloudbreak by hortonworks.
the class SdxRepairWaitHandler method doAccept.
@Override
protected Selectable doAccept(HandlerEvent<SdxRepairWaitRequest> event) {
SdxRepairWaitRequest sdxRepairWaitRequest = event.getData();
Long sdxId = sdxRepairWaitRequest.getResourceId();
String userId = sdxRepairWaitRequest.getUserId();
Selectable response;
try {
LOGGER.debug("Start polling stack repair process for id: {}", sdxId);
PollingConfig pollingConfig = new PollingConfig(sleepTimeInSec, TimeUnit.SECONDS, durationInMinutes, TimeUnit.MINUTES);
repairService.waitCloudbreakClusterRepair(sdxId, pollingConfig);
response = new SdxRepairSuccessEvent(sdxId, userId);
} catch (UserBreakException userBreakException) {
LOGGER.error("Repair polling exited before timeout. Cause: ", userBreakException);
response = new SdxRepairFailedEvent(sdxId, userId, userBreakException);
} catch (PollerStoppedException pollerStoppedException) {
LOGGER.error("Repair poller stopped for stack: {}", sdxId);
response = new SdxRepairFailedEvent(sdxId, userId, new PollerStoppedException("Datalake repair timed out after " + durationInMinutes + " minutes"));
} catch (PollerException exception) {
LOGGER.error("Repair polling failed for stack: {}", sdxId);
response = new SdxRepairFailedEvent(sdxId, userId, exception);
}
return response;
}
Aggregations