You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "Lei (Eddy) Xu (JIRA)" <ji...@apache.org> on 2017/11/22 00:27:00 UTC

[jira] [Created] (HADOOP-15061) Regenerate editsStored and editsStored.xml in HDFS tests

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-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-issues-help@hadoop.apache.org