Revert "HADOOP-16878. FileUtil.copy() to throw IOException if the source and destination are the same (#2383)"
This reverts commit 54c40cbf49
.
This commit is contained in:
parent
9fd0832a99
commit
ff26a7700d
@ -398,12 +398,6 @@ public static boolean copy(FileSystem srcFS, FileStatus srcStatus,
|
|||||||
Configuration conf) throws IOException {
|
Configuration conf) throws IOException {
|
||||||
Path src = srcStatus.getPath();
|
Path src = srcStatus.getPath();
|
||||||
dst = checkDest(src.getName(), dstFS, dst, overwrite);
|
dst = checkDest(src.getName(), dstFS, dst, overwrite);
|
||||||
|
|
||||||
if (srcFS.makeQualified(src).equals(dstFS.makeQualified(dst))) {
|
|
||||||
throw new PathOperationException("Source (" + src + ") and destination " +
|
|
||||||
"(" + dst + ") are equal in the copy command.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (srcStatus.isDirectory()) {
|
if (srcStatus.isDirectory()) {
|
||||||
checkDependencies(srcFS, src, dstFS, dst);
|
checkDependencies(srcFS, src, dstFS, dst);
|
||||||
if (!dstFS.mkdirs(dst)) {
|
if (!dstFS.mkdirs(dst)) {
|
||||||
|
@ -35,7 +35,6 @@
|
|||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.fs.permission.FsPermission;
|
import org.apache.hadoop.fs.permission.FsPermission;
|
||||||
import org.apache.hadoop.test.GenericTestUtils;
|
import org.apache.hadoop.test.GenericTestUtils;
|
||||||
import org.apache.hadoop.test.LambdaTestUtils;
|
|
||||||
import org.apache.hadoop.util.StringUtils;
|
import org.apache.hadoop.util.StringUtils;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
@ -177,20 +176,7 @@ public void testCopyDirFromWindowsLocalPath() throws Exception {
|
|||||||
checkPut(dirPath, targetDir, true);
|
checkPut(dirPath, targetDir, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testCopyBetweenFsEqualPath() throws Exception {
|
|
||||||
Path testRoot = new Path(testRootDir, "testPutFile");
|
|
||||||
lfs.delete(testRoot, true);
|
|
||||||
lfs.mkdirs(testRoot);
|
|
||||||
|
|
||||||
Path filePath = new Path(testRoot, "sameSourceTarget");
|
|
||||||
lfs.create(filePath).close();
|
|
||||||
final FileStatus status = lfs.getFileStatus(filePath);
|
|
||||||
LambdaTestUtils.intercept(PathOperationException.class, () ->
|
|
||||||
FileUtil.copy(lfs, status, lfs, filePath, false, true, conf)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void checkPut(Path srcPath, Path targetDir, boolean useWindowsPath)
|
private void checkPut(Path srcPath, Path targetDir, boolean useWindowsPath)
|
||||||
throws Exception {
|
throws Exception {
|
||||||
lfs.delete(targetDir, true);
|
lfs.delete(targetDir, true);
|
||||||
|
@ -65,7 +65,6 @@
|
|||||||
import org.apache.hadoop.fs.FSDataOutputStream;
|
import org.apache.hadoop.fs.FSDataOutputStream;
|
||||||
import org.apache.hadoop.fs.FileAlreadyExistsException;
|
import org.apache.hadoop.fs.FileAlreadyExistsException;
|
||||||
import org.apache.hadoop.fs.FileSystem.Statistics.StatisticsData;
|
import org.apache.hadoop.fs.FileSystem.Statistics.StatisticsData;
|
||||||
import org.apache.hadoop.fs.FileUtil;
|
|
||||||
import org.apache.hadoop.fs.FsServerDefaults;
|
import org.apache.hadoop.fs.FsServerDefaults;
|
||||||
import org.apache.hadoop.fs.FileChecksum;
|
import org.apache.hadoop.fs.FileChecksum;
|
||||||
import org.apache.hadoop.fs.FileStatus;
|
import org.apache.hadoop.fs.FileStatus;
|
||||||
@ -76,7 +75,6 @@
|
|||||||
import org.apache.hadoop.fs.Options.ChecksumOpt;
|
import org.apache.hadoop.fs.Options.ChecksumOpt;
|
||||||
import org.apache.hadoop.fs.Path;
|
import org.apache.hadoop.fs.Path;
|
||||||
import org.apache.hadoop.fs.PathIsNotEmptyDirectoryException;
|
import org.apache.hadoop.fs.PathIsNotEmptyDirectoryException;
|
||||||
import org.apache.hadoop.fs.PathOperationException;
|
|
||||||
import org.apache.hadoop.fs.RemoteIterator;
|
import org.apache.hadoop.fs.RemoteIterator;
|
||||||
import org.apache.hadoop.fs.StorageStatistics.LongStatistic;
|
import org.apache.hadoop.fs.StorageStatistics.LongStatistic;
|
||||||
import org.apache.hadoop.fs.StorageType;
|
import org.apache.hadoop.fs.StorageType;
|
||||||
@ -2107,18 +2105,4 @@ public void testGetECTopologyResultForPolicies() throws Exception {
|
|||||||
assertFalse(result.isSupported());
|
assertFalse(result.isSupported());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testCopyBetweenFsEqualPath() throws Exception {
|
|
||||||
Configuration conf = getTestConfiguration();
|
|
||||||
try (MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf).build()) {
|
|
||||||
cluster.waitActive();
|
|
||||||
final DistributedFileSystem dfs = cluster.getFileSystem();
|
|
||||||
Path filePath = new Path("/dir/file");
|
|
||||||
dfs.create(filePath).close();
|
|
||||||
FileStatus fstatus = dfs.getFileStatus(filePath);
|
|
||||||
LambdaTestUtils.intercept(PathOperationException.class,
|
|
||||||
() -> FileUtil.copy(dfs, fstatus, dfs, filePath, false, true, conf));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user