use of org.apache.hadoop.yarn.proto.YarnServerCommonServiceProtos.LogAggregationReportProto in project hadoop by apache.
the class NodeHeartbeatRequestPBImpl method initLogAggregationReportsForApps.
private void initLogAggregationReportsForApps() {
NodeHeartbeatRequestProtoOrBuilder p = viaProto ? proto : builder;
List<LogAggregationReportProto> list = p.getLogAggregationReportsForAppsList();
this.logAggregationReportsForApps = new ArrayList<LogAggregationReport>();
for (LogAggregationReportProto c : list) {
this.logAggregationReportsForApps.add(convertFromProtoFormat(c));
}
}
Aggregations