rdblue opened a new issue #96: ORC does not use InputFile and OutputFile 
abstractions
URL: https://github.com/apache/incubator-iceberg/issues/96
 
 
   ORC doesn't create input and output streams using `InputFile` and 
`OutputFile` methods. It creates a path from the file location:
   
   ```java
   path = new Path(file.location());
   writer = OrcFile.createWriter(path, options);
   ```
   
   This breaks the IO abstraction and ORC will not work without Hadoop.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

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

Reply via email to