Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2267#discussion_r185883427
--- Diff:
datamap/lucene/src/main/java/org/apache/carbondata/datamap/lucene/LuceneFineGrainDataMap.java
---
@@ -60,6 +60,15 @@
@InterfaceAudience.Internal
public class LuceneFineGrainDataMap extends FineGrainDataMap {
+ /**
+ * search limit will help in deciding the size of priority queue which
is used by lucene to store
+ * the documents in heap. By default it is 10 means in one search max of
10 documents can be
+ * stored in heap by lucene. This way ot will help in reducing the GC.
--- End diff --
typo in `This way ot will`
---