polarbearmx opened a new issue, #33453: URL: https://github.com/apache/doris/issues/33453
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Version 2.1.0 ### What's Wrong? 同样的Insert语句在不开启GroupCommit的情况下可以插入,在开启[set group_commit = sync_mode;]后,提示错误【5025 - errCode = 2, detailMessage = group commit insert failed. db_id: 37018, table_id: 279136, query_id: db138ba8d26240e3-9c01d52b974de15e, backend_id: 26551, status: status_code: 46 error_msgs: "(10.101.37.47)[DATA_QUALITY_ERROR]too many filtered rows"】。 ======================================================================== mysql> set group_commit = off_mode; Query OK, 0 rows affected (0.10 sec) mysql> insert into orders_gc values (1, 1, '2023-10-17', 'ok', 99.5, 'a', 'b', 1, 'yy'), (2, 2, '2023-10-18', 'ok', 109.2, 'c','d',2, 'mm'), (3, 3, '2023-10-19', 'ok', 99.5, 'a', 'b', 1, 'yy'); Query OK, 3 rows affected (0.24 sec) {'label':'label_69d6ed50f7ef47ef_9fcb660a46c4eb8a', 'status':'VISIBLE', 'txnId':'2612'} mysql> set group_commit = sync_mode; Query OK, 0 rows affected (0.06 sec) mysql> insert into orders_gc values (1, 1, '2023-10-17', 'ok', 99.5, 'a', 'b', 1, 'yy'), (2, 2, '2023-10-18', 'ok', 109.2, 'c','d',2, 'mm'), (3, 3, '2023-10-19', 'ok', 99.5, 'a', 'b', 1, 'yy'); 5025 - errCode = 2, detailMessage = group commit insert failed. db_id: 37018, table_id: 279136, query_id: db138ba8d26240e3-9c01d52b974de15e, backend_id: 26551, status: status_code: 46 error_msgs: "(10.101.37.47)[DATA_QUALITY_ERROR]too many filtered rows" mysql>  ### What You Expected? 在2.1.x版本上GroupCommit是否可靠?在哪个版本上可用? ### How to Reproduce? 按步骤即可。 ### Anything Else? 无 ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- 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.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