根据https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/cluster-properties
,我尝试使用如下所示的gcloud命令在创建Dataproc集群时启用yarn.log-aggregation-enablegcloud 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
但是我被告知:
无法识别的参数:yarn:yarn.log-aggregation-enable = true
如何正确设置? 是否有另一种方法可以在Dataproc群集上启用yarn.log-aggregation-enable?
非常感谢!
答案 0 :(得分:1)
这只是一个解析错误,在属性public partial class Edit_Employee : MainEdit
{
public Edit_Employee() : base() // See this line.
{
InitializeComponent();
}
}
之前您有一个等号(=
)和一个空格()。摆脱一个,该命令将接受参数:
--properties= 'yarn:yarn.log-aggregation-enable=true'