You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by ravipesala <gi...@git.apache.org> on 2018/11/02 00:54:34 UTC

[GitHub] carbondata pull request #2850: [CARBONDATA-3056] Added concurrent reading th...

Github user ravipesala commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2850#discussion_r230244674
  
    --- Diff: store/sdk/src/main/java/org/apache/carbondata/sdk/file/CarbonReader.java ---
    @@ -114,6 +115,57 @@ public static CarbonReaderBuilder builder(String tablePath) {
         return builder(tablePath, tableName);
       }
     
    +  /**
    +   * Breaks the list of CarbonRecordReader in CarbonReader into multiple
    +   * CarbonReader objects, each iterating through some 'carbondata' files
    +   * and return that list of CarbonReader objects
    +   *
    +   * If the no. of files is greater than maxSplits, then break the
    +   * CarbonReader into maxSplits splits, with each split iterating
    +   * through >= 1 file.
    +   *
    +   * If the no. of files is less than maxSplits, then return list of
    +   * CarbonReader with size as the no. of files, with each CarbonReader
    +   * iterating through exactly one file
    +   *
    +   * @param maxSplits: Int
    +   * @return list of {@link CarbonReader} objects
    +   */
    +  public List<CarbonReader> split(int maxSplits) throws IOException {
    --- End diff --
    
    I feel this method should be moved to builder. Add another method in builder `build(int splits)` and return List of readers.


---