Youngjoon Kim created HADOOP-12802: -------------------------------------- Summary: local FileContext does not rename .crc file Key: HADOOP-12802 URL: https://issues.apache.org/jira/browse/HADOOP-12802 Project: Hadoop Common Issue Type: Bug Affects Versions: 2.7.2 Reporter: Youngjoon Kim
After run the following code, "old" file is renamed to "new", but ".old.crc" is not renamed to ".new.crc" {code} Path oldPath = new Path("/tmp/old"); Path newPath = new Path("/tmp/new"); Configuration conf = new Configuration(); FileContext fc = FileContext.getLocalFSFileContext(conf); FSDataOutputStream out = fc.create(oldPath, EnumSet.of(CreateFlag.CREATE)); out.close(); fc.rename(oldPath, newPath); {code} On the other hand, local FileSystem successfully renames .crc file. {code} Path oldPath = new Path("/tmp/old"); Path newPath = new Path("/tmp/new"); Configuration conf = new Configuration(); FileSystem fs = FileSystem.getLocal(conf); FSDataOutputStream out = fs.create(oldPath); out.close(); fs.rename(oldPath, newPath); {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)