Google bigquery 获取错误:创建bigquery群集表时,位置参数过多,仍然存在错误

Google bigquery 获取错误:创建bigquery群集表时,位置参数过多,仍然存在错误,google-bigquery,Google Bigquery,根据BigQuery文档,您最多可以指定四个集群列。在我的例子中,我正在执行bellow bq语句来创建一个集群表,但是不断得到太多的位置参数,仍然有 下面是bq CLI语句 bq mk --table --schema /tmpbq/schema_.json --time_partitioning_field effectivedate --clustering_fields departmentid,vendorid, markstyleid, colorcode myproject-np

根据BigQuery文档,您最多可以指定四个集群列。在我的例子中,我正在执行bellow bq语句来创建一个集群表,但是不断得到太多的位置参数,仍然有

下面是bq CLI语句

bq mk --table --schema /tmpbq/schema_.json --time_partitioning_field effectivedate --clustering_fields departmentid,vendorid, markstyleid, colorcode  myproject-np:cat_dataset.cat_table

如果删除最后2个或1个群集列,则它可以工作

我得到了解决方案-逗号分隔的聚集列中不应该有任何空格

bq mk --table --schema /tmpbq/schema_.json --time_partitioning_field effectivedate --clustering_fields departmentid,vendorid,markstyleid,colorcode myproject-np:cat_dataset.cat_table
@谷歌团队请在文档中提及这一点