Lei (Eddy) Xu created HADOOP-15061: -------------------------------------- Summary: Regenerate editsStored and editsStored.xml in HDFS tests Key: HADOOP-15061 URL: https://issues.apache.org/jira/browse/HADOOP-15061 Project: Hadoop Common Issue Type: Task Components: test Affects Versions: 3.0.0-beta1 Reporter: Lei (Eddy) Xu Assignee: Lei (Eddy) Xu
>From HDFS-12840, we found that the `editsStored` in HDFS tests missing a few >operations, i.e., the following operations from >{{DFSTestUtils#runOperations()}}. {code} // OP_UPDATE_BLOCKS 25 final String updateBlockFile = "/update_blocks"; FSDataOutputStream fout = filesystem.create(new Path(updateBlockFile), true, 4096, (short)1, 4096L); fout.write(1); fout.hflush(); long fileId = ((DFSOutputStream)fout.getWrappedStream()).getFileId(); DFSClient dfsclient = DFSClientAdapter.getDFSClient(filesystem); LocatedBlocks blocks = dfsclient.getNamenode().getBlockLocations(updateBlockFile, 0, Integer.MAX_VALUE); dfsclient.getNamenode().abandonBlock(blocks.get(0).getBlock(), fileId, updateBlockFile, dfsclient.clientName); fout.close(); {code} We should re-generate to edits and related XML to sync with the code. -- This message was sent by Atlassian JIRA (v6.4.14#64029) --------------------------------------------------------------------- To unsubscribe, e-mail: common-dev-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-dev-h...@hadoop.apache.org