ShreelekhyaG commented on a change in pull request #3988: URL: https://github.com/apache/carbondata/pull/3988#discussion_r534677231
########## File path: core/src/main/java/org/apache/carbondata/core/mutate/CarbonUpdateUtil.java ########## @@ -672,7 +678,7 @@ public static boolean isMaxQueryTimeoutExceeded(long fileTimestamp) { long minutesElapsed = (difference / (1000 * 60)); - return minutesElapsed > maxTime; + return minutesElapsed >= maxTime; Review comment: done ########## File path: core/src/main/java/org/apache/carbondata/core/util/CarbonUtil.java ########## @@ -2558,8 +2558,11 @@ public static long getCarbonIndexSize(SegmentFileStore fileStore, // Get the total size of carbon data and the total size of carbon index public static HashMap<String, Long> getDataSizeAndIndexSize(String tablePath, Segment segment) throws IOException { + SegmentFileStore fileStore = null; if (segment.getSegmentFileName() != null) { - SegmentFileStore fileStore = new SegmentFileStore(tablePath, segment.getSegmentFileName()); + fileStore = new SegmentFileStore(tablePath, segment.getSegmentFileName()); + } + if (segment.getSegmentFileName() != null && fileStore.getSegmentFile() != null) { Review comment: Done ---------------------------------------------------------------- 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: us...@infra.apache.org