HDFS-13845. RBF: The default MountTableResolver should fail resolving multi-destination paths. Contributed by yanghuafeng.
This commit is contained in:
parent
b3fee1d2bf
commit
c5065bf20b
@ -539,21 +539,28 @@ public String toString() {
|
|||||||
* @param entry Mount table entry.
|
* @param entry Mount table entry.
|
||||||
* @return PathLocation containing the namespace, local path.
|
* @return PathLocation containing the namespace, local path.
|
||||||
*/
|
*/
|
||||||
private static PathLocation buildLocation(
|
private PathLocation buildLocation(
|
||||||
final String path, final MountTable entry) {
|
final String path, final MountTable entry) throws IOException {
|
||||||
|
|
||||||
String srcPath = entry.getSourcePath();
|
String srcPath = entry.getSourcePath();
|
||||||
if (!path.startsWith(srcPath)) {
|
if (!path.startsWith(srcPath)) {
|
||||||
LOG.error("Cannot build location, {} not a child of {}", path, srcPath);
|
LOG.error("Cannot build location, {} not a child of {}", path, srcPath);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
List<RemoteLocation> dests = entry.getDestinations();
|
||||||
|
if (getClass() == MountTableResolver.class && dests.size() > 1) {
|
||||||
|
throw new IOException("Cannnot build location, "
|
||||||
|
+ getClass().getSimpleName()
|
||||||
|
+ " should not resolve multiple destinations for " + path);
|
||||||
|
}
|
||||||
|
|
||||||
String remainingPath = path.substring(srcPath.length());
|
String remainingPath = path.substring(srcPath.length());
|
||||||
if (remainingPath.startsWith(Path.SEPARATOR)) {
|
if (remainingPath.startsWith(Path.SEPARATOR)) {
|
||||||
remainingPath = remainingPath.substring(1);
|
remainingPath = remainingPath.substring(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
List<RemoteLocation> locations = new LinkedList<>();
|
List<RemoteLocation> locations = new LinkedList<>();
|
||||||
for (RemoteLocation oneDst : entry.getDestinations()) {
|
for (RemoteLocation oneDst : dests) {
|
||||||
String nsId = oneDst.getNameserviceId();
|
String nsId = oneDst.getNameserviceId();
|
||||||
String dest = oneDst.getDest();
|
String dest = oneDst.getDest();
|
||||||
String newPath = dest;
|
String newPath = dest;
|
||||||
|
@ -79,6 +79,8 @@ private Map<String, String> getMountTableEntry(
|
|||||||
* __usr
|
* __usr
|
||||||
* ____bin -> 2:/bin
|
* ____bin -> 2:/bin
|
||||||
* __readonly -> 2:/tmp
|
* __readonly -> 2:/tmp
|
||||||
|
* __multi -> 5:/dest1
|
||||||
|
* 6:/dest2
|
||||||
*
|
*
|
||||||
* @throws IOException If it cannot set the mount table.
|
* @throws IOException If it cannot set the mount table.
|
||||||
*/
|
*/
|
||||||
@ -126,6 +128,12 @@ private void setupMountTable() throws IOException {
|
|||||||
MountTable readOnlyEntry = MountTable.newInstance("/readonly", map);
|
MountTable readOnlyEntry = MountTable.newInstance("/readonly", map);
|
||||||
readOnlyEntry.setReadOnly(true);
|
readOnlyEntry.setReadOnly(true);
|
||||||
mountTable.addEntry(readOnlyEntry);
|
mountTable.addEntry(readOnlyEntry);
|
||||||
|
|
||||||
|
// /multi
|
||||||
|
map = getMountTableEntry("5", "/dest1");
|
||||||
|
map.put("6", "/dest2");
|
||||||
|
MountTable multiEntry = MountTable.newInstance("/multi", map);
|
||||||
|
mountTable.addEntry(multiEntry);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
@ -201,6 +209,17 @@ public void testDefaultNameServiceEnable() throws IOException {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testMuiltipleDestinations() throws IOException {
|
||||||
|
try {
|
||||||
|
mountTable.getDestinationForPath("/multi");
|
||||||
|
fail("The getDestinationForPath call should fail.");
|
||||||
|
} catch (IOException ioe) {
|
||||||
|
GenericTestUtils.assertExceptionContains(
|
||||||
|
"MountTableResolver should not resolve multiple destinations", ioe);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void compareLists(List<String> list1, String[] list2) {
|
private void compareLists(List<String> list1, String[] list2) {
|
||||||
assertEquals(list1.size(), list2.length);
|
assertEquals(list1.size(), list2.length);
|
||||||
for (String item : list2) {
|
for (String item : list2) {
|
||||||
@ -236,8 +255,9 @@ public void testGetMountPoints() throws IOException {
|
|||||||
|
|
||||||
// Check getting all mount points (virtual and real) beneath a path
|
// Check getting all mount points (virtual and real) beneath a path
|
||||||
List<String> mounts = mountTable.getMountPoints("/");
|
List<String> mounts = mountTable.getMountPoints("/");
|
||||||
assertEquals(4, mounts.size());
|
assertEquals(5, mounts.size());
|
||||||
compareLists(mounts, new String[] {"tmp", "user", "usr", "readonly"});
|
compareLists(mounts, new String[] {"tmp", "user", "usr",
|
||||||
|
"readonly", "multi"});
|
||||||
|
|
||||||
mounts = mountTable.getMountPoints("/user");
|
mounts = mountTable.getMountPoints("/user");
|
||||||
assertEquals(2, mounts.size());
|
assertEquals(2, mounts.size());
|
||||||
@ -263,6 +283,9 @@ public void testGetMountPoints() throws IOException {
|
|||||||
|
|
||||||
mounts = mountTable.getMountPoints("/unknownpath");
|
mounts = mountTable.getMountPoints("/unknownpath");
|
||||||
assertNull(mounts);
|
assertNull(mounts);
|
||||||
|
|
||||||
|
mounts = mountTable.getMountPoints("/multi");
|
||||||
|
assertEquals(0, mounts.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
private void compareRecords(List<MountTable> list1, String[] list2) {
|
private void compareRecords(List<MountTable> list1, String[] list2) {
|
||||||
@ -282,10 +305,10 @@ public void testGetMounts() throws IOException {
|
|||||||
|
|
||||||
// Check listing the mount table records at or beneath a path
|
// Check listing the mount table records at or beneath a path
|
||||||
List<MountTable> records = mountTable.getMounts("/");
|
List<MountTable> records = mountTable.getMounts("/");
|
||||||
assertEquals(9, records.size());
|
assertEquals(10, records.size());
|
||||||
compareRecords(records, new String[] {"/", "/tmp", "/user", "/usr/bin",
|
compareRecords(records, new String[] {"/", "/tmp", "/user", "/usr/bin",
|
||||||
"user/a", "/user/a/demo/a", "/user/a/demo/b", "/user/b/file1.txt",
|
"user/a", "/user/a/demo/a", "/user/a/demo/b", "/user/b/file1.txt",
|
||||||
"readonly"});
|
"readonly", "multi"});
|
||||||
|
|
||||||
records = mountTable.getMounts("/user");
|
records = mountTable.getMounts("/user");
|
||||||
assertEquals(5, records.size());
|
assertEquals(5, records.size());
|
||||||
@ -305,6 +328,10 @@ public void testGetMounts() throws IOException {
|
|||||||
assertEquals(1, records.size());
|
assertEquals(1, records.size());
|
||||||
compareRecords(records, new String[] {"/readonly"});
|
compareRecords(records, new String[] {"/readonly"});
|
||||||
assertTrue(records.get(0).isReadOnly());
|
assertTrue(records.get(0).isReadOnly());
|
||||||
|
|
||||||
|
records = mountTable.getMounts("/multi");
|
||||||
|
assertEquals(1, records.size());
|
||||||
|
compareRecords(records, new String[] {"/multi"});
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@ -313,7 +340,7 @@ public void testRemoveSubTree()
|
|||||||
|
|
||||||
// 3 mount points are present /tmp, /user, /usr
|
// 3 mount points are present /tmp, /user, /usr
|
||||||
compareLists(mountTable.getMountPoints("/"),
|
compareLists(mountTable.getMountPoints("/"),
|
||||||
new String[] {"user", "usr", "tmp", "readonly"});
|
new String[] {"user", "usr", "tmp", "readonly", "multi"});
|
||||||
|
|
||||||
// /tmp currently points to namespace 2
|
// /tmp currently points to namespace 2
|
||||||
assertEquals("2", mountTable.getDestinationForPath("/tmp/testfile.txt")
|
assertEquals("2", mountTable.getDestinationForPath("/tmp/testfile.txt")
|
||||||
@ -324,7 +351,7 @@ public void testRemoveSubTree()
|
|||||||
|
|
||||||
// Now 2 mount points are present /user, /usr
|
// Now 2 mount points are present /user, /usr
|
||||||
compareLists(mountTable.getMountPoints("/"),
|
compareLists(mountTable.getMountPoints("/"),
|
||||||
new String[] {"user", "usr", "readonly"});
|
new String[] {"user", "usr", "readonly", "multi"});
|
||||||
|
|
||||||
// /tmp no longer exists, uses default namespace for mapping /
|
// /tmp no longer exists, uses default namespace for mapping /
|
||||||
assertEquals("1", mountTable.getDestinationForPath("/tmp/testfile.txt")
|
assertEquals("1", mountTable.getDestinationForPath("/tmp/testfile.txt")
|
||||||
@ -337,7 +364,7 @@ public void testRemoveVirtualNode()
|
|||||||
|
|
||||||
// 3 mount points are present /tmp, /user, /usr
|
// 3 mount points are present /tmp, /user, /usr
|
||||||
compareLists(mountTable.getMountPoints("/"),
|
compareLists(mountTable.getMountPoints("/"),
|
||||||
new String[] {"user", "usr", "tmp", "readonly"});
|
new String[] {"user", "usr", "tmp", "readonly", "multi"});
|
||||||
|
|
||||||
// /usr is virtual, uses namespace 1->/
|
// /usr is virtual, uses namespace 1->/
|
||||||
assertEquals("1", mountTable.getDestinationForPath("/usr/testfile.txt")
|
assertEquals("1", mountTable.getDestinationForPath("/usr/testfile.txt")
|
||||||
@ -348,7 +375,7 @@ public void testRemoveVirtualNode()
|
|||||||
|
|
||||||
// Verify the remove failed
|
// Verify the remove failed
|
||||||
compareLists(mountTable.getMountPoints("/"),
|
compareLists(mountTable.getMountPoints("/"),
|
||||||
new String[] {"user", "usr", "tmp", "readonly"});
|
new String[] {"user", "usr", "tmp", "readonly", "multi"});
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@ -380,7 +407,7 @@ public void testRefreshEntries()
|
|||||||
|
|
||||||
// Initial table loaded
|
// Initial table loaded
|
||||||
testDestination();
|
testDestination();
|
||||||
assertEquals(9, mountTable.getMounts("/").size());
|
assertEquals(10, mountTable.getMounts("/").size());
|
||||||
|
|
||||||
// Replace table with /1 and /2
|
// Replace table with /1 and /2
|
||||||
List<MountTable> records = new ArrayList<>();
|
List<MountTable> records = new ArrayList<>();
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
import static org.apache.hadoop.util.Time.monotonicNow;
|
import static org.apache.hadoop.util.Time.monotonicNow;
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
|
import static org.junit.Assert.fail;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
@ -43,13 +44,13 @@
|
|||||||
import org.apache.hadoop.hdfs.server.federation.resolver.MembershipNamenodeResolver;
|
import org.apache.hadoop.hdfs.server.federation.resolver.MembershipNamenodeResolver;
|
||||||
import org.apache.hadoop.hdfs.server.federation.resolver.MountTableManager;
|
import org.apache.hadoop.hdfs.server.federation.resolver.MountTableManager;
|
||||||
import org.apache.hadoop.hdfs.server.federation.resolver.MountTableResolver;
|
import org.apache.hadoop.hdfs.server.federation.resolver.MountTableResolver;
|
||||||
import org.apache.hadoop.hdfs.server.federation.resolver.order.DestinationOrder;
|
|
||||||
import org.apache.hadoop.hdfs.server.federation.store.DisabledNameserviceStore;
|
import org.apache.hadoop.hdfs.server.federation.store.DisabledNameserviceStore;
|
||||||
import org.apache.hadoop.hdfs.server.federation.store.StateStoreService;
|
import org.apache.hadoop.hdfs.server.federation.store.StateStoreService;
|
||||||
import org.apache.hadoop.hdfs.server.federation.store.protocol.AddMountTableEntryRequest;
|
import org.apache.hadoop.hdfs.server.federation.store.protocol.AddMountTableEntryRequest;
|
||||||
import org.apache.hadoop.hdfs.server.federation.store.protocol.DisableNameserviceRequest;
|
import org.apache.hadoop.hdfs.server.federation.store.protocol.DisableNameserviceRequest;
|
||||||
import org.apache.hadoop.hdfs.server.federation.store.records.MountTable;
|
import org.apache.hadoop.hdfs.server.federation.store.records.MountTable;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.NameNode;
|
import org.apache.hadoop.hdfs.server.namenode.NameNode;
|
||||||
|
import org.apache.hadoop.test.GenericTestUtils;
|
||||||
import org.codehaus.jettison.json.JSONObject;
|
import org.codehaus.jettison.json.JSONObject;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
@ -106,14 +107,18 @@ private static void setupNamespace() throws IOException {
|
|||||||
// Setup a mount table to map to the two namespaces
|
// Setup a mount table to map to the two namespaces
|
||||||
MountTableManager mountTable = routerAdminClient.getMountTableManager();
|
MountTableManager mountTable = routerAdminClient.getMountTableManager();
|
||||||
Map<String, String> destinations = new TreeMap<>();
|
Map<String, String> destinations = new TreeMap<>();
|
||||||
destinations.put("ns0", "/");
|
destinations.put("ns0", "/dirns0");
|
||||||
destinations.put("ns1", "/");
|
MountTable newEntry = MountTable.newInstance("/dirns0", destinations);
|
||||||
MountTable newEntry = MountTable.newInstance("/", destinations);
|
|
||||||
newEntry.setDestOrder(DestinationOrder.RANDOM);
|
|
||||||
AddMountTableEntryRequest request =
|
AddMountTableEntryRequest request =
|
||||||
AddMountTableEntryRequest.newInstance(newEntry);
|
AddMountTableEntryRequest.newInstance(newEntry);
|
||||||
mountTable.addMountTableEntry(request);
|
mountTable.addMountTableEntry(request);
|
||||||
|
|
||||||
|
destinations = new TreeMap<>();
|
||||||
|
destinations.put("ns1", "/dirns1");
|
||||||
|
newEntry = MountTable.newInstance("/dirns1", destinations);
|
||||||
|
request = AddMountTableEntryRequest.newInstance(newEntry);
|
||||||
|
mountTable.addMountTableEntry(request);
|
||||||
|
|
||||||
// Refresh the cache in the Router
|
// Refresh the cache in the Router
|
||||||
Router router = routerContext.getRouter();
|
Router router = routerContext.getRouter();
|
||||||
MountTableResolver mountTableResolver =
|
MountTableResolver mountTableResolver =
|
||||||
@ -122,9 +127,9 @@ private static void setupNamespace() throws IOException {
|
|||||||
|
|
||||||
// Add a folder to each namespace
|
// Add a folder to each namespace
|
||||||
NamenodeContext nn0 = cluster.getNamenode("ns0", null);
|
NamenodeContext nn0 = cluster.getNamenode("ns0", null);
|
||||||
nn0.getFileSystem().mkdirs(new Path("/dirns0"));
|
nn0.getFileSystem().mkdirs(new Path("/dirns0/0"));
|
||||||
NamenodeContext nn1 = cluster.getNamenode("ns1", null);
|
NamenodeContext nn1 = cluster.getNamenode("ns1", null);
|
||||||
nn1.getFileSystem().mkdirs(new Path("/dirns1"));
|
nn1.getFileSystem().mkdirs(new Path("/dirns1/1"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@AfterClass
|
@AfterClass
|
||||||
@ -153,14 +158,12 @@ public void cleanup() throws IOException {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testWithoutDisabling() throws IOException {
|
public void testWithoutDisabling() throws IOException {
|
||||||
|
|
||||||
// ns0 is slow and renewLease should take a long time
|
// ns0 is slow and renewLease should take a long time
|
||||||
long t0 = monotonicNow();
|
long t0 = monotonicNow();
|
||||||
routerProtocol.renewLease("client0");
|
routerProtocol.renewLease("client0");
|
||||||
long t = monotonicNow() - t0;
|
long t = monotonicNow() - t0;
|
||||||
assertTrue("It took too little: " + t + "ms",
|
assertTrue("It took too little: " + t + "ms",
|
||||||
t > TimeUnit.SECONDS.toMillis(1));
|
t > TimeUnit.SECONDS.toMillis(1));
|
||||||
|
|
||||||
// Return the results from all subclusters even if slow
|
// Return the results from all subclusters even if slow
|
||||||
FileSystem routerFs = routerContext.getFileSystem();
|
FileSystem routerFs = routerContext.getFileSystem();
|
||||||
FileStatus[] filesStatus = routerFs.listStatus(new Path("/"));
|
FileStatus[] filesStatus = routerFs.listStatus(new Path("/"));
|
||||||
@ -171,7 +174,6 @@ public void testWithoutDisabling() throws IOException {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testDisabling() throws Exception {
|
public void testDisabling() throws Exception {
|
||||||
|
|
||||||
disableNameservice("ns0");
|
disableNameservice("ns0");
|
||||||
|
|
||||||
// renewLease should be fast as we are skipping ns0
|
// renewLease should be fast as we are skipping ns0
|
||||||
@ -180,12 +182,20 @@ public void testDisabling() throws Exception {
|
|||||||
long t = monotonicNow() - t0;
|
long t = monotonicNow() - t0;
|
||||||
assertTrue("It took too long: " + t + "ms",
|
assertTrue("It took too long: " + t + "ms",
|
||||||
t < TimeUnit.SECONDS.toMillis(1));
|
t < TimeUnit.SECONDS.toMillis(1));
|
||||||
|
|
||||||
// We should not report anything from ns0
|
// We should not report anything from ns0
|
||||||
FileSystem routerFs = routerContext.getFileSystem();
|
FileSystem routerFs = routerContext.getFileSystem();
|
||||||
FileStatus[] filesStatus = routerFs.listStatus(new Path("/"));
|
FileStatus[] filesStatus = null;
|
||||||
|
try {
|
||||||
|
routerFs.listStatus(new Path("/"));
|
||||||
|
fail("The listStatus call should fail.");
|
||||||
|
} catch (IOException ioe) {
|
||||||
|
GenericTestUtils.assertExceptionContains(
|
||||||
|
"No remote locations available", ioe);
|
||||||
|
}
|
||||||
|
|
||||||
|
filesStatus = routerFs.listStatus(new Path("/dirns1"));
|
||||||
assertEquals(1, filesStatus.length);
|
assertEquals(1, filesStatus.length);
|
||||||
assertEquals("dirns1", filesStatus[0].getPath().getName());
|
assertEquals("1", filesStatus[0].getPath().getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
Loading…
Reference in New Issue
Block a user