在使用yarn
命令运行wordcount示例时,是否有任何方法可以获取应用程序ID?
我希望使用yarn
命令从另一个进程启动作业,并通过YARN REST API监视作业的状态。
(使用Hadoop2.4.0)
您可以使用yarn application -list
命令来获取所有应用程序的列表。
特别是,如果您想获得当前处于RUNNING
状态的所有应用程序的列表,您可以执行以下命令:
yarn application -list -appStates RUNNING
如果您已经知道应用程序ID,那么您可以使用以下命令查询应用程序的状态:
yarn application -status <application ID>
例如
yarn application -status application_1448359154956_0001
我得到以下应用程序报告(在这种情况下,用户的应用程序是KILLED
):
Application Report :
Application-Id : application_1448359154956_0001
Application-Name : distcp
Application-Type : MAPREDUCE
User : mballur
Queue : default
Start-Time : 1448359237581
Finish-Time : 1448359419592
Progress : 100%
State : KILLED
Final-State : KILLED
Tracking-URL : http://mballur.fareast.corp.microsoft.com:8088/cluster/ap
p/application_1448359154956_0001
RPC Port : -1
AM Host : N/A
Aggregate Resource Allocation : 1652876 MB-seconds, 1337 vcore-seconds
Log Aggregation Status : NOT_START
Diagnostics : Application killed by user.
您可以解析此输出以获得应用程序的State
和Progress
。
结账http://hadoop.apache.org/docs/r2.4.0/api/org/apache/hadoop/yarn/client/api/YarnClient.html.应该有一个东西来获得你需要的应用程序ID。