starrocks,sql查询慢


这个sql查询执行时间是正常的吗?关于性能问题。我表里有十亿条数据,这里查询一亿条。
我的电脑配置是三节点 每台32内存,400g磁盘
电脑核数16,并行度
数据量大概40g的,十亿条数据 每条数据三个字段
这是我的建表语句:
create table if not exists user_label_string(
label string not null,
vu decimal not null,
uid decimal not null
)
duplicate key (label,vu)
distributed by hash (uid) buckets 16;
以下是我节点的profile信息:

是不是我的建的表的类型有问题呢?或者,我的sql太复杂了,还是参数不对呢?跟同级别的clickhouse比着查询时间慢太多了!执行5亿数据量的时候根本就不行了,直接报错mem limit 参数直接超限制!
并行度和cbo

set parallel_fragment_exec_instance_num=16,然后再查下

好的,谢谢,测过之后我把结果在传上来反馈