liujinhui1994 commented on a change in pull request #3312:
URL: https://github.com/apache/hudi/pull/3312#discussion_r702519243
##########
File path:
hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/DataSourceOptions.scala
##########
@@ -724,6 +725,21 @@ object DataSourceWriteOptions {
val KAFKA_AVRO_VALUE_DESERIALIZER = KAFKA_AVRO_VALUE_DESERIALIZER_CLASS.key()
@Deprecated
val SCHEMA_PROVIDER_CLASS_PROP = "hoodie.deltastreamer.schemaprovider.class"
+
+ val ERROR_TABLE_ENABLE_OPT_KEY: ConfigProperty[String] = ConfigProperty
+ .key("hoodie.write.error.table.enabled")
+ .defaultValue("false")
+ .withDocumentation("Enable the internal Error Table which saves error
record");
+
+ val HOODIE_WRITE_STATUS_CLASS_OPT_KEY: ConfigProperty[String] =
ConfigProperty
+ .key("hoodie.writestatus.class")
+ .defaultValue(classOf[WriteStatus].getName)
+ .withDocumentation("");
+
+ val WRITESTATUS_FAILURE_FRACTION_OPT_KEY: ConfigProperty[String] =
ConfigProperty
+ .key("hoodie.memory.writestatus.failure.fraction")
+ .defaultValue("")
+ .withDocumentation("");
Review comment:
done
--
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]