HUE 与 Dataproc 集群的集成

HUE integration with Dataproc cluster

有没有办法将 HUE 与 dataproc 集群集成?

Dataproc 通过初始化操作支持 HUE,您可以在 README 中找到有关如何使用它的详细信息: https://github.com/GoogleCloudDataproc/initialization-actions/tree/master/hue

例如,要使用 HUE 创建 Dataproc 集群,请使用以下命令:

REGION=<region>
CLUSTER_NAME=<cluster_name>
gcloud dataproc clusters create ${CLUSTER_NAME} \
    --region ${REGION} \
    --initialization-actions gs://goog-dataproc-initialization-actions-${REGION}/hue/hue.sh