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

Genmao Yu commented on HADOOP-14072:
------------------------------------

cc [~drankye]

> AliyunOSS: Failed to read from stream when seek beyond the download size.
> -------------------------------------------------------------------------
>
>                 Key: HADOOP-14072
>                 URL: https://issues.apache.org/jira/browse/HADOOP-14072
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: fs/oss
>    Affects Versions: 3.0.0-alpha2
>            Reporter: Genmao Yu
>            Assignee: Genmao Yu
>         Attachments: HADOOP-14072.001.patch
>
>
> {code}
> public synchronized void seek(long pos) throws IOException {
>     checkNotClosed();
>     if (position == pos) {
>       return;
>     } else if (pos > position && pos < position + partRemaining) {
>       AliyunOSSUtils.skipFully(wrappedStream, pos - position);
>       position = pos;
>     } else {
>       reopen(pos);
>     }
>   }
> {code}
> In seek function, we need to update the partRemaining when the seeking 
> position is located in downloaded part.



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

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to