Wei-Chiu Chuang created HDFS-11229: -------------------------------------- Summary: HDFS-11056 failed to close meta file Key: HDFS-11229 URL: https://issues.apache.org/jira/browse/HDFS-11229 Project: Hadoop HDFS Issue Type: Bug Components: datanode Affects Versions: 2.7.4 Reporter: Wei-Chiu Chuang Assignee: Wei-Chiu Chuang Priority: Blocker
The following code failed to close the file after it is read. {code:title=FsVolumeImpl#loadLastPartialChunkChecksum} RandomAccessFile raf = new RandomAccessFile(metaFile, "r"); raf.seek(offsetInChecksum); raf.read(lastChecksum, 0, checksumSize); return lastChecksum; {code} This must be fixed because every append operation uses this piece of code. -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: hdfs-dev-unsubscr...@hadoop.apache.org For additional commands, e-mail: hdfs-dev-h...@hadoop.apache.org