HDFS-3169. TestFsck should test multiple -move operations in a row. Contributed by Colin Patrick McCabe

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1327776 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eli Collins 2012-04-19 01:51:13 +00:00
parent 54e61ffdc0
commit 4550627cab
2 changed files with 15 additions and 9 deletions

View File

@ -393,6 +393,9 @@ Release 2.0.0 - UNRELEASED
HDFS-3206. Miscellaneous xml cleanups for OEV. HDFS-3206. Miscellaneous xml cleanups for OEV.
(Colin Patrick McCabe via eli) (Colin Patrick McCabe via eli)
HDFS-3169. TestFsck should test multiple -move operations in a row.
(Colin Patrick McCabe via eli)
OPTIMIZATIONS OPTIMIZATIONS
HDFS-3024. Improve performance of stringification in addStoredBlock (todd) HDFS-3024. Improve performance of stringification in addStoredBlock (todd)

View File

@ -228,6 +228,7 @@ public Object run() throws Exception {
} }
public void testFsckMoveAndDelete() throws Exception { public void testFsckMoveAndDelete() throws Exception {
final int MAX_MOVE_TRIES = 5;
DFSTestUtil util = new DFSTestUtil("TestFsck", 5, 3, 8*1024); DFSTestUtil util = new DFSTestUtil("TestFsck", 5, 3, 8*1024);
MiniDFSCluster cluster = null; MiniDFSCluster cluster = null;
FileSystem fs = null; FileSystem fs = null;
@ -269,6 +270,7 @@ public void testFsckMoveAndDelete() throws Exception {
} }
// After a fsck -move, the corrupted file should still exist. // After a fsck -move, the corrupted file should still exist.
for (int i = 0; i < MAX_MOVE_TRIES; i++) {
outStr = runFsck(conf, 1, true, "/", "-move" ); outStr = runFsck(conf, 1, true, "/", "-move" );
assertTrue(outStr.contains(NamenodeFsck.CORRUPT_STATUS)); assertTrue(outStr.contains(NamenodeFsck.CORRUPT_STATUS));
String[] newFileNames = util.getFileNames(topDir); String[] newFileNames = util.getFileNames(topDir);
@ -280,6 +282,7 @@ public void testFsckMoveAndDelete() throws Exception {
} }
} }
assertTrue(found); assertTrue(found);
}
// Fix the filesystem by moving corrupted files to lost+found // Fix the filesystem by moving corrupted files to lost+found
outStr = runFsck(conf, 1, true, "/", "-move", "-delete"); outStr = runFsck(conf, 1, true, "/", "-move", "-delete");