FlechazoW commented on code in PR #5278:
URL: https://github.com/apache/seatunnel/pull/5278#discussion_r1328696884
##########
seatunnel-connectors-v2/connector-kudu/src/main/java/org/apache/seatunnel/connectors/seatunnel/kudu/config/KuduSinkConfig.java:
##########
@@ -51,13 +51,36 @@ public class KuduSinkConfig {
.noDefaultValue()
.withDescription("kudu table name");
+ public static final Option<Boolean> USE_KERBEROS =
+ Options.key("use.kerberos")
+ .booleanType()
+ .defaultValue(false)
+ .withDescription("kudu use.kerberos");
+
+ public static final Option<String> CONF_FILES =
+
Options.key("conf.files").stringType().noDefaultValue().withDescription("conf
files ");
+
+ public static final Option<String> KERBEROS_PRINCIPAL =
+ Options.key("kerberos_principal")
+ .stringType()
+ .noDefaultValue()
+ .withDescription("Kudu kerberos principal");
+
+ public static final Option<String> KERBEROS_KEYTAB_PATH =
+ Options.key("kerberos_keytab_path")
+ .stringType()
+ .noDefaultValue()
+ .withDescription("Kudu kerberos keytab file path");
Review Comment:
You can abstract these configuration items into the common module.
--
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]