pseudo-distributed.ini.tmpl 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427
  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. # Set this to a random string, the longer the better.
  19. # This is used for secure hashing in the session store.
  20. secret_key=
  21. # Execute this script to produce the Django secret key. This will be used when
  22. # `secret_key` is not set.
  23. ## secret_key_script=
  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 database debug mode.
  32. ## database_logging=false
  33. # Whether to send debug messages from JavaScript to the server logs.
  34. send_dbug_messages=true
  35. # Enable or disable backtrace for server error
  36. ## http_500_debug_mode=true
  37. # Enable or disable memory profiling.
  38. ## memory_profiler=false
  39. # Server email for internal error messages
  40. ## django_server_email='hue@localhost.localdomain'
  41. # Email backend
  42. ## django_email_backend=django.core.mail.backends.smtp.EmailBackend
  43. # Webserver runs as this user
  44. ## server_user=hue
  45. ## server_group=hue
  46. # This should be the Hue admin and proxy user
  47. ## default_user=hue
  48. # This should be the hadoop cluster admin
  49. ## default_hdfs_superuser=hdfs
  50. # If set to false, runcpserver will not actually start the web server.
  51. # Used if Apache is being used as a WSGI container.
  52. ## enable_server=yes
  53. # Number of threads used by the CherryPy web server
  54. ## cherrypy_server_threads=40
  55. # Filename of SSL Certificate
  56. ## ssl_certificate=
  57. # Filename of SSL RSA Private Key
  58. ## ssl_private_key=
  59. # Filename of SSL Certificate Chain
  60. ## ssl_certificate_chain=
  61. # SSL certificate password
  62. ## ssl_password=
  63. # Execute this script to produce the SSL password. This will be used when `ssl_password` is not set.
  64. ## ssl_password_script=
  65. # List of allowed and disallowed ciphers in cipher list format.
  66. # See http://www.openssl.org/docs/apps/ciphers.html for more information on
  67. # cipher list format. This list is from
  68. # https://wiki.mozilla.org/Security/Server_Side_TLS v3.7 intermediate
  69. # recommendation, which should be compatible with Firefox 1, Chrome 1, IE 7,
  70. # Opera 5 and Safari 1.
  71. ## ssl_cipher_list=ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA
  72. # Path to default Certificate Authority certificates.
  73. ## ssl_cacerts=/etc/hue/cacerts.pem
  74. # Choose whether Hue should validate certificates received from the server.
  75. ## validate=true
  76. # Default LDAP/PAM/.. username and password of the hue user used for authentications with other services.
  77. # Inactive if password is empty.
  78. # e.g. LDAP pass-through authentication for HiveServer2 or Impala. Apps can override them individually.
  79. ## auth_username=hue
  80. ## auth_password=
  81. # Default encoding for site data
  82. ## default_site_encoding=utf-8
  83. # Help improve Hue with anonymous usage analytics.
  84. # Use Google Analytics to see how many times an application or specific section of an application is used, nothing more.
  85. ## collect_usage=true
  86. # Tile layer server URL for the Leaflet map charts
  87. # Read more on http://leafletjs.com/reference.html#tilelayer
  88. ## leaflet_tile_layer=http://{s}.tile.osm.org/{z}/{x}/{y}.png
  89. # The copyright message for the specified Leaflet maps Tile Layer
  90. ## leaflet_tile_layer_attribution='&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
  91. # X-Frame-Options HTTP header value. Use 'DENY' to deny framing completely
  92. ## http_x_frame_options=SAMEORIGIN
  93. # Enable X-Forwarded-Host header if the load balancer requires it.
  94. ## use_x_forwarded_host=false
  95. # Support for HTTPS termination at the load-balancer level with SECURE_PROXY_SSL_HEADER.
  96. ## secure_proxy_ssl_header=false
  97. # Comma-separated list of Django middleware classes to use.
  98. # See https://docs.djangoproject.com/en/1.4/ref/middleware/ for more details on middlewares in Django.
  99. ## middleware=desktop.auth.backend.LdapSynchronizationBackend
  100. # Comma-separated list of regular expressions, which match the redirect URL.
  101. # For example, to restrict to your local domain and FQDN, the following value can be used:
  102. # ^\/.*$,^http:\/\/www.mydomain.com\/.*$
  103. ## redirect_whitelist=^\/.*$
  104. # Comma separated list of apps to not load at server startup.
  105. # e.g.: pig,zookeeper
  106. ## app_blacklist=
  107. # The directory where to store the auditing logs. Auditing is disable if the value is empty.
  108. # e.g. /var/log/hue/audit.log
  109. ## audit_event_log_dir=
  110. # Size in KB/MB/GB for audit log to rollover.
  111. ## audit_log_max_file_size=100MB
  112. # A json file containing a list of log redaction rules for cleaning sensitive data
  113. # from log files. It is defined as:
  114. #
  115. # {
  116. # "version": 1,
  117. # "rules": [
  118. # {
  119. # "description": "This is the first rule",
  120. # "trigger": "triggerstring 1",
  121. # "search": "regex 1",
  122. # "replace": "replace 1"
  123. # },
  124. # {
  125. # "description": "This is the second rule",
  126. # "trigger": "triggerstring 2",
  127. # "search": "regex 2",
  128. # "replace": "replace 2"
  129. # }
  130. # ]
  131. # }
  132. #
  133. # Redaction works by searching a string for the [TRIGGER] string. If found,
  134. # the [REGEX] is used to replace sensitive information with the
  135. # [REDACTION_MASK]. If specified with `log_redaction_string`, the
  136. # `log_redaction_string` rules will be executed after the
  137. # `log_redaction_file` rules.
  138. #
  139. # For example, here is a file that would redact passwords and social security numbers:
  140. # {
  141. # "version": 1,
  142. # "rules": [
  143. # {
  144. # "description": "Redact passwords",
  145. # "trigger": "password",
  146. # "search": "password=\".*\"",
  147. # "replace": "password=\"???\""
  148. # },
  149. # {
  150. # "description": "Redact social security numbers",
  151. # "trigger": "",
  152. # "search": "\d{3}-\d{2}-\d{4}",
  153. # "replace": "XXX-XX-XXXX"
  154. # }
  155. # ]
  156. # }
  157. ## log_redaction_file=
  158. # Comma separated list of strings representing the host/domain names that the Hue server can serve.
  159. # e.g.: localhost,domain1,*
  160. ## allowed_hosts=*
  161. # Administrators
  162. # ----------------
  163. [[django_admins]]
  164. ## [[[admin1]]]
  165. ## name=john
  166. ## email=john@doe.com
  167. # UI customizations
  168. # -------------------
  169. [[custom]]
  170. # Top banner HTML code
  171. # e.g. <H2>Test Lab A2 Hue Services</H2>
  172. ## banner_top_html=
  173. # Login splash HTML code
  174. # e.g. WARNING: You are required to have authorization before you proceed
  175. ## login_splash_html=
  176. # Cache timeout in milliseconds for the assist, autocomplete, etc.
  177. # defaults to 86400000 (1 day), set to 0 to disable caching
  178. ## cacheable_ttl=86400000
  179. # Configuration options for user authentication into the web application
  180. # ------------------------------------------------------------------------
  181. [[auth]]
  182. # Authentication backend. Common settings are:
  183. # - django.contrib.auth.backends.ModelBackend (entirely Django backend)
  184. # - desktop.auth.backend.AllowAllBackend (allows everyone)
  185. # - desktop.auth.backend.AllowFirstUserDjangoBackend
  186. # (Default. Relies on Django and user manager, after the first login)
  187. # - desktop.auth.backend.LdapBackend
  188. # - desktop.auth.backend.PamBackend
  189. # - desktop.auth.backend.SpnegoDjangoBackend
  190. # - desktop.auth.backend.RemoteUserDjangoBackend
  191. # - libsaml.backend.SAML2Backend
  192. # - libopenid.backend.OpenIDBackend
  193. # - liboauth.backend.OAuthBackend
  194. # (New oauth, support Twitter, Facebook, Google+ and Linkedin
  195. # Multiple Authentication backends are supported by specifying a comma-separated list in order of priority.
  196. # However, in order to enable OAuthBackend, it must be the ONLY backend configured.
  197. ## backend=desktop.auth.backend.AllowFirstUserDjangoBackend
  198. # Class which defines extra accessor methods for User objects.
  199. ## user_aug=desktop.auth.backend.DefaultUserAugmentor
  200. # The service to use when querying PAM.
  201. ## pam_service=login
  202. # When using the desktop.auth.backend.RemoteUserDjangoBackend, this sets
  203. # the normalized name of the header that contains the remote user.
  204. # The HTTP header in the request is converted to a key by converting
  205. # all characters to uppercase, replacing any hyphens with underscores
  206. # and adding an HTTP_ prefix to the name. So, for example, if the header
  207. # is called Remote-User that would be configured as HTTP_REMOTE_USER
  208. #
  209. # Defaults to HTTP_REMOTE_USER
  210. ## remote_user_header=HTTP_REMOTE_USER
  211. # Ignore the case of usernames when searching for existing users.
  212. # Supported in remoteUserDjangoBackend and SpnegoDjangoBackend
  213. ## ignore_username_case=true
  214. # Ignore the case of usernames when searching for existing users to authenticate with.
  215. # Supported in remoteUserDjangoBackend and SpnegoDjangoBackend
  216. ## force_username_lowercase=true
  217. # Users will expire after they have not logged in for 'n' amount of seconds.
  218. # A negative number means that users will never expire.
  219. ## expires_after=-1
  220. # Apply 'expires_after' to superusers.
  221. ## expire_superusers=true
  222. # Users will automatically be logged out after 'n' seconds of inactivity.
  223. # A negative number means that idle sessions will not be timed out.
  224. idle_session_timeout=-1
  225. # Force users to change password on first login with desktop.auth.backend.AllowFirstUserDjangoBackend
  226. ## change_default_password=false
  227. # Number of login attempts allowed before a record is created for failed logins
  228. ## login_failure_limit=3
  229. # After number of allowed login attempts are exceeded, do we lock out this IP and optionally user agent?
  230. ## login_lock_out_at_failure=false
  231. # If set, defines period of inactivity in seconds after which failed logins will be forgotten
  232. ## login_cooloff_time=60
  233. # If True, lock out based on IP and browser user agent
  234. ## login_lock_out_by_combination_browser_user_agent_and_ip=false
  235. # If True, lock out based on IP and user
  236. ## login_lock_out_by_combination_user_and_ip=false
  237. # Configuration options for connecting to LDAP and Active Directory
  238. # -------------------------------------------------------------------
  239. [[ldap]]
  240. # The search base for finding users and groups
  241. ## base_dn="DC=mycompany,DC=com"
  242. # URL of the LDAP server
  243. ## ldap_url=ldap://auth.mycompany.com
  244. # The NT domain used for LDAP authentication
  245. ## nt_domain=mycompany.com
  246. # A PEM-format file containing certificates for the CA's that
  247. # Hue will trust for authentication over TLS.
  248. # The certificate for the CA that signed the
  249. # LDAP server certificate must be included among these certificates.
  250. # See more here http://www.openldap.org/doc/admin24/tls.html.
  251. ## ldap_cert=
  252. ## use_start_tls=true
  253. # Distinguished name of the user to bind as -- not necessary if the LDAP server
  254. # supports anonymous searches
  255. ## bind_dn="CN=ServiceAccount,DC=mycompany,DC=com"
  256. # Password of the bind user -- not necessary if the LDAP server supports
  257. # anonymous searches
  258. ## bind_password=
  259. # Execute this script to produce the bind user password. This will be used
  260. # when `bind_password` is not set.
  261. ## bind_password_script=
  262. # Pattern for searching for usernames -- Use <username> for the parameter
  263. # For use when using LdapBackend for Hue authentication
  264. ## ldap_username_pattern="uid=<username>,ou=People,dc=mycompany,dc=com"
  265. # Create users in Hue when they try to login with their LDAP credentials
  266. # For use when using LdapBackend for Hue authentication
  267. ## create_users_on_login = true
  268. # Synchronize a users groups when they login
  269. ## sync_groups_on_login=false
  270. # Ignore the case of usernames when searching for existing users in Hue.
  271. ## ignore_username_case=true
  272. # Force usernames to lowercase when creating new users from LDAP.
  273. ## force_username_lowercase=true
  274. # Use search bind authentication.
  275. ## search_bind_authentication=true
  276. # Choose which kind of subgrouping to use: nested or suboordinate (deprecated).
  277. ## subgroups=suboordinate
  278. # Define the number of levels to search for nested members.
  279. ## nested_members_search_depth=10
  280. # Whether or not to follow referrals
  281. ## follow_referrals=false
  282. # Enable python-ldap debugging.
  283. ## debug=false
  284. # Sets the debug level within the underlying LDAP C lib.
  285. ## debug_level=255
  286. # Possible values for trace_level are 0 for no logging, 1 for only logging the method calls with arguments,
  287. # 2 for logging the method calls with arguments and the complete results and 9 for also logging the traceback of method calls.
  288. ## trace_level=0
  289. [[[users]]]
  290. # Base filter for searching for users
  291. ## user_filter="objectclass=*"
  292. # The username attribute in the LDAP schema
  293. ## user_name_attr=sAMAccountName
  294. [[[groups]]]
  295. # Base filter for searching for groups
  296. ## group_filter="objectclass=*"
  297. # The group name attribute in the LDAP schema
  298. ## group_name_attr=cn
  299. # The attribute of the group object which identifies the members of the group
  300. ## group_member_attr=members
  301. [[[ldap_servers]]]
  302. ## [[[[mycompany]]]]
  303. # The search base for finding users and groups
  304. ## base_dn="DC=mycompany,DC=com"
  305. # URL of the LDAP server
  306. ## ldap_url=ldap://auth.mycompany.com
  307. # The NT domain used for LDAP authentication
  308. ## nt_domain=mycompany.com
  309. # A PEM-format file containing certificates for the CA's that
  310. # Hue will trust for authentication over TLS.
  311. # The certificate for the CA that signed the
  312. # LDAP server certificate must be included among these certificates.
  313. # See more here http://www.openldap.org/doc/admin24/tls.html.
  314. ## ldap_cert=
  315. ## use_start_tls=true
  316. # Distinguished name of the user to bind as -- not necessary if the LDAP server
  317. # supports anonymous searches
  318. ## bind_dn="CN=ServiceAccount,DC=mycompany,DC=com"
  319. # Password of the bind user -- not necessary if the LDAP server supports
  320. # anonymous searches
  321. ## bind_password=
  322. # Execute this script to produce the bind user password. This will be used
  323. # when `bind_password` is not set.
  324. ## bind_password_script=
  325. # Pattern for searching for usernames -- Use <username> for the parameter
  326. # For use when using LdapBackend for Hue authentication
  327. ## ldap_username_pattern="uid=<username>,ou=People,dc=mycompany,dc=com"
  328. ## Use search bind authentication.
  329. ## search_bind_authentication=true
  330. # Whether or not to follow referrals
  331. ## follow_referrals=false
  332. # Enable python-ldap debugging.
  333. ## debug=false
  334. # Sets the debug level within the underlying LDAP C lib.
  335. ## debug_level=255
  336. # Possible values for trace_level are 0 for no logging, 1 for only logging the method calls with arguments,
  337. # 2 for logging the method calls with arguments and the complete results and 9 for also logging the traceback of method calls.
  338. ## trace_level=0
  339. ## [[[[[users]]]]]
  340. # Base filter for searching for users
  341. ## user_filter="objectclass=Person"
  342. # The username attribute in the LDAP schema
  343. ## user_name_attr=sAMAccountName
  344. ## [[[[[groups]]]]]
  345. # Base filter for searching for groups
  346. ## group_filter="objectclass=groupOfNames"
  347. # The username attribute in the LDAP schema
  348. ## group_name_attr=cn
  349. # Configuration options for specifying the Desktop Database. For more info,
  350. # see http://docs.djangoproject.com/en/1.4/ref/settings/#database-engine
  351. # ------------------------------------------------------------------------
  352. [[database]]
  353. # Database engine is typically one of:
  354. # postgresql_psycopg2, mysql, sqlite3 or oracle.
  355. #
  356. # Note that for sqlite3, 'name', below is a path to the filename. For other backends, it is the database name.
  357. # Note for Oracle, options={"threaded":true} must be set in order to avoid crashes.
  358. # Note for Oracle, you can use the Oracle Service Name by setting "port=0" and then "name=<host>:<port>/<service_name>".
  359. # Note for MariaDB use the 'mysql' engine.
  360. ## engine=sqlite3
  361. ## host=
  362. ## port=
  363. ## user=
  364. ## password=
  365. ## name=desktop/desktop.db
  366. ## options={}
  367. # Configuration options for specifying the Desktop session.
  368. # For more info, see https://docs.djangoproject.com/en/1.4/topics/http/sessions/
  369. # ------------------------------------------------------------------------
  370. [[session]]
  371. # The cookie containing the users' session ID will expire after this amount of time in seconds.
  372. # Default is 2 weeks.
  373. ## ttl=1209600
  374. # The cookie containing the users' session ID will be secure.
  375. # Should only be enabled with HTTPS.
  376. ## secure=false
  377. # The cookie containing the users' session ID will use the HTTP only flag.
  378. ## http_only=true
  379. # Use session-length cookies. Logs out the user when she closes the browser window.
  380. ## expire_at_browser_close=false
  381. # Configuration options for connecting to an external SMTP server
  382. # ------------------------------------------------------------------------
  383. [[smtp]]
  384. # The SMTP server information for email notification delivery
  385. host=localhost
  386. port=25
  387. user=
  388. password=
  389. # Whether to use a TLS (secure) connection when talking to the SMTP server
  390. tls=no
  391. # Default email address to use for various automated notification from Hue
  392. ## default_from_email=hue@localhost
  393. # Configuration options for Kerberos integration for secured Hadoop clusters
  394. # ------------------------------------------------------------------------
  395. [[kerberos]]
  396. # Path to Hue's Kerberos keytab file
  397. ## hue_keytab=
  398. # Kerberos principal name for Hue
  399. ## hue_principal=hue/hostname.foo.com
  400. # Path to kinit
  401. ## kinit_path=/path/to/kinit
  402. # Configuration options for using OAuthBackend (Core) login
  403. # ------------------------------------------------------------------------
  404. [[oauth]]
  405. # The Consumer key of the application
  406. ## consumer_key=XXXXXXXXXXXXXXXXXXXXX
  407. # The Consumer secret of the application
  408. ## consumer_secret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  409. # The Request token URL
  410. ## request_token_url=https://api.twitter.com/oauth/request_token
  411. # The Access token URL
  412. ## access_token_url=https://api.twitter.com/oauth/access_token
  413. # The Authorize URL
  414. ## authenticate_url=https://api.twitter.com/oauth/authorize
  415. # Configuration options for Metrics
  416. # ------------------------------------------------------------------------
  417. [[metrics]]
  418. # Enable the metrics URL "/desktop/metrics"
  419. ## enable_web_metrics=True
  420. # If specified, Hue will write metrics to this file.
  421. ## location=/var/log/hue/metrics.json
  422. # Time in milliseconds on how frequently to collect metrics
  423. ## collection_interval=30000
  424. ###########################################################################
  425. # Settings to configure the snippets available in the Notebook
  426. ###########################################################################
  427. [notebook]
  428. ## Base URL to Remote GitHub Server
  429. # github_remote_url=https://github.com
  430. ## Base URL to GitHub API
  431. # github_api_url=https://api.github.com
  432. ## Client ID for Authorized GitHub Application
  433. # github_client_id=
  434. ## Client Secret for Authorized GitHub Application
  435. # github_client_secret=
  436. # One entry for each type of snippet. The first 5 will appear in the wheel.
  437. [[interpreters]]
  438. # Define the name and how to connect and execute the language.
  439. [[[hive]]]
  440. # The name of the snippet.
  441. name=Hive
  442. # The backend connection to use to communicate with the server.
  443. interface=hiveserver2
  444. [[[impala]]]
  445. name=Impala
  446. interface=hiveserver2
  447. # [[[sparksql]]]
  448. # name=SparkSql
  449. # interface=hiveserver2
  450. [[[spark]]]
  451. name=Scala
  452. interface=livy
  453. [[[pyspark]]]
  454. name=PySpark
  455. interface=livy
  456. [[[r]]]
  457. name=R
  458. interface=livy
  459. [[[jar]]]
  460. name=Spark Submit Jar
  461. interface=livy-batch
  462. [[[py]]]
  463. name=Spark Submit Python
  464. interface=livy-batch
  465. [[[pig]]]
  466. name=Pig
  467. interface=pig
  468. [[[text]]]
  469. name=Text
  470. interface=text
  471. [[[markdown]]]
  472. name=Markdown
  473. interface=text
  474. [[[mysql]]]
  475. name = MySQL
  476. interface=rdbms
  477. [[[sqlite]]]
  478. name = SQLite
  479. interface=rdbms
  480. [[[postgresql]]]
  481. name = PostgreSQL
  482. interface=rdbms
  483. [[[oracle]]]
  484. name = Oracle
  485. interface=rdbms
  486. # [[[mysql]]]
  487. # name=MySql JDBC
  488. # interface=jdbc
  489. # ## Specific options for connecting to the server.
  490. # ## The JDBC connectors, e.g. mysql.jar, need to be in the CLASSPATH environment variable.
  491. # ## If 'user' and 'password' are omitted, they will be prompted in the UI.
  492. # options='{"url": "jdbc:mysql://localhost:3306/hue", "driver": "com.mysql.jdbc.Driver", "user": "root", "password": "root"}'
  493. ## Main flag to override the automatic starting of the DBProxy server.
  494. # enable_dbproxy_server=true
  495. ###########################################################################
  496. # Settings to configure your Hadoop cluster.
  497. ###########################################################################
  498. [hadoop]
  499. # Configuration for HDFS NameNode
  500. # ------------------------------------------------------------------------
  501. [[hdfs_clusters]]
  502. # HA support by using HttpFs
  503. [[[default]]]
  504. # Enter the filesystem uri
  505. fs_defaultfs=hdfs://localhost:8020
  506. # NameNode logical name.
  507. ## logical_name=
  508. # Use WebHdfs/HttpFs as the communication mechanism.
  509. # Domain should be the NameNode or HttpFs host.
  510. # Default port is 14000 for HttpFs.
  511. ## webhdfs_url=http://localhost:50070/webhdfs/v1
  512. # Change this if your HDFS cluster is Kerberos-secured
  513. ## security_enabled=false
  514. # In secure mode (HTTPS), if SSL certificates from YARN Rest APIs
  515. # have to be verified against certificate authority
  516. ## ssl_cert_ca_verify=True
  517. # Directory of the Hadoop configuration
  518. ## hadoop_conf_dir=$HADOOP_CONF_DIR when set or '/etc/hadoop/conf'
  519. # Configuration for YARN (MR2)
  520. # ------------------------------------------------------------------------
  521. [[yarn_clusters]]
  522. [[[default]]]
  523. # Enter the host on which you are running the ResourceManager
  524. ## resourcemanager_host=localhost
  525. # The port where the ResourceManager IPC listens on
  526. ## resourcemanager_port=8032
  527. # Whether to submit jobs to this cluster
  528. submit_to=True
  529. # Resource Manager logical name (required for HA)
  530. ## logical_name=
  531. # Change this if your YARN cluster is Kerberos-secured
  532. ## security_enabled=false
  533. # URL of the ResourceManager API
  534. ## resourcemanager_api_url=http://localhost:8088
  535. # URL of the ProxyServer API
  536. ## proxy_api_url=http://localhost:8088
  537. # URL of the HistoryServer API
  538. ## history_server_api_url=http://localhost:19888
  539. # In secure mode (HTTPS), if SSL certificates from YARN Rest APIs
  540. # have to be verified against certificate authority
  541. ## ssl_cert_ca_verify=True
  542. # HA support by specifying multiple clusters.
  543. # Redefine different properties there.
  544. # e.g.
  545. # [[[ha]]]
  546. # Resource Manager logical name (required for HA)
  547. ## logical_name=my-rm-name
  548. # Un-comment to enable
  549. ## submit_to=True
  550. # URL of the ResourceManager API
  551. ## resourcemanager_api_url=http://localhost:8088
  552. # ...
  553. # Configuration for MapReduce (MR1)
  554. # ------------------------------------------------------------------------
  555. [[mapred_clusters]]
  556. [[[default]]]
  557. # Enter the host on which you are running the Hadoop JobTracker
  558. ## jobtracker_host=localhost
  559. # The port where the JobTracker IPC listens on
  560. ## jobtracker_port=8021
  561. # JobTracker logical name for HA
  562. ## logical_name=
  563. # Thrift plug-in port for the JobTracker
  564. ## thrift_port=9290
  565. # Whether to submit jobs to this cluster
  566. submit_to=False
  567. # Change this if your MapReduce cluster is Kerberos-secured
  568. ## security_enabled=false
  569. # HA support by specifying multiple clusters
  570. # e.g.
  571. # [[[ha]]]
  572. # Enter the logical name of the JobTrackers
  573. ## logical_name=my-jt-name
  574. ###########################################################################
  575. # Settings to configure Beeswax with Hive
  576. ###########################################################################
  577. [beeswax]
  578. # Host where HiveServer2 is running.
  579. # If Kerberos security is enabled, use fully-qualified domain name (FQDN).
  580. ## hive_server_host=localhost
  581. # Port where HiveServer2 Thrift server runs on.
  582. ## hive_server_port=10000
  583. # Hive configuration directory, where hive-site.xml is located
  584. ## hive_conf_dir=/etc/hive/conf
  585. # Timeout in seconds for thrift calls to Hive service
  586. ## server_conn_timeout=120
  587. # Choose whether to use the old GetLog() thrift call from before Hive 0.14 to retrieve the logs.
  588. # If false, use the FetchResults() thrift call from Hive 1.0 or more instead.
  589. ## use_get_log_api=false
  590. # Limit the number of partitions that can be listed.
  591. ## list_partitions_limit=10000
  592. # The maximum number of partitions that will be included in the SELECT * LIMIT sample query for partitioned tables.
  593. ## query_partitions_limit=10
  594. # A limit to the number of rows that can be downloaded from a query.
  595. # A value of -1 means there will be no limit.
  596. # A maximum of 30,000 is applied to XLS downloads.
  597. ## download_row_limit=1000000
  598. # Hue will try to close the Hive query when the user leaves the editor page.
  599. # This will free all the query resources in HiveServer2, but also make its results inaccessible.
  600. ## close_queries=false
  601. # Thrift version to use when communicating with HiveServer2.
  602. # New column format is from version 7.
  603. ## thrift_version=7
  604. # A comma-separated list of white-listed Hive configuration properties that users are authorized to set.
  605. # config_whitelist=hive.map.aggr,hive.exec.compress.output,hive.exec.parallel,hive.execution.engine,mapreduce.job.queuename
  606. [[ssl]]
  607. # Path to Certificate Authority certificates.
  608. ## cacerts=/etc/hue/cacerts.pem
  609. # Choose whether Hue should validate certificates received from the server.
  610. ## validate=true
  611. # Override the default desktop username and password of the hue user used for authentications with other services.
  612. # e.g. Used for LDAP/PAM pass-through authentication.
  613. ## auth_username=hue
  614. ## auth_password=
  615. # Choose whether to show the new SQL editor.
  616. ## use_new_editor=true
  617. ###########################################################################
  618. # Settings to configure Impala
  619. ###########################################################################
  620. [impala]
  621. # Host of the Impala Server (one of the Impalad)
  622. ## server_host=localhost
  623. # Port of the Impala Server
  624. ## server_port=21050
  625. # Kerberos principal
  626. ## impala_principal=impala/hostname.foo.com
  627. # Turn on/off impersonation mechanism when talking to Impala
  628. ## impersonation_enabled=False
  629. # Number of initial rows of a result set to ask Impala to cache in order
  630. # to support re-fetching them for downloading them.
  631. # Set to 0 for disabling the option and backward compatibility.
  632. ## querycache_rows=50000
  633. # Timeout in seconds for thrift calls
  634. ## server_conn_timeout=120
  635. # Hue will try to close the Impala query when the user leaves the editor page.
  636. # This will free all the query resources in Impala, but also make its results inaccessible.
  637. ## close_queries=true
  638. # If > 0, the query will be timed out (i.e. cancelled) if Impala does not do any work
  639. # (compute or send back results) for that query within QUERY_TIMEOUT_S seconds.
  640. ## query_timeout_s=600
  641. # If > 0, the session will be timed out (i.e. cancelled) if Impala does not do any work
  642. # (compute or send back results) for that session within QUERY_TIMEOUT_S seconds (default 12hours).
  643. ## session_timeout_s=43200
  644. [[ssl]]
  645. # SSL communication enabled for this server.
  646. ## enabled=false
  647. # Path to Certificate Authority certificates.
  648. ## cacerts=/etc/hue/cacerts.pem
  649. # Choose whether Hue should validate certificates received from the server.
  650. ## validate=true
  651. # Override the desktop default username and password of the hue user used for authentications with other services.
  652. # e.g. Used for LDAP/PAM pass-through authentication.
  653. ## auth_username=hue
  654. ## auth_password=
  655. ###########################################################################
  656. # Settings to configure the Spark application.
  657. ###########################################################################
  658. [spark]
  659. # Host address of the Livy Server.
  660. ## livy_server_host=localhost
  661. # Port of the Livy Server.
  662. ## livy_server_port=8998
  663. # Configure livy to start in local 'process' mode, or 'yarn' workers.
  664. ## livy_server_session_kind=process
  665. # If livy should use proxy users when submitting a job.
  666. ## livy_impersonation_enabled=true
  667. # Host of the Sql Server
  668. ## sql_server_host=localhost
  669. # Port of the Sql Server
  670. ## sql_server_port=10000
  671. ###########################################################################
  672. # Settings to configure the Oozie app
  673. ###########################################################################
  674. [oozie]
  675. # Location on local FS where the examples are stored.
  676. ## local_data_dir=..../examples
  677. # Location on local FS where the data for the examples is stored.
  678. ## sample_data_dir=...thirdparty/sample_data
  679. # Location on HDFS where the oozie examples and workflows are stored.
  680. ## remote_data_dir=/user/hue/oozie/workspaces
  681. # Maximum of Oozie workflows or coodinators to retrieve in one API call.
  682. ## oozie_jobs_count=50
  683. # Use Cron format for defining the frequency of a Coordinator instead of the old frequency number/unit.
  684. ## enable_cron_scheduling=true
  685. ###########################################################################
  686. # Settings to configure the Filebrowser app
  687. ###########################################################################
  688. [filebrowser]
  689. # Location on local filesystem where the uploaded archives are temporary stored.
  690. ## archive_upload_tempdir=/tmp
  691. # Show Download Button for HDFS file browser.
  692. ## show_download_button=false
  693. # Show Upload Button for HDFS file browser.
  694. ## show_upload_button=false
  695. ###########################################################################
  696. # Settings to configure Pig
  697. ###########################################################################
  698. [pig]
  699. # Location of piggybank.jar on local filesystem.
  700. ## local_sample_dir=/usr/share/hue/apps/pig/examples
  701. # Location piggybank.jar will be copied to in HDFS.
  702. ## remote_data_dir=/user/hue/pig/examples
  703. ###########################################################################
  704. # Settings to configure Sqoop2
  705. ###########################################################################
  706. [sqoop]
  707. # For autocompletion, fill out the librdbms section.
  708. # Sqoop server URL
  709. ## server_url=http://localhost:12000/sqoop
  710. # Path to configuration directory
  711. ## sqoop_conf_dir=/etc/sqoop2/conf
  712. ###########################################################################
  713. # Settings to configure Proxy
  714. ###########################################################################
  715. [proxy]
  716. # Comma-separated list of regular expressions,
  717. # which match 'host:port' of requested proxy target.
  718. ## whitelist=(localhost|127\.0\.0\.1):(50030|50070|50060|50075)
  719. # Comma-separated list of regular expressions,
  720. # which match any prefix of 'host:port/path' of requested proxy target.
  721. # This does not support matching GET parameters.
  722. ## blacklist=
  723. ###########################################################################
  724. # Settings to configure HBase Browser
  725. ###########################################################################
  726. [hbase]
  727. # Comma-separated list of HBase Thrift servers for clusters in the format of '(name|host:port)'.
  728. # Use full hostname with security.
  729. # If using Kerberos we assume GSSAPI SASL, not PLAIN.
  730. ## hbase_clusters=(Cluster|localhost:9090)
  731. # HBase configuration directory, where hbase-site.xml is located.
  732. ## hbase_conf_dir=/etc/hbase/conf
  733. # Hard limit of rows or columns per row fetched before truncating.
  734. ## truncate_limit = 500
  735. # 'buffered' is the default of the HBase Thrift Server and supports security.
  736. # 'framed' can be used to chunk up responses,
  737. # which is useful when used in conjunction with the nonblocking server in Thrift.
  738. ## thrift_transport=buffered
  739. ###########################################################################
  740. # Settings to configure Solr Search
  741. ###########################################################################
  742. [search]
  743. # URL of the Solr Server
  744. ## solr_url=http://localhost:8983/solr/
  745. # Requires FQDN in solr_url if enabled
  746. ## security_enabled=false
  747. ## Query sent when no term is entered
  748. ## empty_query=*:*
  749. # Use latest Solr 5.2+ features.
  750. ## latest=false
  751. ###########################################################################
  752. # Settings to configure Solr API lib
  753. ###########################################################################
  754. [libsolr]
  755. # Choose whether Hue should validate certificates received from the server.
  756. ## ssl_cert_ca_verify=true
  757. ###########################################################################
  758. # Settings to configure Solr Indexer
  759. ###########################################################################
  760. [indexer]
  761. # Location of the solrctl binary.
  762. ## solrctl_path=/usr/bin/solrctl
  763. ###########################################################################
  764. # Settings to configure Job Designer
  765. ###########################################################################
  766. [jobsub]
  767. # Location on local FS where examples and template are stored.
  768. ## local_data_dir=..../data
  769. # Location on local FS where sample data is stored
  770. ## sample_data_dir=...thirdparty/sample_data
  771. ###########################################################################
  772. # Settings to configure Job Browser.
  773. ###########################################################################
  774. [jobbrowser]
  775. # Share submitted jobs information with all users. If set to false,
  776. # submitted jobs are visible only to the owner and administrators.
  777. ## share_jobs=true
  778. # Whether to disalbe the job kill button for all users in the jobbrowser
  779. ## disable_killing_jobs=false
  780. ###########################################################################
  781. # Settings to configure Sentry / Security App.
  782. ###########################################################################
  783. [security]
  784. # Use Sentry API V1 for Hive.
  785. ## hive_v1=true
  786. # Use Sentry API V2 for Hive.
  787. ## hive_v2=false
  788. # Use Sentry API V2 for Solr.
  789. ## solr_v2=false
  790. ###########################################################################
  791. # Settings to configure the Zookeeper application.
  792. ###########################################################################
  793. [zookeeper]
  794. [[clusters]]
  795. [[[default]]]
  796. # Zookeeper ensemble. Comma separated list of Host/Port.
  797. # e.g. localhost:2181,localhost:2182,localhost:2183
  798. ## host_ports=localhost:2181
  799. # The URL of the REST contrib service (required for znode browsing).
  800. ## rest_url=http://localhost:9998
  801. # Name of Kerberos principal when using security.
  802. ## principal_name=zookeeper
  803. ###########################################################################
  804. # Settings for the User Admin application
  805. ###########################################################################
  806. [useradmin]
  807. # Default home directory permissions
  808. ## home_dir_permissions=0755
  809. # The name of the default user group that users will be a member of
  810. ## default_user_group=default
  811. [[password_policy]]
  812. # Set password policy to all users. The default policy requires password to be at least 8 characters long,
  813. # and contain both uppercase and lowercase letters, numbers, and special characters.
  814. ## is_enabled=false
  815. ## pwd_regex="^(?=.*?[A-Z])(?=(.*[a-z]){1,})(?=(.*[\d]){1,})(?=(.*[\W_]){1,}).{8,}$"
  816. ## 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."
  817. ## 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."
  818. ###########################################################################
  819. # Settings to configure liboozie
  820. ###########################################################################
  821. [liboozie]
  822. # The URL where the Oozie service runs on. This is required in order for
  823. # users to submit jobs. Empty value disables the config check.
  824. ## oozie_url=http://localhost:11000/oozie
  825. # Requires FQDN in oozie_url if enabled
  826. ## security_enabled=false
  827. # Location on HDFS where the workflows/coordinator are deployed when submitted.
  828. ## remote_deployement_dir=/user/hue/oozie/deployments
  829. ###########################################################################
  830. # Settings for the AWS lib
  831. ###########################################################################
  832. [aws]
  833. [[aws_accounts]]
  834. # Default AWS account
  835. [[[default]]]
  836. # AWS credentials
  837. ## access_key_id=
  838. ## secret_access_key=
  839. # Allow to use either environment variables or
  840. # EC2 InstanceProfile to retrieve AWS credentials.
  841. ## allow_environment_credentials=yes
  842. # AWS region to use
  843. ## region=us-east-1
  844. ###########################################################################
  845. # Settings for the Sentry lib
  846. ###########################################################################
  847. [libsentry]
  848. # Hostname or IP of server.
  849. ## hostname=localhost
  850. # Port the sentry service is running on.
  851. ## port=8038
  852. # Sentry configuration directory, where sentry-site.xml is located.
  853. ## sentry_conf_dir=/etc/sentry/conf
  854. ###########################################################################
  855. # Settings to configure the ZooKeeper Lib
  856. ###########################################################################
  857. [libzookeeper]
  858. # ZooKeeper ensemble. Comma separated list of Host/Port.
  859. # e.g. localhost:2181,localhost:2182,localhost:2183
  860. ## ensemble=localhost:2181
  861. # Name of Kerberos principal when using security.
  862. ## principal_name=zookeeper
  863. ###########################################################################
  864. # Settings for the RDBMS application
  865. ###########################################################################
  866. [librdbms]
  867. # The RDBMS app can have any number of databases configured in the databases
  868. # section. A database is known by its section name
  869. # (IE sqlite, mysql, psql, and oracle in the list below).
  870. [[databases]]
  871. # sqlite configuration.
  872. ## [[[sqlite]]]
  873. # Name to show in the UI.
  874. ## nice_name=SQLite
  875. # For SQLite, name defines the path to the database.
  876. ## name=/tmp/sqlite.db
  877. # Database backend to use.
  878. ## engine=sqlite
  879. # Database options to send to the server when connecting.
  880. # https://docs.djangoproject.com/en/1.4/ref/databases/
  881. ## options={}
  882. # mysql, oracle, or postgresql configuration.
  883. ## [[[mysql]]]
  884. # Name to show in the UI.
  885. ## nice_name="My SQL DB"
  886. # For MySQL and PostgreSQL, name is the name of the database.
  887. # For Oracle, Name is instance of the Oracle server. For express edition
  888. # this is 'xe' by default.
  889. ## name=mysqldb
  890. # Database backend to use. This can be:
  891. # 1. mysql
  892. # 2. postgresql
  893. # 3. oracle
  894. ## engine=mysql
  895. # IP or hostname of the database to connect to.
  896. ## host=localhost
  897. # Port the database server is listening to. Defaults are:
  898. # 1. MySQL: 3306
  899. # 2. PostgreSQL: 5432
  900. # 3. Oracle Express Edition: 1521
  901. ## port=3306
  902. # Username to authenticate with when connecting to the database.
  903. ## user=example
  904. # Password matching the username to authenticate with when
  905. # connecting to the database.
  906. ## password=example
  907. # Database options to send to the server when connecting.
  908. # https://docs.djangoproject.com/en/1.4/ref/databases/
  909. ## options={}
  910. ###########################################################################
  911. # Settings to configure SAML
  912. ###########################################################################
  913. [libsaml]
  914. # Xmlsec1 binary path. This program should be executable by the user running Hue.
  915. ## xmlsec_binary=/usr/local/bin/xmlsec1
  916. # Entity ID for Hue acting as service provider.
  917. # Can also accept a pattern where '<base_url>' will be replaced with server URL base.
  918. ## entity_id="<base_url>/saml2/metadata/"
  919. # Create users from SSO on login.
  920. ## create_users_on_login=true
  921. # Required attributes to ask for from IdP.
  922. # This requires a comma separated list.
  923. ## required_attributes=uid
  924. # Optional attributes to ask for from IdP.
  925. # This requires a comma separated list.
  926. ## optional_attributes=
  927. # IdP metadata in the form of a file. This is generally an XML file containing metadata that the Identity Provider generates.
  928. ## metadata_file=
  929. # Private key to encrypt metadata with.
  930. ## key_file=
  931. # Signed certificate to send along with encrypted metadata.
  932. ## cert_file=
  933. # Path to a file containing the password private key.
  934. ## key_file_password=/path/key
  935. # Execute this script to produce the private key password. This will be used when `key_file_password` is not set.
  936. ## key_file_password_script=/path/pwd.sh
  937. # A mapping from attributes in the response from the IdP to django user attributes.
  938. ## user_attribute_mapping={'uid': ('username', )}
  939. # Have Hue initiated authn requests be signed and provide a certificate.
  940. ## authn_requests_signed=false
  941. # Have Hue initiated logout requests be signed and provide a certificate.
  942. ## logout_requests_signed=false
  943. # Username can be sourced from 'attributes' or 'nameid'.
  944. ## username_source=attributes
  945. # Performs the logout or not.
  946. ## logout_enabled=true
  947. ###########################################################################
  948. # Settings to configure OpenID
  949. ###########################################################################
  950. [libopenid]
  951. # (Required) OpenId SSO endpoint url.
  952. ## server_endpoint_url=https://www.google.com/accounts/o8/id
  953. # OpenId 1.1 identity url prefix to be used instead of SSO endpoint url
  954. # This is only supported if you are using an OpenId 1.1 endpoint
  955. ## identity_url_prefix=https://app.onelogin.com/openid/your_company.com/
  956. # Create users from OPENID on login.
  957. ## create_users_on_login=true
  958. # Use email for username
  959. ## use_email_for_username=true
  960. ###########################################################################
  961. # Settings to configure OAuth
  962. ###########################################################################
  963. [liboauth]
  964. # NOTE:
  965. # To work, each of the active (i.e. uncommented) service must have
  966. # applications created on the social network.
  967. # Then the "consumer key" and "consumer secret" must be provided here.
  968. #
  969. # The addresses where to do so are:
  970. # Twitter: https://dev.twitter.com/apps
  971. # Google+ : https://cloud.google.com/
  972. # Facebook: https://developers.facebook.com/apps
  973. # Linkedin: https://www.linkedin.com/secure/developer
  974. #
  975. # Additionnaly, the following must be set in the application settings:
  976. # Twitter: Callback URL (aka Redirect URL) must be set to http://YOUR_HUE_IP_OR_DOMAIN_NAME/oauth/social_login/oauth_authenticated
  977. # Google+ : CONSENT SCREEN must have email address
  978. # Facebook: Sandbox Mode must be DISABLED
  979. # Linkedin: "In OAuth User Agreement", r_emailaddress is REQUIRED
  980. # The Consumer key of the application
  981. ## consumer_key_twitter=
  982. ## consumer_key_google=
  983. ## consumer_key_facebook=
  984. ## consumer_key_linkedin=
  985. # The Consumer secret of the application
  986. ## consumer_secret_twitter=
  987. ## consumer_secret_google=
  988. ## consumer_secret_facebook=
  989. ## consumer_secret_linkedin=
  990. # The Request token URL
  991. ## request_token_url_twitter=https://api.twitter.com/oauth/request_token
  992. ## request_token_url_google=https://accounts.google.com/o/oauth2/auth
  993. ## request_token_url_linkedin=https://www.linkedin.com/uas/oauth2/authorization
  994. ## request_token_url_facebook=https://graph.facebook.com/oauth/authorize
  995. # The Access token URL
  996. ## access_token_url_twitter=https://api.twitter.com/oauth/access_token
  997. ## access_token_url_google=https://accounts.google.com/o/oauth2/token
  998. ## access_token_url_facebook=https://graph.facebook.com/oauth/access_token
  999. ## access_token_url_linkedin=https://api.linkedin.com/uas/oauth2/accessToken
  1000. # The Authenticate URL
  1001. ## authenticate_url_twitter=https://api.twitter.com/oauth/authorize
  1002. ## authenticate_url_google=https://www.googleapis.com/oauth2/v1/userinfo?access_token=
  1003. ## authenticate_url_facebook=https://graph.facebook.com/me?access_token=
  1004. ## authenticate_url_linkedin=https://api.linkedin.com/v1/people/~:(email-address)?format=json&oauth2_access_token=
  1005. # Username Map. Json Hash format.
  1006. # Replaces username parts in order to simplify usernames obtained
  1007. # Example: {"@sub1.domain.com":"_S1", "@sub2.domain.com":"_S2"}
  1008. # converts 'email@sub1.domain.com' to 'email_S1'
  1009. ## username_map={}
  1010. # Whitelisted domains (only applies to Google OAuth). CSV format.
  1011. ## whitelisted_domains_google=
  1012. ###########################################################################
  1013. # Settings to configure Metadata
  1014. ###########################################################################
  1015. [metadata]
  1016. # For metadata tagging and enrichment features
  1017. [[optimizer]]
  1018. # For SQL query and table analysis
  1019. # Base URL to Optimizer API.
  1020. ## api_url=https://alpha.optimizer.cloudera.com
  1021. # The name of the product or group which will have API access to the emails associated with it.
  1022. ## product_name=hue
  1023. # A secret passphrase associated with the productName
  1024. ## product_secret=hue
  1025. # Execute this script to produce the product secret. This will be used when `product_secret` is not set.
  1026. ## product_secret_script=
  1027. # The email of the Optimizer account you want to associate with the Product.
  1028. ## email=hue@gethue.com
  1029. # The password associated with the Optimizer account you to associate with the Product.
  1030. ## email_password=hue
  1031. # Execute this script to produce the email password. This will be used when `email_password` is not set.
  1032. ## password_script=
  1033. # In secure mode (HTTPS), if Optimizer SSL certificates have to be verified against certificate authority.
  1034. ## ssl_cert_ca_verify=True
  1035. [[navigator]]
  1036. # For tagging tables, files and getting lineage of data.
  1037. # Navigator API URL with version
  1038. ## api_url=http://localhost:7187/api/v2
  1039. # Navigator API HTTP authentication username and password
  1040. # Override the desktop default username and password of the hue user used for authentications with other services.
  1041. # e.g. Used for LDAP/PAM pass-through authentication.
  1042. ## auth_username=hue
  1043. ## auth_password=