doris第一次建表时,出现errCode = 2,detailMessage = Cluster default_cluster没有可用容量

问题描述 投票:0回答:2

ddl sql

create table a (

`id` bigint not null ,
`update_time` datetime
)

DISTRIBUTED BY HASH(`id`) BUCKETS 1
PROPERTIES (
    "replication_allocation" = "tag.location.default: 1"
)


错误信息 SQL 错误 [1105] [HY000]:errCode = 2,detailMessage = 集群 default_cluster 没有可用容量

olap
2个回答
0
投票

进入be存储目录查看存储空间


-1
投票

我也面临着同样的问题。 你找到解决办法了吗?

© www.soinside.com 2019 - 2024. All rights reserved.