HDFS-15321. Make DFSAdmin tool to work with ViewFileSystemOverloadScheme. Contributed by Uma Maheswara Rao G.
(cherry picked from commit ed83c865dd
)
This commit is contained in:
parent
8e71e85af7
commit
0b5e202614
|
@ -17,6 +17,7 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.hadoop.fs.viewfs;
|
package org.apache.hadoop.fs.viewfs;
|
||||||
|
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.lang.reflect.Constructor;
|
import java.lang.reflect.Constructor;
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
|
@ -27,6 +28,7 @@ import org.apache.hadoop.classification.InterfaceStability;
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.fs.FileSystem;
|
import org.apache.hadoop.fs.FileSystem;
|
||||||
import org.apache.hadoop.fs.FsConstants;
|
import org.apache.hadoop.fs.FsConstants;
|
||||||
|
import org.apache.hadoop.fs.Path;
|
||||||
import org.apache.hadoop.fs.UnsupportedFileSystemException;
|
import org.apache.hadoop.fs.UnsupportedFileSystemException;
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
|
@ -227,4 +229,31 @@ public class ViewFileSystemOverloadScheme extends ViewFileSystem {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is an admin only API to give access to its child raw file system, if
|
||||||
|
* the path is link. If the given path is an internal directory(path is from
|
||||||
|
* mount paths tree), it will initialize the file system of given path uri
|
||||||
|
* directly. If path cannot be resolved to any internal directory or link, it
|
||||||
|
* will throw NotInMountpointException. Please note, this API will not return
|
||||||
|
* chrooted file system. Instead, this API will get actual raw file system
|
||||||
|
* instances.
|
||||||
|
*
|
||||||
|
* @param path - fs uri path
|
||||||
|
* @param conf - configuration
|
||||||
|
* @throws IOException
|
||||||
|
*/
|
||||||
|
public FileSystem getRawFileSystem(Path path, Configuration conf)
|
||||||
|
throws IOException {
|
||||||
|
InodeTree.ResolveResult<FileSystem> res;
|
||||||
|
try {
|
||||||
|
res = fsState.resolve(getUriPath(path), true);
|
||||||
|
return res.isInternalDir() ? fsGetter().get(path.toUri(), conf)
|
||||||
|
: ((ChRootedFileSystem) res.targetFileSystem).getMyFs();
|
||||||
|
} catch (FileNotFoundException e) {
|
||||||
|
// No link configured with passed path.
|
||||||
|
throw new NotInMountpointException(path,
|
||||||
|
"No link found for the given path.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -192,7 +192,7 @@ public class ViewFsTestSetup {
|
||||||
* Adds the given mount links to the configuration. Mount link mappings are
|
* Adds the given mount links to the configuration. Mount link mappings are
|
||||||
* in sources, targets at their respective index locations.
|
* in sources, targets at their respective index locations.
|
||||||
*/
|
*/
|
||||||
static void addMountLinksToConf(String mountTable, String[] sources,
|
public static void addMountLinksToConf(String mountTable, String[] sources,
|
||||||
String[] targets, Configuration config) throws URISyntaxException {
|
String[] targets, Configuration config) throws URISyntaxException {
|
||||||
for (int i = 0; i < sources.length; i++) {
|
for (int i = 0; i < sources.length; i++) {
|
||||||
String src = sources[i];
|
String src = sources[i];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
/**
|
/**
|
||||||
|
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
* or more contributor license agreements. See the NOTICE file
|
* or more contributor license agreements. See the NOTICE file
|
||||||
* distributed with this work for additional information
|
* distributed with this work for additional information
|
||||||
|
@ -21,6 +22,8 @@ import com.google.common.base.Preconditions;
|
||||||
|
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.fs.FileSystem;
|
import org.apache.hadoop.fs.FileSystem;
|
||||||
|
import org.apache.hadoop.fs.Path;
|
||||||
|
import org.apache.hadoop.fs.viewfs.ViewFileSystemOverloadScheme;
|
||||||
import org.apache.hadoop.hdfs.DFSUtil;
|
import org.apache.hadoop.hdfs.DFSUtil;
|
||||||
import org.apache.hadoop.hdfs.DistributedFileSystem;
|
import org.apache.hadoop.hdfs.DistributedFileSystem;
|
||||||
import org.apache.hadoop.hdfs.protocol.CachePoolInfo;
|
import org.apache.hadoop.hdfs.protocol.CachePoolInfo;
|
||||||
|
@ -43,19 +46,29 @@ public class AdminHelper {
|
||||||
static DistributedFileSystem getDFS(Configuration conf)
|
static DistributedFileSystem getDFS(Configuration conf)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
FileSystem fs = FileSystem.get(conf);
|
FileSystem fs = FileSystem.get(conf);
|
||||||
if (!(fs instanceof DistributedFileSystem)) {
|
return checkAndGetDFS(fs, conf);
|
||||||
throw new IllegalArgumentException("FileSystem " + fs.getUri() +
|
|
||||||
" is not an HDFS file system");
|
|
||||||
}
|
|
||||||
return (DistributedFileSystem)fs;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static DistributedFileSystem getDFS(URI uri, Configuration conf)
|
static DistributedFileSystem getDFS(URI uri, Configuration conf)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
FileSystem fs = FileSystem.get(uri, conf);
|
FileSystem fs = FileSystem.get(uri, conf);
|
||||||
|
return checkAndGetDFS(fs, conf);
|
||||||
|
}
|
||||||
|
|
||||||
|
static DistributedFileSystem checkAndGetDFS(FileSystem fs, Configuration conf)
|
||||||
|
throws IOException {
|
||||||
|
if ((fs instanceof ViewFileSystemOverloadScheme)) {
|
||||||
|
// With ViewFSOverloadScheme, the admin will pass -fs option with intended
|
||||||
|
// child fs mount path. GenericOptionsParser would have set the given -fs
|
||||||
|
// as FileSystem's defaultURI. So, we are using FileSystem.getDefaultUri
|
||||||
|
// to use the given -fs path.
|
||||||
|
fs = ((ViewFileSystemOverloadScheme) fs)
|
||||||
|
.getRawFileSystem(new Path(FileSystem.getDefaultUri(conf)), conf);
|
||||||
|
}
|
||||||
if (!(fs instanceof DistributedFileSystem)) {
|
if (!(fs instanceof DistributedFileSystem)) {
|
||||||
throw new IllegalArgumentException("FileSystem " + fs.getUri()
|
throw new IllegalArgumentException("FileSystem " + fs.getUri()
|
||||||
+ " is not an HDFS file system");
|
+ " is not an HDFS file system. The fs class is: "
|
||||||
|
+ fs.getClass().getName());
|
||||||
}
|
}
|
||||||
return (DistributedFileSystem) fs;
|
return (DistributedFileSystem) fs;
|
||||||
}
|
}
|
||||||
|
|
|
@ -130,11 +130,7 @@ public class DFSAdmin extends FsShell {
|
||||||
@Override
|
@Override
|
||||||
public void run(PathData pathData) throws IOException {
|
public void run(PathData pathData) throws IOException {
|
||||||
FileSystem fs = pathData.fs;
|
FileSystem fs = pathData.fs;
|
||||||
if (!(fs instanceof DistributedFileSystem)) {
|
this.dfs = AdminHelper.checkAndGetDFS(fs, getConf());
|
||||||
throw new IllegalArgumentException("FileSystem " + fs.getUri()
|
|
||||||
+ " is not an HDFS file system");
|
|
||||||
}
|
|
||||||
this.dfs = (DistributedFileSystem) fs;
|
|
||||||
run(pathData.path);
|
run(pathData.path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -485,12 +481,7 @@ public class DFSAdmin extends FsShell {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected DistributedFileSystem getDFS() throws IOException {
|
protected DistributedFileSystem getDFS() throws IOException {
|
||||||
FileSystem fs = getFS();
|
return AdminHelper.getDFS(getConf());
|
||||||
if (!(fs instanceof DistributedFileSystem)) {
|
|
||||||
throw new IllegalArgumentException("FileSystem " + fs.getUri() +
|
|
||||||
" is not an HDFS file system");
|
|
||||||
}
|
|
||||||
return (DistributedFileSystem)fs;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -0,0 +1,266 @@
|
||||||
|
/**
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
package org.apache.hadoop.hdfs.tools;
|
||||||
|
|
||||||
|
import static org.hamcrest.CoreMatchers.containsString;
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertThat;
|
||||||
|
|
||||||
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.PrintStream;
|
||||||
|
import java.net.URI;
|
||||||
|
import java.net.URISyntaxException;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
|
import org.apache.hadoop.conf.Configuration;
|
||||||
|
import org.apache.hadoop.fs.CommonConfigurationKeys;
|
||||||
|
import org.apache.hadoop.fs.CommonConfigurationKeysPublic;
|
||||||
|
import org.apache.hadoop.fs.FileSystem;
|
||||||
|
import org.apache.hadoop.fs.FsConstants;
|
||||||
|
import org.apache.hadoop.fs.Path;
|
||||||
|
import org.apache.hadoop.fs.viewfs.ViewFileSystemOverloadScheme;
|
||||||
|
import org.apache.hadoop.fs.viewfs.ViewFsTestSetup;
|
||||||
|
import org.apache.hadoop.hdfs.DistributedFileSystem;
|
||||||
|
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
||||||
|
import org.apache.hadoop.test.PathUtils;
|
||||||
|
import org.apache.hadoop.util.ToolRunner;
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Assert;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import com.google.common.collect.Lists;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests DFSAdmin with ViewFileSystemOverloadScheme with configured mount links.
|
||||||
|
*/
|
||||||
|
public class TestViewFileSystemOverloadSchemeWithDFSAdmin {
|
||||||
|
private static final String FS_IMPL_PATTERN_KEY = "fs.%s.impl";
|
||||||
|
private static final String HDFS_SCHEME = "hdfs";
|
||||||
|
private Configuration conf = null;
|
||||||
|
private MiniDFSCluster cluster = null;
|
||||||
|
private URI defaultFSURI;
|
||||||
|
private File localTargetDir;
|
||||||
|
private static final String TEST_ROOT_DIR = PathUtils
|
||||||
|
.getTestDirName(TestViewFileSystemOverloadSchemeWithDFSAdmin.class);
|
||||||
|
private static final String HDFS_USER_FOLDER = "/HDFSUser";
|
||||||
|
private static final String LOCAL_FOLDER = "/local";
|
||||||
|
private final ByteArrayOutputStream out = new ByteArrayOutputStream();
|
||||||
|
private final ByteArrayOutputStream err = new ByteArrayOutputStream();
|
||||||
|
private static final PrintStream OLD_OUT = System.out;
|
||||||
|
private static final PrintStream OLD_ERR = System.err;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets up the configurations and starts the MiniDFSCluster.
|
||||||
|
*/
|
||||||
|
@Before
|
||||||
|
public void startCluster() throws IOException {
|
||||||
|
conf = new Configuration();
|
||||||
|
conf.setInt(
|
||||||
|
CommonConfigurationKeysPublic.IPC_CLIENT_CONNECT_MAX_RETRIES_KEY, 1);
|
||||||
|
conf.set(String.format(FS_IMPL_PATTERN_KEY, HDFS_SCHEME),
|
||||||
|
ViewFileSystemOverloadScheme.class.getName());
|
||||||
|
conf.set(String.format(
|
||||||
|
FsConstants.FS_VIEWFS_OVERLOAD_SCHEME_TARGET_FS_IMPL_PATTERN,
|
||||||
|
HDFS_SCHEME), DistributedFileSystem.class.getName());
|
||||||
|
cluster = new MiniDFSCluster.Builder(conf).numDataNodes(2).build();
|
||||||
|
cluster.waitClusterUp();
|
||||||
|
defaultFSURI =
|
||||||
|
URI.create(conf.get(CommonConfigurationKeys.FS_DEFAULT_NAME_KEY));
|
||||||
|
localTargetDir = new File(TEST_ROOT_DIR, "/root/");
|
||||||
|
Assert.assertEquals(HDFS_SCHEME, defaultFSURI.getScheme()); // hdfs scheme.
|
||||||
|
}
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void tearDown() throws IOException {
|
||||||
|
try {
|
||||||
|
System.out.flush();
|
||||||
|
System.err.flush();
|
||||||
|
} finally {
|
||||||
|
System.setOut(OLD_OUT);
|
||||||
|
System.setErr(OLD_ERR);
|
||||||
|
}
|
||||||
|
if (cluster != null) {
|
||||||
|
FileSystem.closeAll();
|
||||||
|
cluster.shutdown();
|
||||||
|
}
|
||||||
|
resetStream();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void redirectStream() {
|
||||||
|
System.setOut(new PrintStream(out));
|
||||||
|
System.setErr(new PrintStream(err));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void resetStream() {
|
||||||
|
out.reset();
|
||||||
|
err.reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void scanIntoList(final ByteArrayOutputStream baos,
|
||||||
|
final List<String> list) {
|
||||||
|
final Scanner scanner = new Scanner(baos.toString());
|
||||||
|
while (scanner.hasNextLine()) {
|
||||||
|
list.add(scanner.nextLine());
|
||||||
|
}
|
||||||
|
scanner.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void assertErrMsg(String errorMsg, int line) {
|
||||||
|
final List<String> errList = Lists.newArrayList();
|
||||||
|
scanIntoList(err, errList);
|
||||||
|
assertThat(errList.get(line), containsString(errorMsg));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void assertOutMsg(String outMsg, int line) {
|
||||||
|
final List<String> errList = Lists.newArrayList();
|
||||||
|
scanIntoList(out, errList);
|
||||||
|
assertThat(errList.get(line), containsString(outMsg));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds the given mount links to config. sources contains mount link src and
|
||||||
|
* the respective index location in targets contains the target uri.
|
||||||
|
*/
|
||||||
|
void addMountLinks(String mountTable, String[] sources, String[] targets,
|
||||||
|
Configuration config) throws IOException, URISyntaxException {
|
||||||
|
ViewFsTestSetup.addMountLinksToConf(mountTable, sources, targets, config);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests savenamespace with ViewFSOverloadScheme by specifying -fs option.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testSaveNameSpace() throws Exception {
|
||||||
|
final Path hdfsTargetPath = new Path(defaultFSURI + HDFS_USER_FOLDER);
|
||||||
|
addMountLinks(defaultFSURI.getAuthority(),
|
||||||
|
new String[] {HDFS_USER_FOLDER, LOCAL_FOLDER },
|
||||||
|
new String[] {hdfsTargetPath.toUri().toString(),
|
||||||
|
localTargetDir.toURI().toString() },
|
||||||
|
conf);
|
||||||
|
final DFSAdmin dfsAdmin = new DFSAdmin(conf);
|
||||||
|
int ret = ToolRunner.run(dfsAdmin,
|
||||||
|
new String[] {"-fs", defaultFSURI.toString(), "-safemode", "enter" });
|
||||||
|
assertEquals(0, ret);
|
||||||
|
redirectStream();
|
||||||
|
ret = ToolRunner.run(dfsAdmin,
|
||||||
|
new String[] {"-fs", defaultFSURI.toString(), "-saveNamespace" });
|
||||||
|
assertEquals(0, ret);
|
||||||
|
assertOutMsg("Save namespace successful", 0);
|
||||||
|
ret = ToolRunner.run(dfsAdmin,
|
||||||
|
new String[] {"-fs", defaultFSURI.toString(), "-safemode", "leave" });
|
||||||
|
assertEquals(0, ret);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests savenamespace with ViewFSOverloadScheme, but without -fs option.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testSaveNamespaceWithoutSpecifyingFS() throws Exception {
|
||||||
|
final Path hdfsTargetPath = new Path(defaultFSURI + HDFS_USER_FOLDER);
|
||||||
|
addMountLinks(defaultFSURI.getAuthority(),
|
||||||
|
new String[] {HDFS_USER_FOLDER, LOCAL_FOLDER },
|
||||||
|
new String[] {hdfsTargetPath.toUri().toString(),
|
||||||
|
localTargetDir.toURI().toString() },
|
||||||
|
conf);
|
||||||
|
final DFSAdmin dfsAdmin = new DFSAdmin(conf);
|
||||||
|
int ret = ToolRunner.run(dfsAdmin, new String[] {"-safemode", "enter" });
|
||||||
|
assertEquals(0, ret);
|
||||||
|
redirectStream();
|
||||||
|
ret = ToolRunner.run(dfsAdmin, new String[] {"-saveNamespace" });
|
||||||
|
assertOutMsg("Save namespace successful", 0);
|
||||||
|
assertEquals(0, ret);
|
||||||
|
ret = ToolRunner.run(dfsAdmin, new String[] {"-safemode", "leave" });
|
||||||
|
assertEquals(0, ret);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests safemode with ViewFSOverloadScheme, but with wrong target fs.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testSafeModeWithWrongFS() throws Exception {
|
||||||
|
final Path hdfsTargetPath =
|
||||||
|
new Path("hdfs://nonExistent" + HDFS_USER_FOLDER);
|
||||||
|
addMountLinks(defaultFSURI.getAuthority(),
|
||||||
|
new String[] {HDFS_USER_FOLDER },
|
||||||
|
new String[] {hdfsTargetPath.toUri().toString(), }, conf);
|
||||||
|
final DFSAdmin dfsAdmin = new DFSAdmin(conf);
|
||||||
|
redirectStream();
|
||||||
|
int ret = ToolRunner.run(dfsAdmin, new String[] {"-safemode", "enter" });
|
||||||
|
assertEquals(-1, ret);
|
||||||
|
assertErrMsg("safemode: java.net.UnknownHostException: nonExistent", 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests safemode with ViewFSOverloadScheme, but -fs option with local fs.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testSafeModeShouldFailOnLocalTargetFS() throws Exception {
|
||||||
|
addMountLinks(defaultFSURI.getAuthority(), new String[] {LOCAL_FOLDER },
|
||||||
|
new String[] {localTargetDir.toURI().toString() }, conf);
|
||||||
|
final DFSAdmin dfsAdmin = new DFSAdmin(conf);
|
||||||
|
// ViewFSOveloadScheme uri with localfs mount point
|
||||||
|
String uri = defaultFSURI.toString() + LOCAL_FOLDER;
|
||||||
|
redirectStream();
|
||||||
|
int ret = ToolRunner.run(dfsAdmin,
|
||||||
|
new String[] {"-fs", uri, "-safemode", "enter" });
|
||||||
|
assertEquals(-1, ret);
|
||||||
|
assertErrMsg("safemode: FileSystem file:/// is not an HDFS file system."
|
||||||
|
+ " The fs class is: org.apache.hadoop.fs.LocalFileSystem", 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests safemode with ViewFSOverloadScheme, but without mounttables.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testSafeModeShouldFailWithoutMountTables() throws Exception {
|
||||||
|
final DFSAdmin dfsAdmin = new DFSAdmin(conf);
|
||||||
|
String uri = defaultFSURI.toString();
|
||||||
|
redirectStream();
|
||||||
|
int ret = ToolRunner.run(dfsAdmin,
|
||||||
|
new String[] {"-fs", uri, "-safemode", "enter" });
|
||||||
|
assertEquals(-1, ret);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests allowSnapshot and disallowSnapshot with ViewFSOverloadScheme.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testAllowAndDisalllowSnapShot() throws Exception {
|
||||||
|
final Path hdfsTargetPath = new Path(defaultFSURI + HDFS_USER_FOLDER);
|
||||||
|
addMountLinks(defaultFSURI.getAuthority(),
|
||||||
|
new String[] {HDFS_USER_FOLDER, LOCAL_FOLDER },
|
||||||
|
new String[] {hdfsTargetPath.toUri().toString(),
|
||||||
|
localTargetDir.toURI().toString() },
|
||||||
|
conf);
|
||||||
|
final DFSAdmin dfsAdmin = new DFSAdmin(conf);
|
||||||
|
redirectStream();
|
||||||
|
int ret = ToolRunner.run(dfsAdmin,
|
||||||
|
new String[] {"-fs", defaultFSURI.toString(), "-allowSnapshot", "/" });
|
||||||
|
assertOutMsg("Allowing snapshot on / succeeded", 0);
|
||||||
|
assertEquals(0, ret);
|
||||||
|
ret = ToolRunner.run(dfsAdmin, new String[] {"-fs",
|
||||||
|
defaultFSURI.toString(), "-disallowSnapshot", "/" });
|
||||||
|
assertOutMsg("Disallowing snapshot on / succeeded", 1);
|
||||||
|
assertEquals(0, ret);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue