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`
---