1
0

[HUDI-1475]: fixed java doc for precombine api (#3867)

This commit is contained in:
Pratyaksh Sharma
2021-10-27 03:45:20 +05:30
committed by GitHub
parent 643b1a4df2
commit ae000795d7

View File

@@ -45,7 +45,7 @@ public interface HoodieRecordPayload<T extends HoodieRecordPayload> extends Seri
T preCombine(T oldValue);
/**
* When more than one HoodieRecord have the same HoodieKey, this function combines them before attempting to insert/upsert by taking in a property map.
* When more than one HoodieRecord have the same HoodieKey in the incoming batch, this function combines them before attempting to insert/upsert by taking in a property map.
* Implementation can leverage the property to decide their business logic to do preCombine.
*
* @param oldValue instance of the old {@link HoodieRecordPayload} to be combined with.