pseudo-distributed.ini.tmpl 31 KB

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