You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "Steve Loughran (JIRA)" <ji...@apache.org> on 2017/11/19 11:01:06 UTC

[jira] [Commented] (HADOOP-15051) FSDataOutputStream returned by LocalFileSystem#createNonRecursive doesn't have hflush capability

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

Steve Loughran commented on HADOOP-15051:
-----------------------------------------

that's because it doesn't hflush. it's a checksummed output stream and it doesn't write until it's got enough to checksum, or you reach the EOF. It has been like this for a very long time.

See HADOOP-13327 for adding the capability declarations to the output streams, with tests. This will allow local FS to make absolutely clear that local FS doesn't do hflush/hsync.

> FSDataOutputStream returned by LocalFileSystem#createNonRecursive doesn't have hflush capability
> ------------------------------------------------------------------------------------------------
>
>                 Key: HADOOP-15051
>                 URL: https://issues.apache.org/jira/browse/HADOOP-15051
>             Project: Hadoop Common
>          Issue Type: New Feature
>          Components: fs
>    Affects Versions: 3.0.0-beta1
>            Reporter: Ted Yu
>
> See HBASE-19289 for background information.
> Here is related hbase code (fs is instance of LocalFileSystem):
> {code}
>     this.output = fs.createNonRecursive(path, overwritable, bufferSize, replication, blockSize,
>       null);
>     // TODO Be sure to add a check for hsync if this branch includes HBASE-19024
>     if (!(CommonFSUtils.hasCapability(output, "hflush"))) {
>       throw new StreamLacksCapabilityException("hflush");
> {code}
> StreamCapabilities is used to poll "hflush" capability.
> [~busbey] suggested fixing this in hadoop.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-issues-help@hadoop.apache.org