qidaye opened a new issue, #26679: URL: https://github.com/apache/doris/issues/26679
### 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 master ### What's Wrong? load_to_single_tablet is not working with broker load ### What You Expected? working normally. ### How to Reproduce? ```sql create table test3 ( id int, tiny_1 TINYINT, int_1 INT, big_1 BIGINT, large_1 LARGEINT, float_1 FLOAT , dou_1 DOUBLE, dec_1 DECIMAL(10,2) ) DISTRIBUTED BY random BUCKETS 20 PROPERTIES ( "replication_allocation" = "tag.location.default: 1" ); LOAD LABEL example_db_test2 ( DATA INFILE("hdfs://xxxx:29931/data_broker3.csv") INTO TABLE test3 COLUMNS TERMINATED BY "," FORMAT AS "csv" (id,tiny_1,int_1,big_1,large_1,float_1,dou_1,dec_1) ) WITH broker broker_name1 ( "fs.defaultFS"="hdfs://xxxx:29931" ) PROPERTIES( "load_to_single_tablet"="true", "priority"="HIGH" ); ``` ### Anything Else? _No response_ ### Are you willing to submit PR? - [X] 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
