gpt4 book ai didi

airflow - 如何使用 Apache Airflow 的 DataprocCreateClusterOperator 在 Dataproc(GCP) 上启用 Spark Web 界面

转载 作者:行者123 更新时间:2023-12-05 05:44:14 25 4
gpt4 key购买 nike

我们正在使用 Apache Airflow 的 DataprocCreateClusterOperator 在 GCP (Dataproc) 上创建 Spark 集群,并希望启用 Spark Web UI 界面。使用终端创建时,我们在创建集群命令中传递 --enable-component-gateway。我们如何使用 DataprocCreateClusterOperator

实现此目的

我们尝试在下面添加endpoint_config(下面的示例代码),但没有成功。

"software_config" : {
.....,

"endpoint_config" : {
"enable_http_port_access" : "true"
}
}

最佳答案

根据 Dataproc REST API(ClusterClusterConfigEndpointConfig),它应该是

{
"clusterName": ...,
...
"config": {
"endpointConfig": {
"enableHttpPortAccess" : true
},
"softwareConfig": {
...
},
...
}
}

关于airflow - 如何使用 Apache Airflow 的 DataprocCreateClusterOperator 在 Dataproc(GCP) 上启用 Spark Web 界面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71633784/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com