1
0

[HUDI-3711] Fix typo in MaxwellJsonKafkaSourcePostProcessor.Config#PRECOMBINE_FIELD_TYPE_PROP (#5096)

This commit is contained in:
wangxianghu
2022-03-25 11:02:54 +04:00
committed by GitHub
parent 8b38ddedc2
commit f20c9867d7

View File

@@ -91,9 +91,9 @@ public class MaxwellJsonKafkaSourcePostProcessor extends JsonKafkaSourcePostProc
public static final ConfigProperty<String> PRECOMBINE_FIELD_TYPE_PROP = ConfigProperty
.key("hoodie.deltastreamer.source.json.kafka.post.processor.maxwell.precombine.field.type")
.defaultValue("DATA_STRING")
.defaultValue(DATE_STRING.toString())
.withDocumentation("Data type of the preCombine field. could be NON_TIMESTAMP, DATE_STRING,"
+ "UNIX_TIMESTAMP or EPOCHMILLISECONDS. DATA_STRING by default ");
+ "UNIX_TIMESTAMP or EPOCHMILLISECONDS. DATE_STRING by default ");
public static final ConfigProperty<String> PRECOMBINE_FIELD_FORMAT_PROP = ConfigProperty
.key("hoodie.deltastreamer.source.json.kafka.post.processor.maxwell.precombine.field.format")