nsivabalan commented on code in PR #9117:
URL: https://github.com/apache/hudi/pull/9117#discussion_r1251468123


##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/metadata/HoodieBackedTableMetadataWriter.java:
##########
@@ -1161,25 +1165,36 @@ protected boolean 
validateTimelineBeforeSchedulingCompaction(Option<String> inFl
    * @param writeStatuses {@code WriteStatus} from the write operation
    */
   private HoodieData<HoodieRecord> 
getRecordIndexUpdates(HoodieData<WriteStatus> writeStatuses) {
-    // 1. List<HoodieRecordDelegate>
-    // 2. Reduce by key: accept keys only when new location is not
-    return writeStatuses.map(writeStatus -> 
writeStatus.getWrittenRecordDelegates().stream()
-            .map(recordDelegate -> Pair.of(recordDelegate.getRecordKey(), 
recordDelegate)))
-        .flatMapToPair(Stream::iterator)
-        .reduceByKey((recordDelegate1, recordDelegate2) -> {
-          if 
(recordDelegate1.getRecordKey().equals(recordDelegate2.getRecordKey())) {
-            if (recordDelegate1.getNewLocation().isPresent() && 
recordDelegate1.getNewLocation().get().getFileId() != null) {
-              return recordDelegate1;
-            } else if (recordDelegate2.getNewLocation().isPresent() && 
recordDelegate2.getNewLocation().get().getFileId() != null) {
-              return recordDelegate2;
+    HoodiePairData<String, HoodieRecordDelegate> recordKeyDelegatePairs = null;
+    // if update partition path is true, chances that we might get two records 
(1 delete in older partition and 1 insert to new partition)
+    // and hence we might have to do reduce By key before ingesting to RLI 
partition.
+    if (dataWriteConfig.getRecordIndexUpdatePartitionPath()) {
+      recordKeyDelegatePairs = writeStatuses.map(writeStatus -> 
writeStatus.getWrittenRecordDelegates().stream()
+              .map(recordDelegate -> Pair.of(recordDelegate.getRecordKey(), 
recordDelegate)))
+          .flatMapToPair(Stream::iterator)
+          .reduceByKey((recordDelegate1, recordDelegate2) -> {
+            if 
(recordDelegate1.getRecordKey().equals(recordDelegate2.getRecordKey())) {
+              if (recordDelegate1.getNewLocation().isPresent() && 
recordDelegate2.getNewLocation().isPresent()) {
+                throw new HoodieIOException("Both version of records does not 
have location set. Record V1 " + recordDelegate1.toString()
+                    + ", Record V2 " + recordDelegate2.toString());
+              }
+              if (recordDelegate1.getNewLocation().isPresent()) {
+                return recordDelegate1;
+              } else {
+                // if record delegate 1 does not have location set, record 
delegate 2 should have location set.
+                return recordDelegate2;
+              }
             } else {
-              // should not come here, one of the above must have a new 
location set
-              return null;
+              return recordDelegate1;
             }
-          } else {
-            return recordDelegate1;
-          }
-        }, 1)
+          }, Math.max(1, writeStatuses.getNumPartitions()));
+    } else {

Review Comment:
   if writeStatus is empty, thats why



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to