HDFS-15515: mkdirs on fallback should throw IOE out instead of suppressing and returning false (#2205)
* HDFS-15515: mkdirs on fallback should throw IOE out instead of suppressing and returning false * Used LambdaTestUtils#intercept in test
This commit is contained in:
parent
42154f04e3
commit
99b120a06e
|
@ -1421,7 +1421,7 @@ public class ViewFileSystem extends FileSystem {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean mkdirs(Path dir, FsPermission permission)
|
public boolean mkdirs(Path dir, FsPermission permission)
|
||||||
throws AccessControlException, FileAlreadyExistsException {
|
throws IOException {
|
||||||
if (theInternalDir.isRoot() && dir == null) {
|
if (theInternalDir.isRoot() && dir == null) {
|
||||||
throw new FileAlreadyExistsException("/ already exits");
|
throw new FileAlreadyExistsException("/ already exits");
|
||||||
}
|
}
|
||||||
|
@ -1451,7 +1451,7 @@ public class ViewFileSystem extends FileSystem {
|
||||||
.append(linkedFallbackFs.getUri());
|
.append(linkedFallbackFs.getUri());
|
||||||
LOG.debug(msg.toString(), e);
|
LOG.debug(msg.toString(), e);
|
||||||
}
|
}
|
||||||
return false;
|
throw e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1459,8 +1459,7 @@ public class ViewFileSystem extends FileSystem {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean mkdirs(Path dir)
|
public boolean mkdirs(Path dir) throws IOException {
|
||||||
throws AccessControlException, FileAlreadyExistsException {
|
|
||||||
return mkdirs(dir, null);
|
return mkdirs(dir, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.hadoop.fs.viewfs;
|
package org.apache.hadoop.fs.viewfs;
|
||||||
|
|
||||||
|
import static org.apache.hadoop.test.LambdaTestUtils.intercept;
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertFalse;
|
import static org.junit.Assert.assertFalse;
|
||||||
import static org.junit.Assert.assertNotNull;
|
import static org.junit.Assert.assertNotNull;
|
||||||
|
@ -759,7 +760,9 @@ public class TestViewFileSystemLinkFallback extends ViewFileSystemBaseTest {
|
||||||
cluster.shutdownNameNodes(); // Stopping fallback server
|
cluster.shutdownNameNodes(); // Stopping fallback server
|
||||||
// /user1/test1 does not exist in mount internal dir tree, it would
|
// /user1/test1 does not exist in mount internal dir tree, it would
|
||||||
// attempt to create in fallback.
|
// attempt to create in fallback.
|
||||||
assertFalse(vfs.mkdirs(nextLevelToInternalDir));
|
intercept(IOException.class, () -> {
|
||||||
|
vfs.mkdirs(nextLevelToInternalDir);
|
||||||
|
});
|
||||||
cluster.restartNameNodes();
|
cluster.restartNameNodes();
|
||||||
// should return true succeed when fallback fs is back to normal.
|
// should return true succeed when fallback fs is back to normal.
|
||||||
assertTrue(vfs.mkdirs(nextLevelToInternalDir));
|
assertTrue(vfs.mkdirs(nextLevelToInternalDir));
|
||||||
|
|
Loading…
Reference in New Issue