You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "E. Sammer (JIRA)" <ji...@apache.org> on 2013/02/11 03:33:12 UTC

[jira] [Created] (AVRO-1249) DataFileWriter doesn't correctly conform to Closeable

E. Sammer created AVRO-1249:
-------------------------------

             Summary: DataFileWriter doesn't correctly conform to Closeable
                 Key: AVRO-1249
                 URL: https://issues.apache.org/jira/browse/AVRO-1249
             Project: Avro
          Issue Type: Bug
          Components: java
    Affects Versions: 1.7.3
            Reporter: E. Sammer


o.a.avro.file.DataFileWriter implements java.io.Closeable, but violates the contract stated by the interface's close() method javadoc.

{quote}
Closes this stream and releases any system resources associated
with it. If the stream is already closed then invoking this 
method has no effect.
{quote}

DataFileWriter's close() calls flush() calls sync() which calls assertOpen(). This causes repeated calls to close(), or those on a file that failed to open, to throw an exception which violates the contract. Notably, the following idiom fails (and shouldn't).

{code}
import com.google.common.io.Closeables;

// ...

DataFileWriter writer = null;

try {
  writer = new DataFileWriter(...);

  // ...
} finally {
  Closeables.closeQuietly(writer);
}
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira