You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by jackylk <gi...@git.apache.org> on 2018/04/22 09:15:26 UTC

[GitHub] carbondata pull request #2206: [CARBONDATA-2376] Improve Lucene datamap perf...

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

    https://github.com/apache/carbondata/pull/2206#discussion_r183230325
  
    --- Diff: core/src/main/java/org/apache/carbondata/core/datamap/Segment.java ---
    @@ -39,6 +41,11 @@
     
       private String segmentFileName;
     
    +  /**
    +   * List of tasks which are already got filtered through CG index operation.
    +   */
    +  private Set<String> filteredTaskNames = new HashSet<>();
    --- End diff --
    
    Instead of `taskName`, can we give a more formal one. I can suggest two: `indexShardName`, `segmentIndexName`


---