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

James Clampffer commented on HDFS-9108:
---------------------------------------

I agree about the stack still being valid in the current unit tests.  When you 
reproduced it using the main thread did you call IoService::Run() after the 
FileSystem::New() call(assuming you were using my reproducer)? Because 
IoService::Run() will probably grow the stack enough to invalidate any memory 
that was used before that and end up in the same situation that I had with two 
threads.


> InputStreamImpl::ReadBlockContinuation stores wrong pointers of buffers
> -----------------------------------------------------------------------
>
>                 Key: HDFS-9108
>                 URL: https://issues.apache.org/jira/browse/HDFS-9108
>             Project: Hadoop HDFS
>          Issue Type: Sub-task
>          Components: hdfs-client
>         Environment: Ubuntu x86_64, gcc 4.8.2
>            Reporter: James Clampffer
>            Assignee: Haohui Mai
>            Priority: Blocker
>         Attachments: 9108-async-repro.patch, 9108-async-repro.patch1, 
> HDFS-9108.000.patch
>
>
> Somewhere between InputStream->PositionRead and the asio code the pointer to 
> the destination buffer gets lost.  PositionRead will correctly return the 
> number of bytes read but the buffer won't be filled.
> This only seems to effect the remote_block_reader, RPC calls are working.
> Valgrind error:
> Syscall param recvmsg(msg.msg_iov) points to uninitialised byte(s)
> msg.msg_iov[0] should equal the buffer pointer passed to PositionRead
> Hit when using a promise to make the async call block until completion. 
> auto stat = std::make_shared<std::promise<Status>>();
> std::future<Status> future(stat->get_future());
> size_t readCount = 0;
> auto h = [stat, &readCount,buf](const Status &s, size_t bytes) {
>   stat->set_value(s);
>   readCount = bytes;
> };
> char buf[50];
> inputStream->PositionRead(buf, 50, 0, h);
>   
> //wait for async to finish
> future.get();



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to