Reputation: 383
Is there anyway to integrate HUE with dataproc cluster?
Upvotes: 3
Views: 1524
Reputation: 4457
HUE is supported on Dataproc via initialization action, you can find details how to use it in README: https://github.com/GoogleCloudDataproc/initialization-actions/tree/master/hue
For example, to create Dataproc cluster with HUE use the command:
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
Upvotes: 5