org.apache.tez.dag.api.client.DAGClientInternal 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.tez.dag.api.client;
import java.io.Closeable;
import java.io.IOException;
import java.util.Set;
import javax.annotation.Nullable;
import org.apache.hadoop.classification.InterfaceAudience.Private;
import org.apache.hadoop.yarn.api.records.ApplicationReport;
import org.apache.hadoop.yarn.exceptions.ApplicationNotFoundException;
import org.apache.tez.dag.api.TezException;
/**
* Private internal class for monitoring the DAG
running in a Tez DAG
* Application Master.
*/
@Private
public abstract class DAGClientInternal implements Closeable {
/**
* Gets DAG execution context for use with logging
* @return summary of DAG execution
*/
public abstract String getExecutionContext();
@Private
/**
* Get the YARN ApplicationReport for the app running the DAG. For performance
* reasons this may be stale copy and should be used to access static info. It
* may be null.
* @return ApplicationReport
or null
*/
protected abstract ApplicationReport getApplicationReportInternal();
/**
* Get the status of the specified DAG
* @param statusOptions Optionally, retrieve additional information based on
* specified options. To retrieve basic information, this can be null
*/
public abstract DAGStatus getDAGStatus(@Nullable Set statusOptions)
throws IOException, TezException, ApplicationNotFoundException;
/**
* Get the status of the specified DAG when it reaches a final state, or the timeout expires.
*
* @param statusOptions Optionally, retrieve additional information based on
* specified options. To retrieve basic information, this can be null
* @param timeout RPC call timeout. Value -1 waits for infinite and returns when
* DAG reaches final state
* @return DAG Status
* @throws IOException
* @throws TezException
*/
public abstract DAGStatus getDAGStatus(@Nullable Set statusOptions,
long timeout)
throws IOException, TezException, ApplicationNotFoundException;
/**
* Get the status of a Vertex of a DAG
* @param statusOptions Optionally, retrieve additional information based on
* specified options
*/
public abstract VertexStatus getVertexStatus(String vertexName,
Set statusOptions)
throws IOException, TezException, ApplicationNotFoundException;
/**
* Get the dag identifier for the currently executing dag. This is a string
* which represents this dag
* @return the dag identifier
*/
public abstract String getDagIdentifierString();
/**
* Get the session identifier for the session in which this dag is running
* @return the session identifier
*/
public abstract String getSessionIdentifierString();
/**
* Kill a running DAG
*
*/
public abstract void tryKillDAG() throws IOException, TezException;
/**
* Wait for DAG to complete without printing any vertex statuses
*
* @return Final DAG Status
* @throws IOException
* @throws TezException
* @throws InterruptedException
*/
public abstract DAGStatus waitForCompletion() throws IOException, TezException, InterruptedException;
/**
* Wait for DAG to complete and periodically print *all* vertices' status.
*
* @param statusGetOpts
* : status get options. For example, to get counter pass
* EnumSet.of(StatusGetOpts.GET_COUNTERS)
* @return Final DAG Status
* @throws IOException
* @throws TezException
* @throws InterruptedException
*/
public abstract DAGStatus waitForCompletionWithStatusUpdates(@Nullable Set statusGetOpts)
throws IOException, TezException, InterruptedException;
public abstract String getWebUIAddress() throws IOException, TezException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy