Github user sounakr commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1359#discussion_r139092331
--- Diff:
core/src/main/java/org/apache/carbondata/core/datamap/dev/DataMap.java ---
@@ -31,7 +31,8 @@
/**
* It is called to load the data map to memory or to initialize it.
*/
- void init(String filePath) throws MemoryException, IOException;
+ void init(String blockletIndexPath, String customIndexPath, String
segmentId)
--- End diff --
For Min Max Index creation like segment properties and other things i am
taking input from regular carbonindex file too. So by design we can have one
parameter as primitive index path other can be of the new custom index file
path.
---