[ 
https://issues.apache.org/jira/browse/HDFS-11835?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16016140#comment-16016140
 ] 

Chen Liang commented on HDFS-11835:
-----------------------------------

Thanks [~msingh] for the patch! The changes LGTM, but the failed cblock test 
seems related, could you please verify that?

> Block Storage: Overwrite of blocks fails
> ----------------------------------------
>
>                 Key: HDFS-11835
>                 URL: https://issues.apache.org/jira/browse/HDFS-11835
>             Project: Hadoop HDFS
>          Issue Type: Sub-task
>          Components: hdfs
>            Reporter: Mukul Kumar Singh
>            Assignee: Mukul Kumar Singh
>         Attachments: HDFS-11835-HDFS-7240.001.patch
>
>
> Overwrite of blocks fails, because "OverWriteRequested" flag is not set 
> during chunk creation.
> {code}
> 2017-05-16 22:33:23,909 [nioEventLoopGroup-5-2] ERROR      - Rejecting write 
> chunk request. Chunk overwrite without explicit request. 
> ChunkInfo{chunkName='1_chunk, offset=0, len=
> 11933}
> {code}
> This flag needs to be set here 
> {code}
> public static void writeSmallFile(XceiverClientSpi client, String 
> containerName,
>       String key, byte[] data, String traceID) throws IOException {
> .....
>     ChunkInfo chunk = ChunkInfo
>         .newBuilder()
>         .setChunkName(key + "_chunk")
>         .setOffset(0)
>         .setLen(data.length)
>         .build();
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org

Reply via email to