|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Reader
The interface for reading ORC files. One Reader can support multiple concurrent RecordReader.
Method Summary | |
---|---|
CompressionKind |
getCompression()
Get the compression kind. |
int |
getCompressionSize()
Get the buffer size for the compression. |
long |
getContentLength()
Get the length of the file. |
Iterable<String> |
getMetadataKeys()
Get the user metadata keys. |
ByteBuffer |
getMetadataValue(String key)
Get a user metadata value. |
long |
getNumberOfRows()
Get the number of rows in the file. |
ObjectInspector |
getObjectInspector()
Get the object inspector for looking at the objects. |
int |
getRowIndexStride()
Get the number of rows per a entry in the row index. |
ColumnStatistics[] |
getStatistics()
Get the statistics about the columns in the file. |
Iterable<StripeInformation> |
getStripes()
Get the list of stripes. |
List<org.apache.hadoop.hive.ql.io.orc.OrcProto.Type> |
getTypes()
Get the list of types contained in the file. |
RecordReader |
rows(boolean[] include)
Create a RecordReader that will scan the entire file. |
RecordReader |
rows(long offset,
long length,
boolean[] include)
Deprecated. |
RecordReader |
rows(long offset,
long length,
boolean[] include,
SearchArgument sarg,
String[] neededColumns)
Create a RecordReader that will read a section of a file. |
Method Detail |
---|
long getNumberOfRows()
Iterable<String> getMetadataKeys()
ByteBuffer getMetadataValue(String key)
key
- a key given by the user
CompressionKind getCompression()
int getCompressionSize()
int getRowIndexStride()
Iterable<StripeInformation> getStripes()
ObjectInspector getObjectInspector()
long getContentLength()
ColumnStatistics[] getStatistics()
List<org.apache.hadoop.hive.ql.io.orc.OrcProto.Type> getTypes()
RecordReader rows(boolean[] include) throws IOException
include
- true for each column that should be included
IOException
RecordReader rows(long offset, long length, boolean[] include) throws IOException
offset
- a byte offset in the filelength
- a number of bytes in the fileinclude
- true for each column that should be included
IOException
RecordReader rows(long offset, long length, boolean[] include, SearchArgument sarg, String[] neededColumns) throws IOException
offset
- the minimum offset of the first stripe to readlength
- the distance from offset of the first address to stop reading
atinclude
- true for each column that should be includedsarg
- a search argument that limits the rows that should be read.neededColumns
- the names of the included columns
IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |