MAPREDUCE-4750. Enable NNBenchWithoutMR in MapredTestDriver (Liang Xie and Jason Lowe via raviprak)
(cherry picked from commit 5aab014340
)
This commit is contained in:
parent
743ca1a056
commit
23065e6051
|
@ -73,7 +73,6 @@ Release 2.8.0 - UNRELEASED
|
|||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
||||
MAPREDUCE-6314. TestPipeApplication fails on trunk.
|
||||
(Varun Vasudev via harsh)
|
||||
|
||||
|
@ -145,6 +144,9 @@ Release 2.8.0 - UNRELEASED
|
|||
MAPREDUCE-3383. Duplicate job.getOutputValueGroupingComparator() in
|
||||
ReduceTask (Binglin Chang via jlowe)
|
||||
|
||||
MAPREDUCE-4750. Enable NNBenchWithoutMR in MapredTestDriver (Liang Xie
|
||||
and Jason Lowe via raviprak)
|
||||
|
||||
Release 2.7.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -35,6 +35,7 @@ import org.apache.hadoop.mapreduce.SleepJob;
|
|||
import org.apache.hadoop.util.ProgramDriver;
|
||||
|
||||
import org.apache.hadoop.hdfs.NNBench;
|
||||
import org.apache.hadoop.hdfs.NNBenchWithoutMR;
|
||||
import org.apache.hadoop.fs.TestFileSystem;
|
||||
import org.apache.hadoop.fs.TestDFSIO;
|
||||
import org.apache.hadoop.fs.DFSCIOTest;
|
||||
|
@ -90,7 +91,9 @@ public class MapredTestDriver {
|
|||
pgd.addClass("sleep", SleepJob.class,
|
||||
"A job that sleeps at each map and reduce task.");
|
||||
pgd.addClass("nnbench", NNBench.class,
|
||||
"A benchmark that stresses the namenode.");
|
||||
"A benchmark that stresses the namenode w/ MR.");
|
||||
pgd.addClass("nnbenchWithoutMR", NNBenchWithoutMR.class,
|
||||
"A benchmark that stresses the namenode w/o MR.");
|
||||
pgd.addClass("testfilesystem", TestFileSystem.class,
|
||||
"A test for FileSystem read/write.");
|
||||
pgd.addClass(TestDFSIO.class.getSimpleName(), TestDFSIO.class,
|
||||
|
|
Loading…
Reference in New Issue