fhan688 commented on code in PR #12136:
URL: https://github.com/apache/hudi/pull/12136#discussion_r1810280319


##########
hudi-client/hudi-flink-client/src/main/java/org/apache/hudi/io/storage/row/HoodieRowDataCreateHandle.java:
##########
@@ -142,7 +143,11 @@ public void write(String recordKey, String partitionPath, 
RowData record) throws
             ? HoodieRecordDelegate.create(recordKey, partitionPath, null, 
newRecordLocation) : null;
         writeStatus.markSuccess(recordDelegate, Option.empty());
       } catch (Throwable t) {
+        LOG.error("Failed to write : key is " + recordKey + ", data is " + 
rowData, t);
         writeStatus.markFailure(recordKey, partitionPath, t);

Review Comment:
   Thanks.  add same logic according to the inheritance relationship of 
HoodleWriteHandle. 



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