use of org.apache.airavata.cloud.aurora.client.sdk.TaskQuery in project airavata by apache.
the class AuroraThriftClient method getJobDetails.
/**
* Gets the job details.
*
* @param jobKeyBean the job key bean
* @return the job details
* @throws Exception the exception
*/
public JobDetailsResponseBean getJobDetails(JobKeyBean jobKeyBean) throws Exception {
JobDetailsResponseBean response = null;
// try till we get response or scheduler connection not found
while (response == null) {
try {
if (jobKeyBean != null) {
JobKey jobKey = AuroraThriftClientUtil.getAuroraJobKey(jobKeyBean);
Set<JobKey> jobKeySet = new HashSet<>();
jobKeySet.add(jobKey);
TaskQuery query = new TaskQuery();
query.setJobKeys(jobKeySet);
Response jobDetailsResponse = this.readOnlySchedulerClient.getTasksStatus(query);
response = (JobDetailsResponseBean) AuroraThriftClientUtil.getResponseBean(jobDetailsResponse, ResponseResultType.GET_JOB_DETAILS);
}
} catch (Exception ex) {
if (ex instanceof TTransportException) {
// if re-connection success, retry command
if (this.reconnectWithAuroraScheduler()) {
continue;
}
}
logger.error(ex.getMessage(), ex);
throw ex;
}
}
return response;
}
use of org.apache.airavata.cloud.aurora.client.sdk.TaskQuery in project airavata by apache.
the class AuroraThriftClient method getPendingReasonForJob.
/**
* Gets the pending reason for job.
*
* @param jobKeyBean the job key bean
* @return the pending reason for job
* @throws Exception the exception
*/
public PendingJobReasonBean getPendingReasonForJob(JobKeyBean jobKeyBean) throws Exception {
PendingJobReasonBean response = null;
// try till we get response or scheduler connection not found
while (response == null) {
try {
JobKey jobKey = AuroraThriftClientUtil.getAuroraJobKey(jobKeyBean);
Set<JobKey> jobKeySet = new HashSet<>();
jobKeySet.add(jobKey);
TaskQuery query = new TaskQuery();
query.setJobKeys(jobKeySet);
Response pendingReasonResponse = this.readOnlySchedulerClient.getPendingReason(query);
response = (PendingJobReasonBean) AuroraThriftClientUtil.getResponseBean(pendingReasonResponse, ResponseResultType.GET_PENDING_JOB_REASON);
} catch (Exception ex) {
if (ex instanceof TTransportException) {
// if re-connection success, retry command
if (this.reconnectWithAuroraScheduler()) {
continue;
}
}
logger.error(ex.getMessage(), ex);
throw ex;
}
}
return response;
}
Aggregations