根据 https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/cluster-properties,我试图在使用gcloud命令创建Dataproc集群时启用yarn.log-aggregation-enable。
gcloud beta dataproc clusters create test1
--properties= 'yarn:yarn.log-aggregation-enable=true'
--max-idle=30m
--no-address
--network default
--region=us-east4
--zone=us-east4-c
--master-boot-disk-size=200GB
--worker-boot-disk-size=100GB
--num-workers=10
--worker-machine-type=n1-standard-4
--master-machine-type=n1-standard-8
但我被告知:
无法识别的参数:纱线:纱线.log聚合启用=真
怎么说呢?有没有另一种方法可以在 Dataproc 集群上启用 yarn.log-aggregation-enable?
非常感谢!
一个解析错误,您在属性之前有一个等号 ( =
) 和一个空格 ()
--properties='yarn:yarn.log-aggregation-enable=true'
。摆脱一个,命令将接受参数:CC_4