HDFS-9153. Pretty-format the output for DFSIO. Contributed by Kai Zheng.

This commit is contained in:
Haohui Mai 2015-11-22 16:18:07 -08:00
parent 0c7340f377
commit 000e12f6fa
2 changed files with 15 additions and 10 deletions

View File

@ -1668,6 +1668,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

View File

@ -28,6 +28,7 @@
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;
@ -904,15 +905,17 @@ else if (attr.endsWith(":sqrate"))
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,
" 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;