kunal642 commented on a change in pull request #3386: [WIP] : Pre-priming cache
URL:
https://github.com/apache/carbondata/pull/3386#discussion_r326127211
##########
File path: integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonLoadDataCommand.scala
##########
@@ -866,6 +867,38 @@ case class CarbonLoadDataCommand(
case _ =>
}
}
+
+ // Prepriming for Partition table here
+ val prop = CarbonProperties.getInstance
+ .getProperty(CarbonCommonConstants.CARBON_ENABLE_INDEX_SERVER)
+ if (prop != null) {
+ if (prop.toBoolean) {
+ var readCommittedScope = new TableStatusReadCommittedScope(AbsoluteTableIdentifier.from(
+ carbonLoadModel.getTablePath), hadoopConf)
+ if (carbonLoadModel.getSegmentId != null) {
+ var loadDetailsForCurrentSegment = readCommittedScope
+ .getSegmentList
+ .find(_.getLoadName.equalsIgnoreCase(carbonLoadModel.getSegmentId))
+ .get
+
+ val segmentToWrite: Segment = new Segment(carbonLoadModel.getSegmentId,
+ loadDetailsForCurrentSegment.getSegmentFile,
+ readCommittedScope,
+ loadDetailsForCurrentSegment)
+
+ val invalidSegment: List[Nothing] = List()
+ LOGGER.info(s"Adding Segments to the Cache for Partition Table")
+ val IndexServerLoadEvent: IndexServerLoadEvent =
Review comment:
use lowercase for variable names
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[hidden email]
With regards,
Apache Git Services