Mukul Kumar Singh created HDFS-11835:
----------------------------------------

             Summary: 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


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-dev-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-dev-h...@hadoop.apache.org

Reply via email to