use of com.sequenceiq.cloudbreak.orchestrator.yarn.api.YarnEndpoint in project cloudbreak by hortonworks.
the class YarnHttpClient method deleteApplication.
@Override
public void deleteApplication(DeleteApplicationRequest deleteApplicationRequest) throws CloudbreakOrchestratorFailedException, MalformedURLException {
// Add the application name to the URL
YarnEndpoint dashEndpoint = new YarnEndpoint(apiEndpoint, YarnResourceConstants.APPLICATIONS_PATH + '/' + deleteApplicationRequest.getName());
ClientConfig clientConfig = new DefaultClientConfig();
Client client = Client.create(clientConfig);
// Delete the application
WebResource webResource = client.resource(dashEndpoint.getFullEndpointUrl().toString());
ClientResponse response = webResource.accept("application/json").type("application/json").delete(ClientResponse.class);
// Validate HTTP 204 return
String msg;
switch(response.getStatus()) {
case YarnResourceConstants.HTTP_NO_CONTENT:
msg = String.format("Successfully deleted application %s", deleteApplicationRequest.getName());
LOGGER.debug(msg);
break;
case YarnResourceConstants.HTTP_NOT_FOUND:
msg = String.format("Application %s not found, already deleted?", deleteApplicationRequest.getName());
LOGGER.debug(msg);
break;
default:
msg = String.format("Received %d status code from url %s, reason: %s", response.getStatus(), dashEndpoint.getFullEndpointUrl().toString(), response.getEntity(String.class));
LOGGER.debug(msg);
throw new CloudbreakOrchestratorFailedException(msg);
}
}
use of com.sequenceiq.cloudbreak.orchestrator.yarn.api.YarnEndpoint in project cloudbreak by hortonworks.
the class YarnHttpClient method createApplication.
@Override
public ResponseContext createApplication(CreateApplicationRequest createApplicationRequest) throws MalformedURLException {
YarnEndpoint dashEndpoint = new YarnEndpoint(apiEndpoint, YarnResourceConstants.APPLICATIONS_PATH);
ResponseContext responseContext = new ResponseContext();
// Construct the webresource and perform the get
WebResource webResource = getNewWebResource(dashEndpoint.getFullEndpointUrl().toString());
ClientResponse response = webResource.accept(MediaType.APPLICATION_JSON).type(MediaType.APPLICATION_JSON).post(ClientResponse.class, createApplicationRequest);
responseContext.setStatusCode(response.getStatus());
// Validate the results
if (responseContext.getStatusCode() == YarnResourceConstants.HTTP_ACCEPTED) {
responseContext.setResponseObject(response.getEntity(ApplicationDetailResponse.class));
} else {
responseContext.setResponseError(response.getEntity(ApplicationErrorResponse.class));
}
return responseContext;
}
use of com.sequenceiq.cloudbreak.orchestrator.yarn.api.YarnEndpoint in project cloudbreak by hortonworks.
the class YarnHttpClient method getApplicationDetail.
@Override
public ResponseContext getApplicationDetail(ApplicationDetailRequest applicationDetailRequest) throws MalformedURLException {
ResponseContext responseContext = new ResponseContext();
// Add the application name to the URL
YarnEndpoint dashEndpoint = new YarnEndpoint(apiEndpoint, YarnResourceConstants.APPLICATIONS_PATH + '/' + applicationDetailRequest.getName());
// Construct the webresource and perform the get
WebResource webResource = getNewWebResource(dashEndpoint.getFullEndpointUrl().toString());
ClientResponse response = webResource.accept(MediaType.APPLICATION_JSON).type(MediaType.APPLICATION_JSON).get(ClientResponse.class);
responseContext.setStatusCode(response.getStatus());
// Validate the results
if (checkStatusCode(response, YarnResourceConstants.HTTP_SUCCESS)) {
responseContext.setResponseObject(response.getEntity(ApplicationDetailResponse.class));
} else {
responseContext.setResponseError(response.getEntity(ApplicationErrorResponse.class));
}
return responseContext;
}
use of com.sequenceiq.cloudbreak.orchestrator.yarn.api.YarnEndpoint in project cloudbreak by hortonworks.
the class YarnHttpClient method validateApiEndpoint.
@Override
public void validateApiEndpoint() throws CloudbreakOrchestratorFailedException, MalformedURLException {
YarnEndpoint dashEndpoint = new YarnEndpoint(apiEndpoint, YarnResourceConstants.APPLICATIONS_PATH);
ClientConfig clientConfig = new DefaultClientConfig();
Client client = Client.create(clientConfig);
WebResource webResource = client.resource(dashEndpoint.getFullEndpointUrl().toString());
ClientResponse response = webResource.accept("application/json").type("application/json").get(ClientResponse.class);
// Validate HTTP 200 status code
if (response.getStatus() != YarnResourceConstants.HTTP_SUCCESS) {
String msg = String.format("Received %d status code from url %s, reason: %s", response.getStatus(), dashEndpoint.getFullEndpointUrl().toString(), response.getEntity(String.class));
LOGGER.debug(msg);
throw new CloudbreakOrchestratorFailedException(msg);
}
}
Aggregations