davisusanibar commented on code in PR #14168:
URL: https://github.com/apache/arrow/pull/14168#discussion_r975824527
##########
java/dataset/src/main/java/org/apache/arrow/dataset/scanner/Scanner.java:
##########
@@ -17,19 +17,29 @@
package org.apache.arrow.dataset.scanner;
+import org.apache.arrow.vector.ipc.ArrowReader;
import org.apache.arrow.vector.types.pojo.Schema;
/**
* A high level interface for scanning data over dataset.
*/
public interface Scanner extends AutoCloseable {
+ /**
+ * Read record batches from the URI resources filtering the batch size
configured.
+ *
+ * @return a {@link ArrowReader}.
+ */
+ ArrowReader scanBatchesUnordered();
Review Comment:
Thanks, updated
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]