HDFS-9153. Pretty-format the output for DFSIO. Contributed by Kai Zheng.
This commit is contained in:
parent
049ccf71ce
commit
469fef2a4f
|
@ -806,6 +806,8 @@ Release 2.8.0 - UNRELEASED
|
|||
|
||||
HDFS-9402. Switch DataNode.LOG to use slf4j. (Walter Su via wheat9)
|
||||
|
||||
HDFS-9153. Pretty-format the output for DFSIO. (Kai Zheng via wheat9)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than
|
||||
|
|
|
@ -28,6 +28,7 @@ import java.io.InputStream;
|
|||
import java.io.InputStreamReader;
|
||||
import java.io.OutputStream;
|
||||
import java.io.PrintStream;
|
||||
import java.text.DecimalFormat;
|
||||
import java.util.Date;
|
||||
import java.util.Random;
|
||||
import java.util.StringTokenizer;
|
||||
|
@ -903,19 +904,21 @@ public class TestDFSIO implements Tool {
|
|||
if(in != null) in.close();
|
||||
if(lines != null) lines.close();
|
||||
}
|
||||
|
||||
|
||||
double med = rate / 1000 / tasks;
|
||||
double stdDev = Math.sqrt(Math.abs(sqrate / 1000 / tasks - med*med));
|
||||
DecimalFormat df = new DecimalFormat("#.##");
|
||||
String resultLines[] = {
|
||||
"----- TestDFSIO ----- : " + testType,
|
||||
" Date & time: " + new Date(System.currentTimeMillis()),
|
||||
" Number of files: " + tasks,
|
||||
"Total MBytes processed: " + toMB(size),
|
||||
" Throughput mb/sec: " + size * 1000.0 / (time * MEGA),
|
||||
"Average IO rate mb/sec: " + med,
|
||||
" IO rate std deviation: " + stdDev,
|
||||
" Test exec time sec: " + (float)execTime / 1000,
|
||||
"" };
|
||||
"----- TestDFSIO ----- : " + testType,
|
||||
" Date & time: " + new Date(System.currentTimeMillis()),
|
||||
" Number of files: " + tasks,
|
||||
" Total MBytes processed: " + df.format(toMB(size)),
|
||||
" Throughput mb/sec: " + df.format(size * 1000.0 / (time * MEGA)),
|
||||
"Total Throughput mb/sec: " + df.format(toMB(size) / ((float)execTime)),
|
||||
" Average IO rate mb/sec: " + df.format(med),
|
||||
" IO rate std deviation: " + df.format(stdDev),
|
||||
" Test exec time sec: " + df.format((float)execTime / 1000),
|
||||
"" };
|
||||
|
||||
PrintStream res = null;
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue