Search code examples
hadoopgoogle-cloud-dataprochue

HUE integration with Dataproc cluster


Is there anyway to integrate HUE with dataproc cluster?


Solution

  • 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