tiandong19860806 opened a new issue, #18929: URL: https://github.com/apache/doris/issues/18929
### 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 doris-be: 1.2.2 doris-fe : 1.2.2 os: centos-7.9 x64 ### What's Wrong? 当我建立好一个doris-fe + 3个doris-be节点集群后, 通过网页doris-fe-web(http://HOST_URL:8030/System?path=//backends),可以查看到有成功配置doris-be三个节点。 但是,我在客户端,成功连接:doris-fe服务之后,无法创建多副本的table,报错信息如下图3: 请问,这里SQL执行建表脚本,为何识别不到3个doris-be,但是我网页或命令查询,却有3个doris-be?    ### What You Expected? 这里SQL执行建表脚本,可以识别到有3个doris-be,并且成功创建table成功不报错。 use db_test_01; create table t_test_04 ( k1 tinyint, k2 decimal(10, 2) default "10.5", v1 char(10) replace, v2 int sum ) engine=olap aggregate key(k1, k2) distributed by hash(k1) buckets 32 properties ("replication_num" = "3"); ### How to Reproduce? 执行如下:脚本SQL step 1: -- 配置三个doris-be节点到一个doris-fe节点(mysql 5.7客户端) ALTER SYSTEM ADD BACKEND "192.168.8.51:9050"; ALTER SYSTEM ADD BACKEND "192.168.8.52:9050"; ALTER SYSTEM ADD BACKEND "192.168.8.53:9050"; step 2: -- 执行建表脚本 create database db_test_01; use db_test_01; create table t_test_04 ( k1 tinyint, k2 decimal(10, 2) default "10.5", v1 char(10) replace, v2 int sum ) engine=olap aggregate key(k1, k2) distributed by hash(k1) buckets 32 properties ("replication_num" = "3"); ### Anything Else? N/A ### 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]
