hue.ini 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005
  1. # Hue configuration file
  2. # ===================================
  3. #
  4. # For complete documentation about the contents of this file, run
  5. # $ <hue_root>/build/env/bin/hue config_help
  6. #
  7. # All .ini files under the current directory are treated equally. Their
  8. # contents are merged to form the Hue configuration, which can
  9. # can be viewed on the Hue at
  10. # http://<hue_host>:<port>/dump_config
  11. ###########################################################################
  12. # General configuration for core Desktop features (authentication, etc)
  13. ###########################################################################
  14. [desktop]
  15. # Set this to a random string, the longer the better.
  16. # This is used for secure hashing in the session store.
  17. secret_key=
  18. # Webserver listens on this address and port
  19. http_host=0.0.0.0
  20. http_port=8888
  21. # Time zone name
  22. time_zone=America/Los_Angeles
  23. # Enable or disable Django debug mode.
  24. django_debug_mode=false
  25. # Enable or disable backtrace for server error
  26. http_500_debug_mode=false
  27. # Enable or disable memory profiling.
  28. ## memory_profiler=false
  29. # Server email for internal error messages
  30. ## django_server_email='hue@localhost.localdomain'
  31. # Email backend
  32. ## django_email_backend=django.core.mail.backends.smtp.EmailBackend
  33. # Webserver runs as this user
  34. ## server_user=hue
  35. ## server_group=hue
  36. # This should be the Hue admin and proxy user
  37. ## default_user=hue
  38. # This should be the hadoop cluster admin
  39. ## default_hdfs_superuser=hdfs
  40. # If set to false, runcpserver will not actually start the web server.
  41. # Used if Apache is being used as a WSGI container.
  42. ## enable_server=yes
  43. # Number of threads used by the CherryPy web server
  44. ## cherrypy_server_threads=10
  45. # Filename of SSL Certificate
  46. ## ssl_certificate=
  47. # Filename of SSL RSA Private Key
  48. ## ssl_private_key=
  49. # List of allowed and disallowed ciphers in cipher list format.
  50. # See http://www.openssl.org/docs/apps/ciphers.html for more information on cipher list format.
  51. ## ssl_cipher_list=DEFAULT:!aNULL:!eNULL:!LOW:!EXPORT:!SSLv2
  52. # LDAP username and password of the hue user used for LDAP authentications.
  53. # Set it to use LDAP Authentication with HiveServer2 and Impala.
  54. ## ldap_username=hue
  55. ## ldap_password=
  56. # Default encoding for site data
  57. ## default_site_encoding=utf-8
  58. # Help improve Hue with anonymous usage analytics.
  59. # Use Google Analytics to see how many times an application or specific section of an application is used, nothing more.
  60. ## collect_usage=true
  61. # Support for HTTPS termination at the load-balancer level with SECURE_PROXY_SSL_HEADER.
  62. ## secure_proxy_ssl_header=false
  63. # Comma-separated list of Django middleware classes to use.
  64. # See https://docs.djangoproject.com/en/1.4/ref/middleware/ for more details on middlewares in Django.
  65. ## middleware=desktop.auth.backend.LdapSynchronizationBackend
  66. # Comma-separated list of regular expressions, which match the redirect URL.
  67. # For example, to restrict to your local domain and FQDN, the following value can be used:
  68. # ^\/.*$,^http:\/\/www.mydomain.com\/.*$
  69. ## redirect_whitelist=^\/.*$
  70. # Comma separated list of apps to not load at server startup.
  71. # e.g.: pig,zookeeper
  72. ## app_blacklist=
  73. # The directory where to store the auditing logs. Auditing is disable if the value is empty.
  74. # e.g. /var/log/hue/audit.log
  75. ## audit_event_log_dir=
  76. # Size in KB/MB/GB for audit log to rollover.
  77. ## audit_log_max_file_size=100MB
  78. # A file containing a list of log redaction rules for cleaning sensitive data
  79. # from log files. Each rule is defined as:
  80. #
  81. # `[TRIGGER]::[REGEX]::[REDACTION_MASK]`.
  82. #
  83. # Redaction works by searching a string for the [TRIGGER] string. If found,
  84. # the [REGEX] is used to replace sensitive information with the
  85. # [REDACTION_MASK]. If specified with `log_redaction_string`, the
  86. # `log_redaction_string` rules will be executed after the
  87. # `log_redaction_file` rules.
  88. #
  89. # For example, here is a file that would redact passwords and social security numbers:
  90. #
  91. # password=::password=".*"::password="???"
  92. # ::\d{3}-\d{2}\{4}::XXX-XXX-XXXX
  93. ## log_redaction_file=
  94. # A string containing a list of redaction rules. It uses the same rules as
  95. # described in `log_redaction_file`, but each rule is separated by `||`
  96. # instead of newlines.
  97. ## log_redaction_string=
  98. # Administrators
  99. # ----------------
  100. [[django_admins]]
  101. ## [[[admin1]]]
  102. ## name=john
  103. ## email=john@doe.com
  104. # UI customizations
  105. # -------------------
  106. [[custom]]
  107. # Top banner HTML code
  108. # e.g. <H2>Test Lab A2 Hue Services</H2>
  109. ## banner_top_html=
  110. # Configuration options for user authentication into the web application
  111. # ------------------------------------------------------------------------
  112. [[auth]]
  113. # Authentication backend. Common settings are:
  114. # - django.contrib.auth.backends.ModelBackend (entirely Django backend)
  115. # - desktop.auth.backend.AllowAllBackend (allows everyone)
  116. # - desktop.auth.backend.AllowFirstUserDjangoBackend
  117. # (Default. Relies on Django and user manager, after the first login)
  118. # - desktop.auth.backend.LdapBackend
  119. # - desktop.auth.backend.PamBackend
  120. # - desktop.auth.backend.SpnegoDjangoBackend
  121. # - desktop.auth.backend.RemoteUserDjangoBackend
  122. # - libsaml.backend.SAML2Backend
  123. # - libopenid.backend.OpenIDBackend
  124. # - liboauth.backend.OAuthBackend
  125. # (Support Twitter, Facebook, Google+ and Linkedin
  126. ## backend=desktop.auth.backend.AllowFirstUserDjangoBackend
  127. # The service to use when querying PAM.
  128. ## pam_service=login
  129. # When using the desktop.auth.backend.RemoteUserDjangoBackend, this sets
  130. # the normalized name of the header that contains the remote user.
  131. # The HTTP header in the request is converted to a key by converting
  132. # all characters to uppercase, replacing any hyphens with underscores
  133. # and adding an HTTP_ prefix to the name. So, for example, if the header
  134. # is called Remote-User that would be configured as HTTP_REMOTE_USER
  135. #
  136. # Defaults to HTTP_REMOTE_USER
  137. ## remote_user_header=HTTP_REMOTE_USER
  138. # Synchronize a users groups when they login
  139. ## sync_groups_on_login=false
  140. # Ignore the case of usernames when searching for existing users.
  141. # Only supported in remoteUserDjangoBackend.
  142. ## ignore_username_case=false
  143. # Ignore the case of usernames when searching for existing users to authenticate with.
  144. # Only supported in remoteUserDjangoBackend.
  145. ## force_username_lowercase=false
  146. # Users will expire after they have not logged in for 'n' amount of seconds.
  147. # A negative number means that users will never expire.
  148. ## expires_after=-1
  149. # Apply 'expires_after' to superusers.
  150. ## expire_superusers=true
  151. # Configuration options for connecting to LDAP and Active Directory
  152. # -------------------------------------------------------------------
  153. [[ldap]]
  154. # The search base for finding users and groups
  155. ## base_dn="DC=mycompany,DC=com"
  156. # URL of the LDAP server
  157. ## ldap_url=ldap://auth.mycompany.com
  158. # A PEM-format file containing certificates for the CA's that
  159. # Hue will trust for authentication over TLS.
  160. # The certificate for the CA that signed the
  161. # LDAP server certificate must be included among these certificates.
  162. # See more here http://www.openldap.org/doc/admin24/tls.html.
  163. ## ldap_cert=
  164. ## use_start_tls=true
  165. # Distinguished name of the user to bind as -- not necessary if the LDAP server
  166. # supports anonymous searches
  167. ## bind_dn="CN=ServiceAccount,DC=mycompany,DC=com"
  168. # Password of the bind user -- not necessary if the LDAP server supports
  169. # anonymous searches
  170. ## bind_password=
  171. # Pattern for searching for usernames -- Use <username> for the parameter
  172. # For use when using LdapBackend for Hue authentication
  173. ## ldap_username_pattern="uid=<username>,ou=People,dc=mycompany,dc=com"
  174. # Create users in Hue when they try to login with their LDAP credentials
  175. # For use when using LdapBackend for Hue authentication
  176. ## create_users_on_login = true
  177. # Ignore the case of usernames when searching for existing users in Hue.
  178. ## ignore_username_case=false
  179. # Force usernames to lowercase when creating new users from LDAP.
  180. ## force_username_lowercase=false
  181. # Use search bind authentication.
  182. ## search_bind_authentication=true
  183. # Choose which kind of subgrouping to use: nested or suboordinate (deprecated).
  184. ## subgroups=suboordinate
  185. # Define the number of levels to search for nested members.
  186. ## nested_members_search_depth=10
  187. [[[users]]]
  188. # Base filter for searching for users
  189. ## user_filter="objectclass=*"
  190. # The username attribute in the LDAP schema
  191. ## user_name_attr=sAMAccountName
  192. [[[groups]]]
  193. # Base filter for searching for groups
  194. ## group_filter="objectclass=*"
  195. # The group name attribute in the LDAP schema
  196. ## group_name_attr=cn
  197. # The attribute of the group object which identifies the members of the group
  198. ## group_member_attr=members
  199. [[[ldap_servers]]]
  200. ## [[[[mycompany]]]]
  201. # The search base for finding users and groups
  202. ## base_dn="DC=mycompany,DC=com"
  203. # URL of the LDAP server
  204. ## ldap_url=ldap://auth.mycompany.com
  205. # A PEM-format file containing certificates for the CA's that
  206. # Hue will trust for authentication over TLS.
  207. # The certificate for the CA that signed the
  208. # LDAP server certificate must be included among these certificates.
  209. # See more here http://www.openldap.org/doc/admin24/tls.html.
  210. ## ldap_cert=
  211. ## use_start_tls=true
  212. # Distinguished name of the user to bind as -- not necessary if the LDAP server
  213. # supports anonymous searches
  214. ## bind_dn="CN=ServiceAccount,DC=mycompany,DC=com"
  215. # Password of the bind user -- not necessary if the LDAP server supports
  216. # anonymous searches
  217. ## bind_password=
  218. # Pattern for searching for usernames -- Use <username> for the parameter
  219. # For use when using LdapBackend for Hue authentication
  220. ## ldap_username_pattern="uid=<username>,ou=People,dc=mycompany,dc=com"
  221. ## Use search bind authentication.
  222. ## search_bind_authentication=true
  223. ## [[[[[users]]]]]
  224. # Base filter for searching for users
  225. ## user_filter="objectclass=Person"
  226. # The username attribute in the LDAP schema
  227. ## user_name_attr=sAMAccountName
  228. ## [[[[[groups]]]]]
  229. # Base filter for searching for groups
  230. ## group_filter="objectclass=groupOfNames"
  231. # The username attribute in the LDAP schema
  232. ## group_name_attr=cn
  233. # Configuration options for specifying the Desktop Database. For more info,
  234. # see http://docs.djangoproject.com/en/1.4/ref/settings/#database-engine
  235. # ------------------------------------------------------------------------
  236. [[database]]
  237. # Database engine is typically one of:
  238. # postgresql_psycopg2, mysql, sqlite3 or oracle.
  239. #
  240. # Note that for sqlite3, 'name', below is a path to the filename. For other backends, it is the database name.
  241. # Note for Oracle, options={'threaded':true} must be set in order to avoid crashes.
  242. # Note for Oracle, you can use the Oracle Service Name by setting "port=0" and then "name=<host>:<port>/<service_name>".
  243. ## engine=sqlite3
  244. ## host=
  245. ## port=
  246. ## user=
  247. ## password=
  248. ## name=desktop/desktop.db
  249. ## options={}
  250. # Configuration options for specifying the Desktop session.
  251. # For more info, see https://docs.djangoproject.com/en/1.4/topics/http/sessions/
  252. # ------------------------------------------------------------------------
  253. [[session]]
  254. # The cookie containing the users' session ID will expire after this amount of time in seconds.
  255. # Default is 2 weeks.
  256. ## ttl=1209600
  257. # The cookie containing the users' session ID will be secure.
  258. # Should only be enabled with HTTPS.
  259. ## secure=false
  260. # The cookie containing the users' session ID will use the HTTP only flag.
  261. ## http_only=false
  262. # Use session-length cookies. Logs out the user when she closes the browser window.
  263. ## expire_at_browser_close=false
  264. # Configuration options for connecting to an external SMTP server
  265. # ------------------------------------------------------------------------
  266. [[smtp]]
  267. # The SMTP server information for email notification delivery
  268. host=localhost
  269. port=25
  270. user=
  271. password=
  272. # Whether to use a TLS (secure) connection when talking to the SMTP server
  273. tls=no
  274. # Default email address to use for various automated notification from Hue
  275. ## default_from_email=hue@localhost
  276. # Configuration options for Kerberos integration for secured Hadoop clusters
  277. # ------------------------------------------------------------------------
  278. [[kerberos]]
  279. # Path to Hue's Kerberos keytab file
  280. ## hue_keytab=
  281. # Kerberos principal name for Hue
  282. ## hue_principal=hue/hostname.foo.com
  283. # Path to kinit
  284. ## kinit_path=/path/to/kinit
  285. # Configuration options for using OAuthBackend (core) login
  286. # ------------------------------------------------------------------------
  287. [[oauth]]
  288. # The Consumer key of the application
  289. ## consumer_key=XXXXXXXXXXXXXXXXXXXXX
  290. # The Consumer secret of the application
  291. ## consumer_secret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  292. # The Request token URL
  293. ## request_token_url=https://api.twitter.com/oauth/request_token
  294. # The Access token URL
  295. ## access_token_url=https://api.twitter.com/oauth/access_token
  296. # The Authorize URL
  297. ## authenticate_url=https://api.twitter.com/oauth/authorize
  298. ###########################################################################
  299. # Settings to configure SAML
  300. ###########################################################################
  301. [libsaml]
  302. # Xmlsec1 binary path. This program should be executable by the user running Hue.
  303. ## xmlsec_binary=/usr/local/bin/xmlsec1
  304. # Entity ID for Hue acting as service provider.
  305. # Can also accept a pattern where '<base_url>' will be replaced with server URL base.
  306. ## entity_id="<base_url>/saml2/metadata/"
  307. # Create users from SSO on login.
  308. ## create_users_on_login=true
  309. # Required attributes to ask for from IdP.
  310. # This requires a comma separated list.
  311. ## required_attributes=uid
  312. # Optional attributes to ask for from IdP.
  313. # This requires a comma separated list.
  314. ## optional_attributes=
  315. # IdP metadata in the form of a file. This is generally an XML file containing metadata that the Identity Provider generates.
  316. ## metadata_file=
  317. # Private key to encrypt metadata with.
  318. ## key_file=
  319. # Signed certificate to send along with encrypted metadata.
  320. ## cert_file=
  321. # A mapping from attributes in the response from the IdP to django user attributes.
  322. ## user_attribute_mapping={'uid':'username'}
  323. # Have Hue initiated authn requests be signed and provide a certificate.
  324. ## authn_requests_signed=false
  325. # Have Hue initiated logout requests be signed and provide a certificate.
  326. ## logout_requests_signed=false
  327. ## Username can be sourced from 'attributes' or 'nameid'.
  328. ## username_source=attributes
  329. # Performs the logout or not.
  330. ## logout_enabled=true
  331. ###########################################################################
  332. # Settings to configure OPENID
  333. ###########################################################################
  334. [libopenid]
  335. # (Required) OpenId SSO endpoint url.
  336. ## server_endpoint_url=https://www.google.com/accounts/o8/id
  337. # OpenId 1.1 identity url prefix to be used instead of SSO endpoint url
  338. # This is only supported if you are using an OpenId 1.1 endpoint
  339. ## identity_url_prefix=https://app.onelogin.com/openid/your_company.com/
  340. # Create users from OPENID on login.
  341. ## create_users_on_login=true
  342. # Use email for username
  343. ## use_email_for_username=true
  344. ###########################################################################
  345. # Settings to configure OAuth
  346. ###########################################################################
  347. [liboauth]
  348. # NOTE:
  349. # To work, each of the active (i.e. uncommented) service must have
  350. # applications created on the social network.
  351. # Then the "consumer key" and "consumer secret" must be provided here.
  352. #
  353. # The addresses where to do so are:
  354. # Twitter: https://dev.twitter.com/apps
  355. # Google+ : https://cloud.google.com/
  356. # Facebook: https://developers.facebook.com/apps
  357. # Linkedin: https://www.linkedin.com/secure/developer
  358. #
  359. # Additionnaly, the following must be set in the application settings:
  360. # Twitter: Callback URL (aka Redirect URL) must be set to http://YOUR_HUE_IP_OR_DOMAIN_NAME/oauth/social_login/oauth_authenticated
  361. # Google+ : CONSENT SCREEN must have email address
  362. # Facebook: Sandbox Mode must be DISABLED
  363. # Linkedin: "In OAuth User Agreement", r_emailaddress is REQUIRED
  364. # The Consumer key of the application
  365. ## consumer_key_twitter=
  366. ## consumer_key_google=
  367. ## consumer_key_facebook=
  368. ## consumer_key_linkedin=
  369. # The Consumer secret of the application
  370. ## consumer_secret_twitter=
  371. ## consumer_secret_google=
  372. ## consumer_secret_facebook=
  373. ## consumer_secret_linkedin=
  374. # The Request token URL
  375. ## request_token_url_twitter=https://api.twitter.com/oauth/request_token
  376. ## request_token_url_google=https://accounts.google.com/o/oauth2/auth
  377. ## request_token_url_linkedin=https://www.linkedin.com/uas/oauth2/authorization
  378. ## request_token_url_facebook=https://graph.facebook.com/oauth/authorize
  379. # The Access token URL
  380. ## access_token_url_twitter=https://api.twitter.com/oauth/access_token
  381. ## access_token_url_google=https://accounts.google.com/o/oauth2/token
  382. ## access_token_url_facebook=https://graph.facebook.com/oauth/access_token
  383. ## access_token_url_linkedin=https://api.linkedin.com/uas/oauth2/accessToken
  384. # The Authenticate URL
  385. ## authenticate_url_twitter=https://api.twitter.com/oauth/authorize
  386. ## authenticate_url_google=https://www.googleapis.com/oauth2/v1/userinfo?access_token=
  387. ## authenticate_url_facebook=https://graph.facebook.com/me?access_token=
  388. ## authenticate_url_linkedin=https://api.linkedin.com/v1/people/~:(email-address)?format=json&oauth2_access_token=
  389. # Username Map. Json Hash format.
  390. # Replaces username parts in order to simplify usernames obtained
  391. # Example: {"@sub1.domain.com":"_S1", "@sub2.domain.com":"_S2"}
  392. # converts 'email@sub1.domain.com' to 'email_S1'
  393. ## username_map={}
  394. # Whitelisted domains (only applies to Google OAuth). CSV format.
  395. ## whitelisted_domains_google=
  396. ###########################################################################
  397. # Settings for the RDBMS application
  398. ###########################################################################
  399. [librdbms]
  400. # The RDBMS app can have any number of databases configured in the databases
  401. # section. A database is known by its section name
  402. # (IE sqlite, mysql, psql, and oracle in the list below).
  403. [[databases]]
  404. # sqlite configuration.
  405. ## [[[sqlite]]]
  406. # Name to show in the UI.
  407. ## nice_name=SQLite
  408. # For SQLite, name defines the path to the database.
  409. ## name=/tmp/sqlite.db
  410. # Database backend to use.
  411. ## engine=sqlite
  412. # Database options to send to the server when connecting.
  413. # https://docs.djangoproject.com/en/1.4/ref/databases/
  414. ## options={}
  415. # mysql, oracle, or postgresql configuration.
  416. ## [[[mysql]]]
  417. # Name to show in the UI.
  418. ## nice_name="My SQL DB"
  419. # For MySQL and PostgreSQL, name is the name of the database.
  420. # For Oracle, Name is instance of the Oracle server. For express edition
  421. # this is 'xe' by default.
  422. ## name=mysqldb
  423. # Database backend to use. This can be:
  424. # 1. mysql
  425. # 2. postgresql
  426. # 3. oracle
  427. ## engine=mysql
  428. # IP or hostname of the database to connect to.
  429. ## host=localhost
  430. # Port the database server is listening to. Defaults are:
  431. # 1. MySQL: 3306
  432. # 2. PostgreSQL: 5432
  433. # 3. Oracle Express Edition: 1521
  434. ## port=3306
  435. # Username to authenticate with when connecting to the database.
  436. ## user=example
  437. # Password matching the username to authenticate with when
  438. # connecting to the database.
  439. ## password=example
  440. # Database options to send to the server when connecting.
  441. # https://docs.djangoproject.com/en/1.4/ref/databases/
  442. ## options={}
  443. ###########################################################################
  444. # Settings to configure your Hadoop cluster.
  445. ###########################################################################
  446. [hadoop]
  447. # Configuration for HDFS NameNode
  448. # ------------------------------------------------------------------------
  449. [[hdfs_clusters]]
  450. # HA support by using HttpFs
  451. [[[default]]]
  452. # Enter the filesystem uri
  453. fs_defaultfs=hdfs://localhost:8020
  454. # NameNode logical name.
  455. ## logical_name=
  456. # Use WebHdfs/HttpFs as the communication mechanism.
  457. # Domain should be the NameNode or HttpFs host.
  458. # Default port is 14000 for HttpFs.
  459. ## webhdfs_url=http://localhost:50070/webhdfs/v1
  460. # Change this if your HDFS cluster is Kerberos-secured
  461. ## security_enabled=false
  462. # Default umask for file and directory creation, specified in an octal value.
  463. ## umask=022
  464. # Directory of the Hadoop configuration
  465. ## hadoop_conf_dir=$HADOOP_CONF_DIR when set or '/etc/hadoop/conf'
  466. # Configuration for YARN (MR2)
  467. # ------------------------------------------------------------------------
  468. [[yarn_clusters]]
  469. [[[default]]]
  470. # Enter the host on which you are running the ResourceManager
  471. ## resourcemanager_host=localhost
  472. # The port where the ResourceManager IPC listens on
  473. ## resourcemanager_port=8032
  474. # Whether to submit jobs to this cluster
  475. submit_to=True
  476. # Resource Manager logical name (required for HA)
  477. ## logical_name=
  478. # Change this if your YARN cluster is Kerberos-secured
  479. ## security_enabled=false
  480. # URL of the ResourceManager API
  481. ## resourcemanager_api_url=http://localhost:8088
  482. # URL of the ProxyServer API
  483. ## proxy_api_url=http://localhost:8088
  484. # URL of the HistoryServer API
  485. ## history_server_api_url=http://localhost:19888
  486. # In secure mode (HTTPS), if SSL certificates from Resource Manager's
  487. # Rest Server have to be verified against certificate authority
  488. ## ssl_cert_ca_verify=False
  489. # HA support by specifying multiple clusters
  490. # e.g.
  491. # [[[ha]]]
  492. # Resource Manager logical name (required for HA)
  493. ## logical_name=my-rm-name
  494. # Configuration for MapReduce (MR1)
  495. # ------------------------------------------------------------------------
  496. [[mapred_clusters]]
  497. [[[default]]]
  498. # Enter the host on which you are running the Hadoop JobTracker
  499. ## jobtracker_host=localhost
  500. # The port where the JobTracker IPC listens on
  501. ## jobtracker_port=8021
  502. # JobTracker logical name for HA
  503. ## logical_name=
  504. # Thrift plug-in port for the JobTracker
  505. ## thrift_port=9290
  506. # Whether to submit jobs to this cluster
  507. submit_to=False
  508. # Change this if your MapReduce cluster is Kerberos-secured
  509. ## security_enabled=false
  510. # HA support by specifying multiple clusters
  511. # e.g.
  512. # [[[ha]]]
  513. # Enter the logical name of the JobTrackers
  514. ## logical_name=my-jt-name
  515. ###########################################################################
  516. # Settings to configure the Filebrowser app
  517. ###########################################################################
  518. [filebrowser]
  519. # Location on local filesystem where the uploaded archives are temporary stored.
  520. ## archive_upload_tempdir=/tmp
  521. ###########################################################################
  522. # Settings to configure liboozie
  523. ###########################################################################
  524. [liboozie]
  525. # The URL where the Oozie service runs on. This is required in order for
  526. # users to submit jobs. Empty value disables the config check.
  527. ## oozie_url=http://localhost:11000/oozie
  528. # Requires FQDN in oozie_url if enabled
  529. ## security_enabled=false
  530. # Location on HDFS where the workflows/coordinator are deployed when submitted.
  531. ## remote_deployement_dir=/user/hue/oozie/deployments
  532. ###########################################################################
  533. # Settings to configure the Oozie app
  534. ###########################################################################
  535. [oozie]
  536. # Location on local FS where the examples are stored.
  537. ## local_data_dir=..../examples
  538. # Location on local FS where the data for the examples is stored.
  539. ## sample_data_dir=...thirdparty/sample_data
  540. # Location on HDFS where the oozie examples and workflows are stored.
  541. ## remote_data_dir=/user/hue/oozie/workspaces
  542. # Maximum of Oozie workflows or coodinators to retrieve in one API call.
  543. ## oozie_jobs_count=100
  544. # Use Cron format for defining the frequency of a Coordinator instead of the old frequency number/unit.
  545. ## enable_cron_scheduling=true
  546. ###########################################################################
  547. # Settings to configure Beeswax with Hive
  548. ###########################################################################
  549. [beeswax]
  550. # Host where HiveServer2 is running.
  551. # If Kerberos security is enabled, use fully-qualified domain name (FQDN).
  552. ## hive_server_host=localhost
  553. # Port where HiveServer2 Thrift server runs on.
  554. ## hive_server_port=10000
  555. # Hive configuration directory, where hive-site.xml is located
  556. ## hive_conf_dir=/etc/hive/conf
  557. # Timeout in seconds for thrift calls to Hive service
  558. ## server_conn_timeout=120
  559. # Choose whether Hue uses the GetLog() thrift call to retrieve Hive logs.
  560. # If false, Hue will use the FetchResults() thrift call instead.
  561. ## use_get_log_api=true
  562. # Set a LIMIT clause when browsing a partitioned table.
  563. # A positive value will be set as the LIMIT. If 0 or negative, do not set any limit.
  564. ## browse_partitioned_table_limit=250
  565. # A limit to the number of rows that can be downloaded from a query.
  566. # A value of -1 means there will be no limit.
  567. # A maximum of 65,000 is applied to XLS downloads.
  568. ## download_row_limit=1000000
  569. # Hue will try to close the Hive query when the user leaves the editor page.
  570. # This will free all the query resources in HiveServer2, but also make its results inaccessible.
  571. ## close_queries=false
  572. # Thrift version to use when communicating with HiveServer2
  573. ## thrift_version=5
  574. [[ssl]]
  575. # SSL communication enabled for this server.
  576. ## enabled=false
  577. # Path to Certificate Authority certificates.
  578. ## cacerts=/etc/hue/cacerts.pem
  579. # Path to the private key file.
  580. ## key=/etc/hue/key.pem
  581. # Path to the public certificate file.
  582. ## cert=/etc/hue/cert.pem
  583. # Choose whether Hue should validate certificates received from the server.
  584. ## validate=true
  585. ###########################################################################
  586. # Settings to configure Impala
  587. ###########################################################################
  588. [impala]
  589. # Host of the Impala Server (one of the Impalad)
  590. ## server_host=localhost
  591. # Port of the Impala Server
  592. ## server_port=21050
  593. # Kerberos principal
  594. ## impala_principal=impala/hostname.foo.com
  595. # Turn on/off impersonation mechanism when talking to Impala
  596. ## impersonation_enabled=False
  597. # Number of initial rows of a result set to ask Impala to cache in order
  598. # to support re-fetching them for downloading them.
  599. # Set to 0 for disabling the option and backward compatibility.
  600. ## querycache_rows=50000
  601. # Timeout in seconds for thrift calls
  602. ## server_conn_timeout=120
  603. # Hue will try to close the Impala query when the user leaves the editor page.
  604. # This will free all the query resources in Impala, but also make its results inaccessible.
  605. ## close_queries=true
  606. # If QUERY_TIMEOUT_S > 0, the query will be timed out (i.e. cancelled) if Impala does not do any work
  607. # (compute or send back results) for that query within QUERY_TIMEOUT_S seconds.
  608. ## query_timeout_s=600
  609. [[ssl]]
  610. # SSL communication enabled for this server.
  611. ## enabled=false
  612. # Path to Certificate Authority certificates.
  613. ## cacerts=/etc/hue/cacerts.pem
  614. # Path to the private key file.
  615. ## key=/etc/hue/key.pem
  616. # Path to the public certificate file.
  617. ## cert=/etc/hue/cert.pem
  618. # Choose whether Hue should validate certificates received from the server.
  619. ## validate=true
  620. ###########################################################################
  621. # Settings to configure Pig
  622. ###########################################################################
  623. [pig]
  624. # Location of piggybank.jar on local filesystem.
  625. ## local_sample_dir=/usr/share/hue/apps/pig/examples
  626. # Location piggybank.jar will be copied to in HDFS.
  627. ## remote_data_dir=/user/hue/pig/examples
  628. ###########################################################################
  629. # Settings to configure Sqoop
  630. ###########################################################################
  631. [sqoop]
  632. # For autocompletion, fill out the librdbms section.
  633. # Sqoop server URL
  634. ## server_url=http://localhost:12000/sqoop
  635. ###########################################################################
  636. # Settings to configure Proxy
  637. ###########################################################################
  638. [proxy]
  639. # Comma-separated list of regular expressions,
  640. # which match 'host:port' of requested proxy target.
  641. ## whitelist=(localhost|127\.0\.0\.1):(50030|50070|50060|50075)
  642. # Comma-separated list of regular expressions,
  643. # which match any prefix of 'host:port/path' of requested proxy target.
  644. # This does not support matching GET parameters.
  645. ## blacklist=
  646. ###########################################################################
  647. # Settings to configure HBase Browser
  648. ###########################################################################
  649. [hbase]
  650. # Comma-separated list of HBase Thrift servers for clusters in the format of '(name|host:port)'.
  651. # Use full hostname with security.
  652. ## hbase_clusters=(Cluster|localhost:9090)
  653. # HBase configuration directory, where hbase-site.xml is located.
  654. ## hbase_conf_dir=/etc/hbase/conf
  655. # Hard limit of rows or columns per row fetched before truncating.
  656. ## truncate_limit = 500
  657. # 'buffered' is the default of the HBase Thrift Server and supports security.
  658. # 'framed' can be used to chunk up responses,
  659. # which is useful when used in conjunction with the nonblocking server in Thrift.
  660. ## thrift_transport=buffered
  661. ###########################################################################
  662. # Settings to configure Solr Search
  663. ###########################################################################
  664. [search]
  665. # URL of the Solr Server
  666. ## solr_url=http://localhost:8983/solr/
  667. # Requires FQDN in solr_url if enabled
  668. ## security_enabled=false
  669. ## Query sent when no term is entered
  670. ## empty_query=*:*
  671. ###########################################################################
  672. # Settings to configure Solr Indexer
  673. ###########################################################################
  674. [indexer]
  675. # Location of the solrctl binary.
  676. ## solrctl_path=/usr/bin/solrctl
  677. # Zookeeper ensemble.
  678. ## solr_zk_ensemble=localhost:2181/solr
  679. ###########################################################################
  680. # Settings to configure Job Designer
  681. ###########################################################################
  682. [jobsub]
  683. # Location on local FS where examples and template are stored.
  684. ## local_data_dir=..../data
  685. # Location on local FS where sample data is stored
  686. ## sample_data_dir=...thirdparty/sample_data
  687. ###########################################################################
  688. # Settings to configure Job Browser.
  689. ###########################################################################
  690. [jobbrowser]
  691. # Share submitted jobs information with all users. If set to false,
  692. # submitted jobs are visible only to the owner and administrators.
  693. ## share_jobs=true
  694. ###########################################################################
  695. # Settings to configure the Zookeeper application.
  696. ###########################################################################
  697. [zookeeper]
  698. [[clusters]]
  699. [[[default]]]
  700. # Zookeeper ensemble. Comma separated list of Host/Port.
  701. # e.g. localhost:2181,localhost:2182,localhost:2183
  702. ## host_ports=localhost:2181
  703. # The URL of the REST contrib service (required for znode browsing)
  704. ## rest_url=http://localhost:9998
  705. ###########################################################################
  706. # Settings to configure the Spark application.
  707. ###########################################################################
  708. [spark]
  709. # URL of the REST Spark Job Server.
  710. ## server_url=http://localhost:8090/
  711. ###########################################################################
  712. # Settings for the User Admin application
  713. ###########################################################################
  714. [useradmin]
  715. # The name of the default user group that users will be a member of
  716. ## default_user_group=default
  717. [[password_policy]]
  718. # Set password policy to all users. The default policy requires password to be at least 8 characters long,
  719. # and contain both uppercase and lowercase letters, numbers, and special characters.
  720. ## is_enabled=false
  721. ## pwd_regex="^(?=.*?[A-Z])(?=(.*[a-z]){1,})(?=(.*[\d]){1,})(?=(.*[\W_]){1,}).{8,}$"
  722. ## pwd_hint="The password must be at least 8 characters long, and must contain both uppercase and lowercase letters, at least one number, and at least one special character."
  723. ## pwd_error_message="The password must be at least 8 characters long, and must contain both uppercase and lowercase letters, at least one number, and at least one special character."
  724. ###########################################################################
  725. # Settings for the Sentry lib
  726. ###########################################################################
  727. [libsentry]
  728. # Hostname or IP of server.
  729. ## hostname=localhost
  730. # Port the sentry service is running on.
  731. ## port=8038
  732. # Sentry configuration directory, where sentry-site.xml is located.
  733. ## sentry_conf_dir=/etc/sentry/conf