yihua commented on code in PR #12864:
URL: https://github.com/apache/hudi/pull/12864#discussion_r1968548391
##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/sources/JsonKafkaSource.java:
##########
@@ -61,6 +64,19 @@
public class JsonKafkaSource extends KafkaSource<JavaRDD<String>> {
private static final Logger LOG =
LoggerFactory.getLogger(JsonKafkaSource.class);
+ /**
+ * Configs specific to {@link JsonKafkaSource}.
+ */
+ public static class Config {
+ public static final ConfigProperty<String>
KAFKA_JSON_VALUE_DESERIALIZER_CLASS = ConfigProperty
+ .key("hoodie.deltastreamer.source.kafka.json.value.deserializer.class")
+ .defaultValue(StringDeserializer.class.getName())
+ .sinceVersion("0.14.0")
Review Comment:
Same here. Let's mark it "1.1.0".
--
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]