Github user ajantha-bhat commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2850#discussion_r229179428
--- Diff:
store/sdk/src/main/java/org/apache/carbondata/sdk/file/CarbonReader.java ---
@@ -114,6 +117,43 @@ public static CarbonReaderBuilder builder(String
tablePath) {
return builder(tablePath, tableName);
}
+ /**
+ * Return a new list of {@link CarbonReader} objects
+ *
+ * @param maxSplits
+ */
+ public List<CarbonReader> split(int maxSplits) throws IOException {
--- End diff --
Need to add new interfaces exposed in sdk-guide.md. you can add this API
info there.
---