nikspatel03 commented on issue #6441:
URL: https://github.com/apache/hudi/issues/6441#issuecomment-1224887332

   What I understand ->  OverwriteNonDefaultsWithLatestAvroPayload can update 
the non-null fields in the new data(cdc) to the old data(Hudi table) But what 
if I have multiple changes for the same Record key into new cdc data then it 
won't give me correct output.  
   
   For example: 
   Hudi Table:
   RK1, F1, F2, F3, F4, F5
   
   New cdc data: 
   RK1, null, null, F3', null, F5'
   RK2, F1', null, F3", null, null
   RK3, null, F2', null, F4', F5"
   
   So Expected output of Record key(RK1) row in Hudi Table would be: 
   RK1, F1', F2', F3", F4', F5"
   
   Is there any future plan to merge following work into Hudi master which can 
help us to get partial updates ? 
   https://github.com/apache/hudi/pull/2666
   
   


-- 
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: commits-unsubscr...@hudi.apache.org

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

Reply via email to