BsoBird commented on code in PR #5934:
URL: https://github.com/apache/hive/pull/5934#discussion_r2188253969


##########
ql/src/java/org/apache/hadoop/hive/ql/exec/tez/SplitGrouper.java:
##########
@@ -71,8 +70,8 @@ public class SplitGrouper {
 
   // TODO This needs to be looked at. Map of Map to Map... Made concurrent for 
now since split generation
   // can happen in parallel.
-  private static final Map<Map<Path, PartitionDesc>, Map<Path, PartitionDesc>> 
cache =
-      new ConcurrentHashMap<>();
+  private final Map<Map<Path, PartitionDesc>, Map<Path, PartitionDesc>> cache =

Review Comment:
   @deniskuzZ 
   At present, only one code is involved:
   ```
   // IOPrepareCache.get().allocatePartitionDescMap()
   public Map<Map<Path, PartitionDesc>, Map<Path, PartitionDesc>> 
allocatePartitionDescMap() {
       if (partitionDescMap == null) {
         partitionDescMap = new HashMap<>();
       }
       return partitionDescMap;
     }
   ```
   
   usage demo:
   ```
           // extract all the inputFormatClass names for each chunk in the
           // CombinedSplit.
           PartitionDesc part = 
HiveFileFormatUtils.getFromPathRecursively(pathToPartitionInfo,
               inputSplitShim.getPath(0), 
IOPrepareCache.get().getPartitionDescMap());
   ```



-- 
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.

To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org
For additional commands, e-mail: gitbox-h...@hive.apache.org

Reply via email to