[
https://issues.apache.org/jira/browse/HDFS-8223?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14509985#comment-14509985
]
Jing Zhao commented on HDFS-8223:
---------------------------------
Thanks for fixing this, Yi! The patch looks good to me. +1
Besides, the patch needs rebase. You can do it while committing.
> Should calculate checksum for parity blocks in DFSStripedOutputStream
> ---------------------------------------------------------------------
>
> Key: HDFS-8223
> URL: https://issues.apache.org/jira/browse/HDFS-8223
> Project: Hadoop HDFS
> Issue Type: Sub-task
> Reporter: Yi Liu
> Assignee: Yi Liu
> Attachments: HDFS-8223.001.patch
>
>
> {quote}
> DFSPacket p = createPacket(packetSize, chunksPerPacket,
> streamer.getBytesCurBlock(),
> streamer.getAndIncCurrentSeqno(), false);
> int maxBytesToPacket = p.getMaxChunks() * bytesPerChecksum;
> int toWrite = byteBuffer.remaining() > maxBytesToPacket ?
> maxBytesToPacket: byteBuffer.remaining();
> p.writeData(byteBuffer, toWrite);
> streamer.incBytesCurBlock(toWrite);
> packets.add(p);
> {quote}
> In {{DFSStripedOutputStream}}, have not calculated checksum for parity blocks
> in {{DFSStripedOutputStream}}.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)