├── .gitignore ├── LICENSE ├── README.md ├── alerts.json ├── configuration ├── hue-auth-site.xml ├── hue-desktop-site.xml ├── hue-env.xml ├── hue-hadoop-site.xml ├── hue-hbase-site.xml ├── hue-hive-site.xml ├── hue-log4j-env.xml ├── hue-notebook-site.xml ├── hue-oozie-site.xml ├── hue-pig-site.xml ├── hue-rdbms-site.xml ├── hue-solr-site.xml ├── hue-spark-site.xml ├── hue-ugsync-site.xml ├── hue-zookeeper-site.xml └── pseudo-distributed.ini.xml ├── kerberos.json ├── metainfo.xml ├── package ├── files │ └── configs.sh └── scripts │ ├── common.py │ ├── hue_server.py │ ├── params.py │ ├── setup_hue.py │ └── status_params.py ├── quicklinks └── quicklinks.json ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png └── 6.png └── themes └── theme_hue_version_1.json /.gitignore: -------------------------------------------------------------------------------- 1 | .project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/README.md -------------------------------------------------------------------------------- /alerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/alerts.json -------------------------------------------------------------------------------- /configuration/hue-auth-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-auth-site.xml -------------------------------------------------------------------------------- /configuration/hue-desktop-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-desktop-site.xml -------------------------------------------------------------------------------- /configuration/hue-env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-env.xml -------------------------------------------------------------------------------- /configuration/hue-hadoop-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-hadoop-site.xml -------------------------------------------------------------------------------- /configuration/hue-hbase-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-hbase-site.xml -------------------------------------------------------------------------------- /configuration/hue-hive-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-hive-site.xml -------------------------------------------------------------------------------- /configuration/hue-log4j-env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-log4j-env.xml -------------------------------------------------------------------------------- /configuration/hue-notebook-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-notebook-site.xml -------------------------------------------------------------------------------- /configuration/hue-oozie-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-oozie-site.xml -------------------------------------------------------------------------------- /configuration/hue-pig-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-pig-site.xml -------------------------------------------------------------------------------- /configuration/hue-rdbms-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-rdbms-site.xml -------------------------------------------------------------------------------- /configuration/hue-solr-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-solr-site.xml -------------------------------------------------------------------------------- /configuration/hue-spark-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-spark-site.xml -------------------------------------------------------------------------------- /configuration/hue-ugsync-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-ugsync-site.xml -------------------------------------------------------------------------------- /configuration/hue-zookeeper-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/hue-zookeeper-site.xml -------------------------------------------------------------------------------- /configuration/pseudo-distributed.ini.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/configuration/pseudo-distributed.ini.xml -------------------------------------------------------------------------------- /kerberos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/kerberos.json -------------------------------------------------------------------------------- /metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/metainfo.xml -------------------------------------------------------------------------------- /package/files/configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/package/files/configs.sh -------------------------------------------------------------------------------- /package/scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/package/scripts/common.py -------------------------------------------------------------------------------- /package/scripts/hue_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/package/scripts/hue_server.py -------------------------------------------------------------------------------- /package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/package/scripts/params.py -------------------------------------------------------------------------------- /package/scripts/setup_hue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/package/scripts/setup_hue.py -------------------------------------------------------------------------------- /package/scripts/status_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/package/scripts/status_params.py -------------------------------------------------------------------------------- /quicklinks/quicklinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/quicklinks/quicklinks.json -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /themes/theme_hue_version_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsharEditor/ambari-hue-service/HEAD/themes/theme_hue_version_1.json --------------------------------------------------------------------------------