创建资源组时出现异常

【详述】创建资源组异常
【背景】按照官方文档创建资源组
【业务影响】
【StarRocks版本】例如:2.2.0-rc02
按照官方文档操作,创建资源组时报如下错误:
–执行语句:
create resource_group rg1
to
(user=‘root’)
with (
‘cpu_core_limit’ = ‘4’,
‘mem_limit’ = ‘40%’,
‘type’ = ‘normal’
);

–错误提示:
ERROR 1064 (HY000): property ‘concurrent_limit’ is absent

这个属性没有找到是什么

你好,创建语法是resource group不是resource_group哈


create RESOURCE GROUP rg1
to
    (user='root')
with (
    'cpu_core_limit' = '4',
    'mem_limit' = '40%',
    'type' = 'normal'
);

这个文档应该是修改了,新版本好像不需要这个参数了