xiaochen-zhou commented on PR #8768: URL: https://github.com/apache/seatunnel/pull/8768#issuecomment-2672117863
I added a test case, `StarRocksIT#testStarRocksReadRowCount()`, to verify whether the number of rows written to the sink matches the number of rows read from the source in scenarios where `request_tablet_size` is less than the number of `BUCKETS`. When I set the table's buckets to 3: ```sql DISTRIBUTED BY HASH(`BIGINT_COL`) BUCKETS 3 ``` At the same time, when request_tablet_size is set to a value less than 3:  The `StarRocksIT#testStarRocksReadRowCount()` test could not pass before the fix:  In this case, the row count is 31, which is less than the expected 100.  After applying the fix, the StarRocksIT#testStarRocksReadRowCount() test now passes successfully:  @hailin0 @Hisoka-X -- 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...@seatunnel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org