HHoflittlefish777 opened a new pull request, #24035: URL: https://github.com/apache/doris/pull/24035
## Proposed changes support max filter ratio property for routine load ### how to use you can create routine load like this: ```CREATE ROUTINE LOAD job ON test10 COLUMNS(id, createTime, field1, field2, field3, field4, field5, field6, field7, field8) PROPERTIES ( "max_filter_ratio" = "0.5", "max_batch_interval" = "5", "max_batch_rows" = "300000", "max_batch_size" = "209715200", "format" = "csv" ) FROM KAFKA ( "kafka_broker_list" = "ip", "kafka_topic" = "test", "property.kafka_default_offsets" = "OFFSET_BEGINNING" );``` ### update it can support update when you pause routine load job `ALTER ROUTINE LOAD FOR db.job PROPERTIES ( "max_filter_ratio" = "0.1" );` ## Further comments If this is a relatively large or complex change, kick off the discussion at [d...@doris.apache.org](mailto:d...@doris.apache.org) by explaining why you chose the solution you did and what alternatives you considered, etc... -- 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