Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2402#discussion_r197821658
--- Diff:
processing/src/main/java/org/apache/carbondata/processing/store/writer/v3/CarbonFactDataWriterImplV3.java
---
@@ -76,7 +79,29 @@ public
CarbonFactDataWriterImplV3(CarbonFactDataHandlerModel model) {
blockletSizeThreshold = fileSizeInBytes;
LOGGER.info("Blocklet size configure for table is: " +
blockletSizeThreshold);
}
- blockletDataHolder = new BlockletDataHolder();
+ int numberOfCores = CarbonProperties.getInstance().getNumberOfCores();
--- End diff --
please remove unused code
---