You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This service gives the ability to install Hue on multiple hosts I assume like the other Ambari services, but does it provide the ability to load balance them via Nginx, for example?
I know Cloudera Manager provides the option to setup a load balancer, but could this be done in Amabri?
In a Jinja template for Nginx, you could so something like
upstream hue {
ip_hash;
# List all the Hue instances here for high availability.
{%forserverinserverlist%}
server {{ server }}:8888 max_fails=3;
{%endfor%}
}
The text was updated successfully, but these errors were encountered:
Hi cricket007:
At present,this service dosen't provide the ability to load balance on multiple hosts. But I will update this service based on the information given. Thank you!
This service gives the ability to install Hue on multiple hosts I assume like the other Ambari services, but does it provide the ability to load balance them via Nginx, for example?
I know Cloudera Manager provides the option to setup a load balancer, but could this be done in Amabri?
In a Jinja template for Nginx, you could so something like
The text was updated successfully, but these errors were encountered: