JNSimba commented on code in PR #290: URL: https://github.com/apache/doris-flink-connector/pull/290#discussion_r1449772039
########## flink-doris-connector/src/main/java/org/apache/doris/flink/table/DorisConfigOptions.java: ########## @@ -291,4 +292,26 @@ public static Properties getStreamLoadProp(Map<String, String> tableOptions) { } return streamLoadProp; } + + public static LinkedHashMap<String,String> getJdbcUrlDefaultParameter() { + final LinkedHashMap defaultParameter = new LinkedHashMap<String,String>(); + defaultParameter.put("rewriteBatchedStatements", "true"); + return defaultParameter; Review Comment: But this is only useful for jdbc insert. The writing in sink is done through streamload. -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org