miles212
miles212

Reputation: 383

HUE integration with Dataproc cluster

Is there anyway to integrate HUE with dataproc cluster?

Upvotes: 3

Views: 1524

Answers (1)

Igor Dvorzhak
Igor Dvorzhak

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

Related Questions