
org.apache.flink.client.deployment.application.UnsuccessfulExecutionException Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.flink.client.deployment.application;
import org.apache.flink.annotation.Internal;
import org.apache.flink.api.common.JobID;
import org.apache.flink.runtime.client.JobExecutionException;
import org.apache.flink.runtime.clusterframework.ApplicationStatus;
import org.apache.flink.runtime.jobmaster.JobResult;
import static org.apache.flink.util.Preconditions.checkNotNull;
import static org.apache.flink.util.Preconditions.checkState;
/** Exception that signals the failure of an application with a given {@link ApplicationStatus}. */
@Internal
public class UnsuccessfulExecutionException extends JobExecutionException {
private final ApplicationStatus status;
public UnsuccessfulExecutionException(
final JobID jobID,
final ApplicationStatus status,
final String message,
final Throwable cause) {
super(jobID, message, cause);
this.status = checkNotNull(status);
}
public ApplicationStatus getStatus() {
return status;
}
public static UnsuccessfulExecutionException fromJobResult(
final JobResult result, final ClassLoader userClassLoader) {
checkState(result != null && !result.isSuccess());
checkNotNull(userClassLoader);
// We do this to uniformize the behavior of the "ATTACHED" and "DETACHED"
// in application mode, while maintaining the expected exceptions thrown in case
// of a failed job execution.
try {
result.toJobExecutionResult(userClassLoader);
throw new IllegalStateException(
"No exception thrown although the job execution was not successful.");
} catch (Throwable t) {
final JobID jobID = result.getJobId();
final ApplicationStatus status = result.getApplicationStatus();
return status == ApplicationStatus.CANCELED || status == ApplicationStatus.FAILED
? new UnsuccessfulExecutionException(
jobID, status, "Application Status: " + status.name(), t)
: new UnsuccessfulExecutionException(
jobID, ApplicationStatus.UNKNOWN, "Job failed for unknown reason.", t);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy