YARN-2777. Mark the end of individual log in aggregated log. Contributed
by Varun Saxena
(cherry picked from commit 1a4b528691
)
Conflicts:
hadoop-yarn-project/CHANGES.txt
This commit is contained in:
parent
faeb8b9b53
commit
b63ff4c36d
|
@ -335,6 +335,9 @@ Release 2.7.0 - UNRELEASED
|
|||
CapacitySchedulerLeafQueueInfo#aMResourceLimit to AMResourceLimit.
|
||||
(Rohith via jianhe)
|
||||
|
||||
YARN-2777. Mark the end of individual log in aggregated log.
|
||||
(Varun Saxena via xgong)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
YARN-2990. FairScheduler's delay-scheduling always waits for node-local and
|
||||
|
|
|
@ -711,6 +711,7 @@ public class AggregatedLogFormat {
|
|||
pendingRead > buf.length ? buf.length : (int) pendingRead;
|
||||
len = valueStream.read(buf, 0, toRead);
|
||||
}
|
||||
out.println("End of LogType:" + fileType);
|
||||
out.println("");
|
||||
}
|
||||
|
||||
|
|
|
@ -257,7 +257,8 @@ public class TestAggregatedLogFormat {
|
|||
+ (logUploadedTime ? ("\nLog Upload Time:" + Times.format(System
|
||||
.currentTimeMillis())).length() : 0)
|
||||
+ ("\nLogLength:" + numChars).length()
|
||||
+ "\nLog Contents:\n".length() + numChars + "\n".length();
|
||||
+ "\nLog Contents:\n".length() + numChars + "\n".length()
|
||||
+ "End of LogType:stdout\n".length();
|
||||
Assert.assertTrue("LogType not matched", s.contains("LogType:stdout"));
|
||||
Assert.assertTrue("log file:stderr should not be aggregated.", !s.contains("LogType:stderr"));
|
||||
Assert.assertTrue("log file:logs should not be aggregated.", !s.contains("LogType:logs"));
|
||||
|
|
Loading…
Reference in New Issue