Interface BulkFormat.Reader<T>
- All Superinterfaces:
AutoCloseable,Closeable
- All Known Implementing Classes:
StreamFormatAdapter.Reader
- Enclosing interface:
- BulkFormat<T,
SplitT extends FileSourceSplit>
The actual reader that reads the batches of records.
-
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Closes the reader and should release all resources.Reads one batch.
-
Method Details
-
readBatch
Reads one batch. The method should return null when reaching the end of the input. The returned batch will be handed over to the processing threads as one.The returned iterator object and any contained objects may be held onto by the file source for some time, so it should not be immediately reused by the reader.
To implement reuse and to save object allocation, consider using a
Pooland recycle objects into the Pool in the theBulkFormat.RecordIterator.releaseBatch()method.- Throws:
IOException
-
close
Closes the reader and should release all resources.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-