config_properties.js 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. /**
  19. * Defines service configuration properties.
  20. * name:
  21. * The name of the config property that is understood by Ambari server and agent.
  22. * E.g., "datanode_du_reserved"
  23. *
  24. * displayName:
  25. * The human-friendly display name of the config property.
  26. * E.g., "Reserved space for HDFS"
  27. *
  28. * description:
  29. * The description of the config property.
  30. * E.g., "Reserved space in GB per volume"
  31. *
  32. * defaultValue:
  33. * The default value of the config property.
  34. * E.g., "1"
  35. *
  36. * isReconfigurable:
  37. * Whether the config property can be reconfigured after it has been initially set and deployed.
  38. * If this is unspecified, true is assumed.
  39. * E.g., true, false
  40. *
  41. * isOverridable:
  42. * Whether the config property can be overridden by hosts.
  43. * If this is unspecified, true is assumed.
  44. *
  45. * isRequired:
  46. * Whether the config property is required or not.
  47. * If this is unspecified, true is assumed.
  48. * E.g., true, false
  49. *
  50. * displayType:
  51. * How the config property is to be rendered for user input.
  52. * If this is left unspecified, "string" is assumed
  53. * E.g., "string", "int", "float", "checkbox", "directories", "custom", "email", "masterHost", "slaveHosts"
  54. *
  55. * unit
  56. * The unit for the config property.
  57. * E.g., "ms", "MB", "bytes"
  58. *
  59. * serviceName:
  60. * The service that the config property belongs to.
  61. * E.g., "HDFS", "MAPREDUCE2", "ZOOKEEPER", etc.
  62. *
  63. * category: the category that the config property belongs to (used for grouping config properties in the UI).
  64. * if unspecified, "General" is assumed.
  65. * E.g., "General", "Advanced", "NameNode", "DataNode"
  66. *
  67. * index: the sequence number in category, that point to place where config located regarding all rest in category.
  68. * if unspecified, push to the end of array.
  69. * E.g., 0, 1, '2'
  70. */
  71. var App = require('app');
  72. require('config');
  73. module.exports =
  74. {
  75. "configProperties": [
  76. /**********************************************HDFS***************************************/
  77. {
  78. "id": "puppet var",
  79. "name": "namenode_host",
  80. "displayName": "NameNode host",
  81. "value": "",
  82. "defaultValue": "",
  83. "description": "The host that has been assigned to run NameNode",
  84. "displayType": "masterHost",
  85. "isOverridable": false,
  86. "isVisible": true,
  87. "domain": "global",
  88. "serviceName": "HDFS",
  89. "category": "NameNode",
  90. "index": 0
  91. },
  92. {
  93. "id": "puppet var",
  94. "name": "dfs_namenode_name_dir",
  95. "displayName": "NameNode directories",
  96. "description": "NameNode directories for HDFS to store the file system image",
  97. "defaultValue": "",
  98. "defaultDirectory": "/hadoop/hdfs/namenode",
  99. "displayType": "directories",
  100. "isOverridable": false,
  101. "isVisible": true,
  102. "domain": "global",
  103. "serviceName": "HDFS",
  104. "category": "NameNode",
  105. "index": 1
  106. },
  107. {
  108. "id": "puppet var",
  109. "name": "namenode_heapsize",
  110. "displayName": "NameNode Java heap size",
  111. "description": "Initial and maximum Java heap size for NameNode (Java options -Xms and -Xmx)",
  112. "defaultValue": "1024",
  113. "displayType": "int",
  114. "unit": "MB",
  115. "isOverridable": false,
  116. "isVisible": true,
  117. "domain": "global",
  118. "serviceName": "HDFS",
  119. "category": "NameNode",
  120. "index": 2
  121. },
  122. {
  123. "id": "puppet var",
  124. "name": "namenode_opt_newsize",
  125. "displayName": "NameNode new generation size",
  126. "description": "Default size of Java new generation for NameNode (Java option -XX:NewSize)",
  127. "defaultValue": "200",
  128. "displayType": "int",
  129. "unit": "MB",
  130. "isOverridable": false,
  131. "isVisible": true,
  132. "domain": "global",
  133. "serviceName": "HDFS",
  134. "category": "NameNode",
  135. "index": 3
  136. },
  137. {
  138. "id": "puppet var",
  139. "name": "snamenode_host",
  140. "displayName": "SNameNode host",
  141. "value": "",
  142. "defaultValue": "",
  143. "description": "The host that has been assigned to run SecondaryNameNode",
  144. "displayType": "masterHost",
  145. "isOverridable": false,
  146. "isVisible": true,
  147. "domain": "global",
  148. "serviceName": "HDFS",
  149. "category": "SNameNode",
  150. "index": 0
  151. },
  152. {
  153. "id": "puppet var",
  154. "name": "dfs_namenode_checkpoint_dir",
  155. "displayName": "SecondaryNameNode Checkpoint directory",
  156. "description": "Directory on the local filesystem where the Secondary NameNode should store the temporary images to merge",
  157. "defaultValue": "",
  158. "defaultDirectory": "/hadoop/hdfs/namesecondary",
  159. "displayType": "directory",
  160. "isOverridable": false,
  161. "isVisible": true,
  162. "domain": "global",
  163. "serviceName": "HDFS",
  164. "category": "SNameNode",
  165. "index": 1
  166. },
  167. {
  168. "id": "puppet var",
  169. "name": "datanode_hosts", //not in the schema. For UI purpose
  170. "displayName": "DataNode hosts",
  171. "value": "",
  172. "defaultValue": "",
  173. "description": "The hosts that have been assigned to run DataNode",
  174. "displayType": "slaveHosts",
  175. "isRequired": false,
  176. "isOverridable": false,
  177. "isVisible": true,
  178. "domain": "datanode-global",
  179. "serviceName": "HDFS",
  180. "category": "DataNode",
  181. "index": 0
  182. },
  183. {
  184. "id": "puppet var",
  185. "name": "dfs_datanode_data_dir",
  186. "displayName": "DataNode directories",
  187. "description": "DataNode directories for HDFS to store the data blocks",
  188. "defaultValue": "",
  189. "defaultDirectory": "/hadoop/hdfs/data",
  190. "displayType": "directories",
  191. "isVisible": true,
  192. "domain": "datanode-global",
  193. "serviceName": "HDFS",
  194. "category": "DataNode",
  195. "index": 1
  196. },
  197. {
  198. "id": "puppet var",
  199. "name": "dtnode_heapsize",
  200. "displayName": "DataNode maximum Java heap size",
  201. "description": "Maximum Java heap size for DataNode (Java option -Xmx)",
  202. "defaultValue": "1024",
  203. "displayType": "int",
  204. "unit": "MB",
  205. "isVisible": true,
  206. "domain": "datanode-global",
  207. "serviceName": "HDFS",
  208. "category": "DataNode",
  209. "index": 2
  210. },
  211. {
  212. "id": "puppet var",
  213. "name": "dfs_datanode_failed_volume_tolerated",
  214. "displayName": "DataNode volumes failure toleration",
  215. "description": "The number of volumes that are allowed to fail before a DataNode stops offering service",
  216. "defaultValue": "0",
  217. "displayType": "int",
  218. "isVisible": true,
  219. "domain": "datanode-global",
  220. "serviceName": "HDFS",
  221. "category": "DataNode",
  222. "index": 3
  223. },
  224. {
  225. "id": "puppet var",
  226. "name": "dfs_webhdfs_enabled",
  227. "displayName": "WebHDFS enabled",
  228. "description": "Whether to enable WebHDFS feature",
  229. "defaultValue": true,
  230. "displayType": "checkbox",
  231. "isOverridable": false,
  232. "isVisible": true,
  233. "domain": "global",
  234. "serviceName": "HDFS",
  235. "index": 0
  236. },
  237. {
  238. "id": "puppet var",
  239. "name": "hadoop_heapsize",
  240. "displayName": "Hadoop maximum Java heap size",
  241. "description": "Maximum Java heap size for daemons such as Balancer (Java option -Xmx)",
  242. "defaultValue": "1024",
  243. "displayType": "int",
  244. "unit": "MB",
  245. "isVisible": true,
  246. "domain": "global",
  247. "serviceName": "HDFS",
  248. "index": 1
  249. },
  250. {
  251. "id": "puppet var",
  252. "name": "datanode_du_reserved",
  253. "displayName": "Reserved space for HDFS",
  254. "description": "Reserved space in GB per volume",
  255. "defaultValue": "1",
  256. "displayType": "int",
  257. "unit": "GB",
  258. "isVisible": true,
  259. "domain": "global",
  260. "serviceName": "HDFS",
  261. "index": 2
  262. },
  263. {
  264. "id": "puppet var",
  265. "name": "dfs_namenode_checkpoint_period",
  266. "displayName": "HDFS Maximum Checkpoint Delay",
  267. "description": "Maximum delay between two consecutive checkpoints for HDFS",
  268. "defaultValue": "21600",
  269. "displayType": "int",
  270. "unit": "seconds",
  271. "isVisible": true,
  272. "domain": "global",
  273. "filename": "core-site.xml",
  274. "serviceName": "HDFS",
  275. "index": 3
  276. },
  277. {
  278. "id": "puppet var",
  279. "name": "fs_checkpoint_size",
  280. "displayName": "HDFS Maximum Edit Log Size for Checkpointing",
  281. "description": "Maximum size of the edits log file that forces an urgent checkpoint even if the maximum checkpoint delay is not reached",
  282. "defaultValue": "0.5",
  283. "displayType": "float",
  284. "unit": "GB",
  285. "isVisible": true,
  286. "domain": "global",
  287. "filename": "core-site.xml",
  288. "serviceName": "HDFS",
  289. "index": 4
  290. },
  291. {
  292. "id": "puppet var",
  293. "name": "hdfs_log_dir_prefix",
  294. "displayName": "Hadoop Log Dir Prefix",
  295. "description": "The parent directory for Hadoop log files. The HDFS log directory will be ${hadoop_log_dir_prefix} / ${hdfs_user} and the MapReduce log directory will be ${hadoop_log_dir_prefix} / ${mapred_user}.",
  296. "defaultValue": "/var/log/hadoop",
  297. "isReconfigurable": false,
  298. "displayType": "directory",
  299. "isOverridable": false,
  300. "isVisible": true,
  301. "domain": "global",
  302. "serviceName": "HDFS",
  303. "category": "Advanced"
  304. },
  305. {
  306. "id": "puppet var",
  307. "name": "hadoop_pid_dir_prefix",
  308. "displayName": "Hadoop PID Dir Prefix",
  309. "description": "The parent directory in which the PID files for Hadoop processes will be created. The HDFS PID directory will be ${hadoop_pid_dir_prefix} / ${hdfs_user} and the MapReduce PID directory will be ${hadoop_pid_dir_prefix} / ${mapred_user}.",
  310. "defaultValue": "/var/run/hadoop",
  311. "isReconfigurable": false,
  312. "displayType": "directory",
  313. "isOverridable": false,
  314. "isVisible": true,
  315. "domain": "global",
  316. "serviceName": "HDFS",
  317. "category": "Advanced"
  318. },
  319. {
  320. "id": "puppet var",
  321. "name": "namenode_opt_maxnewsize",
  322. "displayName": "NameNode maximum new generation size",
  323. "description": "",
  324. "defaultValue": "640",
  325. "displayType": "int",
  326. "unit": "MB",
  327. "isOverridable": false,
  328. "isVisible": false,
  329. "domain": "global",
  330. "serviceName": "HDFS",
  331. "category": "NameNode"
  332. },
  333. {
  334. "id": "puppet var",
  335. "name": "dfs_exclude",
  336. "displayName": "Exclude hosts",
  337. "description": "Names a file that contains a list of hosts that are not permitted to connect to the namenode. This file will be placed inside the Hadoop conf directory.",
  338. "defaultValue": "dfs.exclude",
  339. "displayType": "advanced",
  340. "isVisible": true,
  341. "filename": "hdfs-site.xml",
  342. "domain": "global",
  343. "serviceName": "HDFS",
  344. "category": "Advanced"
  345. },
  346. {
  347. "id": "puppet var",
  348. "name": "dfs_include",
  349. "displayName": "Include hosts",
  350. "description": "Names a file that contains a list of hosts that are permitted to connect to the namenode. This file will be placed inside the Hadoop conf directory.",
  351. "defaultValue": "dfs.include",
  352. "displayType": "advanced",
  353. "isVisible": true,
  354. "filename": "hdfs-site.xml",
  355. "domain": "global",
  356. "serviceName": "HDFS",
  357. "category": "Advanced"
  358. },
  359. {
  360. "id": "puppet var",
  361. "name": "dfs_replication",
  362. "displayName": "Block replication",
  363. "description": "Default block replication.",
  364. "displayType": "int",
  365. "defaultValue": "3",
  366. "isVisible": true,
  367. "filename": "hdfs-site.xml",
  368. "domain": "global",
  369. "serviceName": "HDFS",
  370. "category": "Advanced"
  371. },
  372. {
  373. "id": "puppet var",
  374. "name": "dfs_block_local_path_access_user",
  375. "displayName": "dfs.block.local-path-access.user",
  376. "description": "the user who is allowed to perform short circuit reads",
  377. "displayType": "advanced",
  378. "defaultValue": "hbase",
  379. "isVisible": true,
  380. "filename": "hdfs-site.xml",
  381. "domain": "global",
  382. "serviceName": "HDFS",
  383. "category": "Advanced"
  384. },
  385. {
  386. "id": "puppet var",
  387. "name": "dfs_datanode_data_dir_perm",
  388. "displayName": "dfs_datanode_data_dir_perm",
  389. "description": "",
  390. "defaultValue": "750",
  391. "isReconfigurable": true,
  392. "displayType": "int",
  393. "isVisible": false,
  394. "filename": "hdfs-site.xml",
  395. "domain": "global",
  396. "serviceName": "HDFS",
  397. "category": "Advanced"
  398. },
  399. {
  400. "id": "puppet var",
  401. "name": "security_enabled",
  402. "displayName": "Hadoop Security",
  403. "description": "Enable hadoop security",
  404. "defaultValue": 'false',
  405. "isRequired": false,
  406. "displayType": "checkbox",
  407. "isOverridable": false,
  408. "isVisible": false,
  409. "domain": "global",
  410. "serviceName": "HDFS",
  411. "category": "Advanced"
  412. },
  413. {
  414. "id": "puppet var",
  415. "name": "namenode_formatted_mark_dir",
  416. "displayName": "Hadoop formatted mark directory",
  417. "description": "",
  418. "defaultValue": "/var/run/hadoop/hdfs/namenode/formatted/",
  419. "isRequired": false,
  420. "isReconfigurable": false,
  421. "displayType": "directory",
  422. "isVisible": false,
  423. "domain": "global",
  424. "serviceName": "HDFS",
  425. "category": "NameNode"
  426. },
  427. {
  428. "id": "puppet var",
  429. "name": "hcat_conf_dir",
  430. "displayName": "HCat conf directory",
  431. "description": "",
  432. "defaultValue": "",
  433. "isRequired": false,
  434. "isReconfigurable": false,
  435. "displayType": "directory",
  436. "isVisible": false,
  437. "domain": "global",
  438. "serviceName": "HDFS",
  439. "category": "Advanced"
  440. },
  441. /**********************************************MAPREDUCE2***************************************/
  442. {
  443. "id": "puppet var",
  444. "name": "hs_host",
  445. "displayName": "History Server",
  446. "description": "History Server",
  447. "defaultValue": "",
  448. "isOverridable": false,
  449. "displayType": "masterHost",
  450. "isVisible": true,
  451. "domain": "global",
  452. "serviceName": "MAPREDUCE2",
  453. "category": "HistoryServer",
  454. "index": 0
  455. },
  456. {
  457. "id": "puppet var",
  458. "name": "mapreduce_cluster_local_dir",
  459. "displayName": "MapReduce local directories",
  460. "description": "Directories for MapReduce to store intermediate data files",
  461. "defaultValue": "",
  462. "defaultDirectory": "/hadoop/mapred",
  463. "displayType": "directories",
  464. "isReconfigurable": true,
  465. "isVisible": true,
  466. "domain": "global",
  467. "serviceName": "MAPREDUCE2"
  468. },
  469. {
  470. "id": "puppet var",
  471. "name": "mapreduce_cluster_reducememory_mb",
  472. "displayName": "Cluster's Reduce slot size (virtual memory)",
  473. "description": "The virtual memory size of a single Reduce slot in the MapReduce framework",
  474. "defaultValue": "2048",
  475. "displayType": "int",
  476. "unit": "MB",
  477. "isVisible": true,
  478. "domain": "global",
  479. "serviceName": "MAPREDUCE2"
  480. },
  481. {
  482. "id": "puppet var",
  483. "name": "mapreduce_tasktracker_map_tasks_maximum",
  484. "displayName": "Number of Map slots per node",
  485. "description": "Number of slots that Map tasks that run simultaneously can occupy on a TaskTracker",
  486. "defaultValue": "4",
  487. "displayType": "int",
  488. "isVisible": true,
  489. "domain": "global",
  490. "serviceName": "MAPREDUCE2"
  491. },
  492. {
  493. "id": "puppet var",
  494. "name": "mapreduce_map_memory_mb",
  495. "displayName": "Default virtual memory for a job's map-task",
  496. "description": "Virtual memory for single Map task",
  497. "defaultValue": "1536",
  498. "displayType": "int",
  499. "unit": "MB",
  500. "isVisible": true,
  501. "domain": "global",
  502. "serviceName": "MAPREDUCE2"
  503. },
  504. {
  505. "id": "puppet var",
  506. "name": "mapreduce_reduce_memory_mb",
  507. "displayName": "Default virtual memory for a job's reduce-task",
  508. "description": "Virtual memory for single Reduce task",
  509. "defaultValue": "2048",
  510. "displayType": "int",
  511. "unit": "MB",
  512. "isVisible": true,
  513. "domain": "global",
  514. "serviceName": "MAPREDUCE2"
  515. },
  516. {
  517. "id": "puppet var",
  518. "name": "mapreduce_task_io_sort_mb",
  519. "displayName": "Map-side sort buffer memory",
  520. "description": "The total amount of Map-side buffer memory to use while sorting files (Expert-only configuration)",
  521. "defaultValue": "200",
  522. "displayType": "int",
  523. "unit": "MB",
  524. "isVisible": true,
  525. "domain": "global",
  526. "serviceName": "MAPREDUCE2"
  527. },
  528. {
  529. "id": "puppet var",
  530. "name": "mapreduce_userlog_retainhours",
  531. "displayName": "Job log retention (hours)",
  532. "description": "The maximum time, in hours, for which the user-logs are to be retained after the job completion.",
  533. "defaultValue": "24",
  534. "displayType": "int",
  535. "unit": "hours",
  536. "isVisible": true,
  537. "domain": "global",
  538. "serviceName": "MAPREDUCE2"
  539. },
  540. {
  541. "id": "puppet var",
  542. "name": "maxtasks_per_job",
  543. "displayName": "Maximum number tasks for a Job",
  544. "description": "Maximum number of tasks for a single Job",
  545. "defaultValue": "-1",
  546. "displayType": "int",
  547. "isVisible": true,
  548. "domain": "global",
  549. "serviceName": "MAPREDUCE2"
  550. },
  551. {
  552. "id": "puppet var",
  553. "name": "mapred_cluster_max_map_mem_mb",
  554. "displayName": "Upper limit on virtual memory for single Map task",
  555. "description": "Upper limit on virtual memory size for a single Map task of any MapReduce job",
  556. "defaultValue": "6144",
  557. "displayType": "int",
  558. "unit": "MB",
  559. "isVisible": true,
  560. "domain": "global",
  561. "serviceName": "MAPREDUCE2"
  562. },
  563. {
  564. "id": "puppet var",
  565. "name": "mapred_cluster_max_red_mem_mb",
  566. "displayName": "Upper limit on virtual memory for single Reduce task",
  567. "description": "Upper limit on virtual memory size for a single Reduce task of any MapReduce job",
  568. "defaultValue": "4096",
  569. "displayType": "int",
  570. "unit": "MB",
  571. "isVisible": true,
  572. "domain": "global",
  573. "serviceName": "MAPREDUCE2"
  574. },
  575. {
  576. "id": "puppet var",
  577. "name": "scheduler_name",
  578. "displayName": "MapReduce Capacity Scheduler",
  579. "description": "The scheduler to use for scheduling of MapReduce jobs",
  580. "defaultValue": "org.apache.hadoop.mapred.CapacityTaskScheduler",
  581. "displayType": "advanced",
  582. "isOverridable": false,
  583. "isVisible": true,
  584. "serviceName": "MAPREDUCE2"
  585. },
  586. {
  587. "id": "puppet var",
  588. "name": "mapred_cluster_map_mem_mb",
  589. "displayName": "Cluster's Map slot size (virtual memory)",
  590. "description": "The virtual memory size of a single Map slot in the MapReduce framework",
  591. "defaultValue": "1536",
  592. "displayType": "int",
  593. "unit": "MB",
  594. "isVisible": true,
  595. "domain": "global",
  596. "serviceName": "MAPREDUCE2"
  597. },
  598. {
  599. "id": "puppet var",
  600. "name": "mapreduce_jobtracker_system_dir",
  601. "displayName": "MapReduce system directories",
  602. "description": "",
  603. "defaultValue": "/mapred/system",
  604. "displayType": "directories",
  605. "isReconfigurable": true,
  606. "isVisible": true,
  607. "domain": "global",
  608. "serviceName": "MAPREDUCE2",
  609. "category": "Advanced"
  610. },
  611. {
  612. "id": "puppet var",
  613. "name": "mapred_log_dir_prefix",
  614. "displayName": "Mapreduce Log Dir Prefix",
  615. "description": "",
  616. "defaultValue": "/var/log/hadoop-mapreduce",
  617. "displayType": "directory",
  618. "isVisible": true,
  619. "isReconfigurable": false,
  620. "domain": "global",
  621. "serviceName": "MAPREDUCE2",
  622. "category": "Advanced"
  623. },
  624. {
  625. "id": "puppet var",
  626. "name": "mapred_pid_dir_prefix",
  627. "displayName": "Mapreduce PID Dir Prefix",
  628. "description": "",
  629. "defaultValue": "/var/run/hadoop-mapreduce",
  630. "displayType": "directory",
  631. "isVisible": true,
  632. "isReconfigurable": false,
  633. "domain": "global",
  634. "serviceName": "MAPREDUCE2",
  635. "category": "Advanced"
  636. },
  637. {
  638. "id": "puppet var",
  639. "name": "mapred_hosts_include",
  640. "displayName": "Include hosts",
  641. "description": "Include enetered hosts",
  642. "defaultValue": "mapred.include",
  643. "displayType": "directories",
  644. "isVisible": false,
  645. "serviceName": "MAPREDUCE2",
  646. "domain": "global",
  647. "category": "Advanced"
  648. },
  649. {
  650. "id": "puppet var",
  651. "name": "task_controller",
  652. "displayName": "task_controller",
  653. "description": "",
  654. "defaultValue": "org.apache.hadoop.mapred.DefaultTaskController",
  655. "displayType": "advanced",
  656. "isVisible": false,
  657. "serviceName": "MAPREDUCE2",
  658. "domain": "global",
  659. "category": "Advanced"
  660. },
  661. {
  662. "id": "puppet var",
  663. "name": "mapred_hosts_exclude",
  664. "displayName": "Exclude hosts",
  665. "description": "Exclude entered hosts",
  666. "defaultValue": "mapred.exclude",
  667. "displayType": "directories",
  668. "isVisible": false,
  669. "serviceName": "MAPREDUCE2",
  670. "domain": "global",
  671. "category": "Advanced"
  672. },
  673. {
  674. "id": "puppet var",
  675. "name": "mapred_jobstatus_dir",
  676. "displayName": "Job Status directory",
  677. "description": "Directory path to view job status",
  678. "defaultValue": "file:////mapred/jobstatus",
  679. "displayType": "advanced",
  680. "isVisible": false,
  681. "serviceName": "MAPREDUCE2",
  682. "domain": "global",
  683. "category": "Advanced"
  684. },
  685. /**********************************************YARN***************************************/
  686. {
  687. "id": "puppet var",
  688. "name": "rm_host",
  689. "displayName": "ResourceManager",
  690. "description": "ResourceManager",
  691. "defaultValue": "",
  692. "isOverridable": false,
  693. "displayType": "masterHost",
  694. "isVisible": true,
  695. "domain": "global",
  696. "serviceName": "YARN",
  697. "category": "ResourceManager",
  698. "index": 0
  699. },
  700. {
  701. "id": "puppet var",
  702. "name": "nm_hosts",
  703. "displayName": "NodeManager",
  704. "description": "List of NodeManager Hosts.",
  705. "defaultValue": "",
  706. "isOverridable": false,
  707. "displayType": "slaveHosts",
  708. "isVisible": true,
  709. "domain": "global",
  710. "serviceName": "YARN",
  711. "category": "NodeManager",
  712. "index": 0
  713. },
  714. {
  715. "id": "puppet var",
  716. "name": "yarn_log_dir_prefix",
  717. "displayName": "YARN Log Dir Prefix",
  718. "description": "",
  719. "defaultValue": "/var/log/hadoop-yarn",
  720. "displayType": "directory",
  721. "isReconfigurable": false,
  722. "isVisible": true,
  723. "domain": "global",
  724. "serviceName": "YARN",
  725. "category": "Advanced"
  726. },
  727. {
  728. "id": "puppet var",
  729. "name": "yarn_pid_dir_prefix",
  730. "displayName": "YARN PID Dir Prefix",
  731. "description": "",
  732. "defaultValue": "/var/run/hadoop-yarn",
  733. "displayType": "directory",
  734. "isVisible": true,
  735. "isReconfigurable": false,
  736. "domain": "global",
  737. "serviceName": "YARN",
  738. "category": "Advanced"
  739. },
  740. {
  741. "id": "puppet var",
  742. "name": "yarn_nodemanager_local-dirs",
  743. "displayName": "YARN local directories",
  744. "defaultValue": "",
  745. "defaultDirectory": "/hadoop/yarn",
  746. "displayType": "directories",
  747. "isReconfigurable": true,
  748. "isVisible": true,
  749. "serviceName": "YARN",
  750. "category": "Advanced"
  751. },
  752. /**********************************************HBASE***************************************/
  753. {
  754. "id": "puppet var",
  755. "name": "hbasemaster_host",
  756. "displayName": "HBase Master hosts",
  757. "value": "",
  758. "defaultValue": "",
  759. "description": "The host that has been assigned to run HBase Master",
  760. "displayType": "masterHosts",
  761. "isOverridable": false,
  762. "isVisible": true,
  763. "domain": "global",
  764. "serviceName": "HBASE",
  765. "category": "HBase Master",
  766. "index": 0
  767. },
  768. {
  769. "id": "puppet var",
  770. "name": "hbase_master_heapsize",
  771. "displayName": "HBase Master Maximum Java heap size",
  772. "description": "Maximum Java heap size for HBase master (Java option -Xmx)",
  773. "defaultValue": "1024",
  774. "displayType": "int",
  775. "unit": "MB",
  776. "isOverridable": false,
  777. "isVisible": true,
  778. "domain": "global",
  779. "serviceName": "HBASE",
  780. "category": "HBase Master",
  781. "index": 1
  782. },
  783. {
  784. "id": "puppet var",
  785. "name": "regionserver_hosts",
  786. "displayName": "RegionServer hosts",
  787. "value": "",
  788. "defaultValue": "",
  789. "description": "The hosts that have been assigned to run RegionServer",
  790. "displayType": "slaveHosts",
  791. "isOverridable": false,
  792. "isVisible": true,
  793. "isRequired": false,
  794. "domain": "regionserver-global",
  795. "serviceName": "HBASE",
  796. "category": "RegionServer",
  797. "index": 0
  798. },
  799. {
  800. "id": "puppet var",
  801. "name": "hbase_regionserver_heapsize",
  802. "displayName": "HBase RegionServers maximum Java heap size",
  803. "description": "Maximum Java heap size for HBase RegionServers (Java option -Xmx)",
  804. "defaultValue": "1024",
  805. "displayType": "int",
  806. "unit": "MB",
  807. "isVisible": true,
  808. "domain": "regionserver-global",
  809. "serviceName": "HBASE",
  810. "category": "RegionServer",
  811. "index": 1
  812. },
  813. {
  814. "id": "puppet var",
  815. "name": "regionserver_handlers",
  816. "displayName": "HBase RegionServer Handler",
  817. "description": "Count of RPC Listener instances spun up on RegionServers",
  818. "defaultValue": "60",
  819. "displayType": "int",
  820. "isVisible": true,
  821. "domain": "regionserver-global",
  822. "serviceName": "HBASE",
  823. "category": "RegionServer",
  824. "index": 2
  825. },
  826. {
  827. "id": "puppet var",
  828. "name": "hregion_majorcompaction",
  829. "displayName": "HBase Region Major Compaction",
  830. "description": "The time between major compactions of all HStoreFiles in a region. Set to 0 to disable automated major compactions.",
  831. "defaultValue": "86400000",
  832. "displayType": "int",
  833. "unit": "ms",
  834. "isVisible": true,
  835. "domain": "regionserver-global",
  836. "serviceName": "HBASE",
  837. "category": "RegionServer",
  838. "index": 3
  839. },
  840. {
  841. "id": "puppet var",
  842. "name": "hregion_blockmultiplier",
  843. "displayName": "HBase Region Block Multiplier",
  844. "description": "Block updates if memstore has \"Multiplier * HBase Region Memstore Flush Size\" bytes. Useful preventing runaway memstore during spikes in update traffic",
  845. "defaultValue": "2",
  846. "displayType": "int",
  847. "isVisible": true,
  848. "domain": "regionserver-global",
  849. "serviceName": "HBASE",
  850. "category": "RegionServer",
  851. "index": 4
  852. },
  853. {
  854. "id": "puppet var",
  855. "name": "hregion_memstoreflushsize",
  856. "displayName": "HBase Region Memstore Flush Size",
  857. "description": "Memstore will be flushed to disk if size of the memstore exceeds this number of bytes.",
  858. "defaultValue": "134217728",
  859. "displayType": "int",
  860. "unit": "bytes",
  861. "isVisible": true,
  862. "domain": "regionserver-global",
  863. "serviceName": "HBASE",
  864. "category": "RegionServer",
  865. "index": 5
  866. },
  867. {
  868. "id": "puppet var",
  869. "name": "hstore_compactionthreshold",
  870. "displayName": "HBase HStore compaction threshold",
  871. "description": "If more than this number of HStoreFiles in any one HStore then a compaction is run to rewrite all HStoreFiles files as one.",
  872. "defaultValue": "3",
  873. "displayType": "int",
  874. "isVisible": true,
  875. "domain": "global",
  876. "serviceName": "HBASE",
  877. "index": 0
  878. },
  879. {
  880. "id": "puppet var",
  881. "name": "hfile_blockcache_size",
  882. "displayName": "HFile block cache size ",
  883. "description": "Percentage of maximum heap (-Xmx setting) to allocate to block cache used by HFile/StoreFile. Set to 0 to disable but it's not recommended.",
  884. "defaultValue": "0.40",
  885. "displayType": "float",
  886. "isVisible": true,
  887. "domain": "global",
  888. "serviceName": "HBASE",
  889. "index": 1
  890. },
  891. {
  892. "id": "puppet var",
  893. "name": "hstorefile_maxsize",
  894. "displayName": "Maximum HStoreFile Size",
  895. "description": "If any one of a column families' HStoreFiles has grown to exceed this value, the hosting HRegion is split in two.",
  896. "defaultValue": "10737418240",
  897. "displayType": "int",
  898. "unit": "bytes",
  899. "isVisible": true,
  900. "domain": "global",
  901. "serviceName": "HBASE",
  902. "index": 2
  903. },
  904. {
  905. "id": "puppet var",
  906. "name": "client_scannercaching",
  907. "displayName": "HBase Client Scanner Caching",
  908. "description": "Number of rows that will be fetched when calling next on a scanner if it is not served from (local, client) memory. Do not set this value such that the time between invocations is greater than the scanner timeout",
  909. "defaultValue": "100",
  910. "displayType": "int",
  911. "unit": "rows",
  912. "isVisible": true,
  913. "domain": "global",
  914. "serviceName": "HBASE",
  915. "index": 3
  916. },
  917. {
  918. "id": "puppet var",
  919. "name": "zookeeper_sessiontimeout",
  920. "displayName": "Zookeeper timeout for HBase Session",
  921. "description": "HBase passes this to the zk quorum as suggested maximum time for a session",
  922. "defaultValue": "60000",
  923. "displayType": "int",
  924. "unit": "ms",
  925. "isVisible": true,
  926. "domain": "global",
  927. "serviceName": "HBASE",
  928. "index": 4
  929. },
  930. {
  931. "id": "puppet var",
  932. "name": "hfile_max_keyvalue_size",
  933. "displayName": "HBase Client Maximum key-value Size",
  934. "description": "Specifies the combined maximum allowed size of a KeyValue instance. It should be set to a fraction of the maximum region size.",
  935. "defaultValue": "10485760",
  936. "displayType": "int",
  937. "unit": "bytes",
  938. "isVisible": true,
  939. "domain": "global",
  940. "serviceName": "HBASE",
  941. "index": 5
  942. },
  943. {
  944. "id": "puppet var",
  945. "name": "hbase_log_dir",
  946. "displayName": "HBase Log Dir",
  947. "description": "Directory for HBase logs",
  948. "defaultValue": "/var/log/hbase",
  949. "isReconfigurable": false,
  950. "displayType": "directory",
  951. "isOverridable": false,
  952. "isVisible": true,
  953. "domain": "global",
  954. "serviceName": "HBASE",
  955. "category": "Advanced"
  956. },
  957. {
  958. "id": "puppet var",
  959. "name": "hbase_pid_dir",
  960. "displayName": "HBase PID Dir",
  961. "description": "Directory in which the pid files for HBase processes will be created",
  962. "defaultValue": "/var/run/hbase",
  963. "isReconfigurable": false,
  964. "displayType": "directory",
  965. "isOverridable": false,
  966. "isVisible": true,
  967. "domain": "global",
  968. "serviceName": "HBASE",
  969. "category": "Advanced"
  970. },
  971. {
  972. "id": "puppet var",
  973. "name": "hbase_hdfs_root_dir",
  974. "displayName": "Hbase relative path to HDFS",
  975. "description": "Hbase relative directory to HDFS",
  976. "defaultValue": "/apps/hbase/data",
  977. "isRequired": true,
  978. "displayType": "advanced",
  979. "isVisible": false,
  980. "domain": "global",
  981. "serviceName": "HBASE",
  982. "category": "Advanced"
  983. },
  984. {
  985. "id": "puppet var",
  986. "name": "hbase_tmp_dir",
  987. "displayName": "Hbase temp directory",
  988. "description": "",
  989. "defaultValue": "/var/log/hbase",
  990. "isRequired": false,
  991. "displayType": "advanced",
  992. "isVisible": false,
  993. "domain": "global",
  994. "serviceName": "HBASE",
  995. "category": "Advanced"
  996. },
  997. {
  998. "id": "puppet var",
  999. "name": "hdfs_enable_shortcircuit_read",
  1000. "displayName": "HDFS Short-circuit read",
  1001. "description": "",
  1002. "defaultValue": true,
  1003. "isRequired": false,
  1004. "displayType": "checkbox",
  1005. "isVisible": true,
  1006. "domain": "global",
  1007. "serviceName": "HBASE",
  1008. "category": "Advanced"
  1009. },
  1010. {
  1011. "id": "puppet var",
  1012. "name": "hdfs_support_append",
  1013. "displayName": "HDFS append support",
  1014. "description": "HDFS append support",
  1015. "defaultValue": true,
  1016. "isRequired": false,
  1017. "displayType": "checkbox",
  1018. "isVisible": true,
  1019. "domain": "global",
  1020. "serviceName": "HBASE",
  1021. "category": "Advanced"
  1022. },
  1023. {
  1024. "id": "puppet var",
  1025. "name": "hstore_blockingstorefiles",
  1026. "displayName": "hstore blocking storefiles",
  1027. "description": "If more than this number of StoreFiles in any one Store (one StoreFile is written per flush of " +
  1028. "MemStore) then updates are blocked for this HRegion until a compaction is completed, or until " +
  1029. "hbase.hstore.blockingWaitTime has been exceeded.",
  1030. "defaultValue": 7,
  1031. "isRequired": true,
  1032. "displayType": "init",
  1033. "isVisible": true,
  1034. "domain": "global",
  1035. "serviceName": "HBASE",
  1036. "category": "Advanced"
  1037. },
  1038. {
  1039. "id": "puppet var",
  1040. "name": "regionserver_memstore_lab",
  1041. "displayName": "regionserver_memstore_lab",
  1042. "description": "",
  1043. "defaultValue": true,
  1044. "isRequired": false,
  1045. "displayType": "checkbox",
  1046. "isVisible": false,
  1047. "domain": "global",
  1048. "serviceName": "HBASE",
  1049. "category": "Advanced"
  1050. },
  1051. {
  1052. "id": "puppet var",
  1053. "name": "regionserver_memstore_lowerlimit",
  1054. "displayName": "regionserver_memstore_lowerlimit",
  1055. "description": "",
  1056. "defaultValue": "0.38",
  1057. "isRequired": false,
  1058. "displayType": "float",
  1059. "isVisible": false,
  1060. "domain": "global",
  1061. "serviceName": "HBASE",
  1062. "category": "Advanced"
  1063. },
  1064. {
  1065. "id": "puppet var",
  1066. "name": "regionserver_memstore_upperlimit",
  1067. "displayName": "regionserver_memstore_upperlimit",
  1068. "description": "",
  1069. "defaultValue": "0.4",
  1070. "isRequired": true,
  1071. "displayType": "float",
  1072. "isVisible": false,
  1073. "domain": "global",
  1074. "serviceName": "HBASE",
  1075. "category": "Advanced"
  1076. },
  1077. /**********************************************HIVE***************************************/
  1078. {
  1079. "id": "puppet var",
  1080. "name": "hivemetastore_host",
  1081. "displayName": "Hive Metastore host",
  1082. "value": "",
  1083. "defaultValue": "",
  1084. "description": "The host that has been assigned to run Hive Metastore",
  1085. "displayType": "masterHost",
  1086. "isOverridable": false,
  1087. "isVisible": true,
  1088. "isObserved": true,
  1089. "serviceName": "HIVE",
  1090. "category": "Hive Metastore",
  1091. "index": 0
  1092. },
  1093. // for existing MySQL
  1094. {
  1095. "id": "puppet var",
  1096. "name": "hive_existing_mysql_database",
  1097. "displayName": "Database Type",
  1098. "value": "",
  1099. "defaultValue": "MySQL",
  1100. "description": "Using an existing MySQL database for Hive Metastore",
  1101. "displayType": "masterHost",
  1102. "isOverridable": false,
  1103. "isVisible": false,
  1104. "isReconfigurable": false,
  1105. "domain": "global",
  1106. "serviceName": "HIVE",
  1107. "category": "Hive Metastore",
  1108. "index": 1
  1109. },
  1110. // for existing Oracle
  1111. {
  1112. "id": "puppet var",
  1113. "name": "hive_existing_oracle_database",
  1114. "displayName": "Database Type",
  1115. "value": "",
  1116. "defaultValue": "Oracle",
  1117. "description": "Using an existing Oracle database for Hive Metastore",
  1118. "displayType": "masterHost",
  1119. "isVisible": false,
  1120. "isOverridable": false,
  1121. "isReconfigurable": false,
  1122. "domain": "global",
  1123. "serviceName": "HIVE",
  1124. "category": "Hive Metastore",
  1125. "index": 1
  1126. },
  1127. // for new MySQL
  1128. {
  1129. "id": "puppet var",
  1130. "name": "hive_ambari_database",
  1131. "displayName": "Database Type",
  1132. "value": "",
  1133. "defaultValue": "MySQL",
  1134. "description": "MySQL will be installed by Ambari",
  1135. "displayType": "masterHost",
  1136. "isOverridable": false,
  1137. "isVisible": false,
  1138. "domain": "global",
  1139. "serviceName": "HIVE",
  1140. "category": "Hive Metastore",
  1141. "index": 1
  1142. },
  1143. {
  1144. "id": "puppet var",
  1145. "name": "hive_database",
  1146. "displayName": "Hive Database",
  1147. "value": "",
  1148. "defaultValue": "New MySQL Database",
  1149. "options": [
  1150. {
  1151. displayName: 'New MySQL Database',
  1152. foreignKeys: ['hive_ambari_database', 'hive_ambari_host']
  1153. },
  1154. {
  1155. displayName: 'Existing MySQL Database',
  1156. foreignKeys: ['hive_existing_mysql_database', 'hive_existing_mysql_host']
  1157. },
  1158. {
  1159. displayName: 'Existing Oracle Database',
  1160. foreignKeys: ['hive_existing_oracle_database', 'hive_existing_oracle_host'],
  1161. hidden: !App.supports.hiveOozieExtraDatabases
  1162. }
  1163. ],
  1164. "description": "MySQL will be installed by Ambari",
  1165. "displayType": "radio button",
  1166. "isReconfigurable": false,
  1167. "radioName": "hive-database",
  1168. "isOverridable": false,
  1169. "isVisible": true,
  1170. "domain": "global",
  1171. "serviceName": "HIVE",
  1172. "category": "Hive Metastore",
  1173. "index": 2
  1174. },
  1175. {
  1176. "id": "puppet var",
  1177. "name": "hive_hostname",
  1178. "displayName": "Database Host",
  1179. "description": "Specify the host on which the database is hosted",
  1180. "defaultValue": "",
  1181. "isReconfigurable": true,
  1182. "displayType": "host",
  1183. "isOverridable": false,
  1184. "isVisible": false,
  1185. "isObserved": true,
  1186. "domain": "global",
  1187. "serviceName": "HIVE",
  1188. "category": "Hive Metastore",
  1189. "index": 3
  1190. },
  1191. {
  1192. "id": "puppet var",
  1193. "name": "hive_existing_mysql_host",
  1194. "displayName": "Database Host",
  1195. "description": "Specify the host on which the existing database is hosted",
  1196. "defaultValue": "",
  1197. "isReconfigurable": false,
  1198. "displayType": "host",
  1199. "isOverridable": false,
  1200. "isVisible": false,
  1201. "isObserved": true,
  1202. "domain": "global",
  1203. "serviceName": "HIVE",
  1204. "category": "Hive Metastore",
  1205. "index": 3
  1206. },
  1207. {
  1208. "id": "puppet var",
  1209. "name": "hive_existing_oracle_host",
  1210. "displayName": "Database Host",
  1211. "description": "Specify the host on which the existing database is hosted",
  1212. "defaultValue": "",
  1213. "isReconfigurable": false,
  1214. "displayType": "host",
  1215. "isOverridable": false,
  1216. "isVisible": false,
  1217. "isObserved": true,
  1218. "domain": "global",
  1219. "serviceName": "HIVE",
  1220. "category": "Hive Metastore",
  1221. "index": 3
  1222. },
  1223. {
  1224. "id": "puppet var",
  1225. "name": "hive_ambari_host",
  1226. "value": "",
  1227. "defaultValue": "",
  1228. "displayName": "Database Host",
  1229. "description": "Host on which the database will be created by Ambari",
  1230. "isReconfigurable": false,
  1231. "displayType": "masterHost",
  1232. "isOverridable": false,
  1233. "isVisible": false,
  1234. "domain": "global",
  1235. "serviceName": "HIVE",
  1236. "category": "Hive Metastore",
  1237. "index": 3
  1238. },
  1239. {
  1240. "id": "puppet var",
  1241. "name": "hive_database_name",
  1242. "displayName": "Database Name",
  1243. "description": "Database name used as the Hive Metastore",
  1244. "defaultValue": "hive",
  1245. "isReconfigurable": false,
  1246. "displayType": "host",
  1247. "isOverridable": false,
  1248. "isVisible": true,
  1249. "isObserved": true,
  1250. "domain": "global",
  1251. "serviceName": "HIVE",
  1252. "category": "Hive Metastore",
  1253. "index": 4
  1254. },
  1255. {
  1256. "id": "puppet var",
  1257. "name": "hive_metastore_user_name",
  1258. "displayName": "Database Username",
  1259. "description": "Database user name to use to connect to the database",
  1260. "defaultValue": "hive",
  1261. "isReconfigurable": false,
  1262. "displayType": "user",
  1263. "isOverridable": false,
  1264. "isVisible": true,
  1265. "domain": "global",
  1266. "serviceName": "HIVE",
  1267. "category": "Hive Metastore",
  1268. "index": 5
  1269. },
  1270. {
  1271. "id": "puppet var",
  1272. "name": "hive_metastore_user_passwd",
  1273. "displayName": "Database Password",
  1274. "description": "Database password to use to connect to the PostgreSQL database",
  1275. "defaultValue": "",
  1276. "isReconfigurable": false,
  1277. "displayType": "password",
  1278. "isOverridable": false,
  1279. "isVisible": true,
  1280. "domain": "global",
  1281. "serviceName": "HIVE",
  1282. "category": "Hive Metastore",
  1283. "index": 6
  1284. },
  1285. {
  1286. "id": "puppet var",
  1287. "name": "hive_jdbc_connection_url",
  1288. "displayName": "Database URL",
  1289. "value": "",
  1290. "defaultValue": " ", // set to a space to not include this in initial error count
  1291. "description": "The JDBC connection URL to the database",
  1292. "displayType": "advanced",
  1293. "isOverridable": false,
  1294. "isVisible": true,
  1295. "serviceName": "HIVE",
  1296. "category": "Hive Metastore",
  1297. "index": 7
  1298. },
  1299. {
  1300. "id": "puppet var",
  1301. "name": "hive_metastore_port",
  1302. "displayName": "Hive metastore port",
  1303. "description": "",
  1304. "defaultValue": "9083",
  1305. "isReconfigurable": false,
  1306. "displayType": "int",
  1307. "isOverridable": false,
  1308. "isVisible": false,
  1309. "domain": "global",
  1310. "serviceName": "HIVE",
  1311. "category": "Advanced"
  1312. },
  1313. {
  1314. "id": "puppet var",
  1315. "name": "hive_lib",
  1316. "displayName": "Hive library",
  1317. "description": "",
  1318. "defaultValue": "/usr/lib/hive/lib/",
  1319. "isReconfigurable": false,
  1320. "displayType": "directory",
  1321. "isVisible": false,
  1322. "domain": "global",
  1323. "serviceName": "HIVE",
  1324. "category": "Advanced"
  1325. },
  1326. {
  1327. "id": "puppet var",
  1328. "name": "hive_conf_dir",
  1329. "displayName": "Hive conf directory",
  1330. "description": "",
  1331. "defaultValue": "/etc/hive/conf",
  1332. "isReconfigurable": false,
  1333. "displayType": "directory",
  1334. "isVisible": false,
  1335. "domain": "global",
  1336. "serviceName": "HIVE",
  1337. "category": "Advanced"
  1338. },
  1339. {
  1340. "id": "puppet var",
  1341. "name": "hive_dbroot",
  1342. "displayName": "Hive db directory",
  1343. "description": "",
  1344. "defaultValue": "/usr/lib/hive/lib",
  1345. "isReconfigurable": false,
  1346. "displayType": "directory",
  1347. "isVisible": false,
  1348. "domain": "global",
  1349. "serviceName": "HIVE",
  1350. "category": "Advanced"
  1351. },
  1352. {
  1353. "id": "puppet var",
  1354. "name": "hive_log_dir",
  1355. "displayName": "Hive Log Dir",
  1356. "description": "Directory for Hive log files",
  1357. "defaultValue": "/var/log/hive",
  1358. "isReconfigurable": false,
  1359. "displayType": "directory",
  1360. "isOverridable": false,
  1361. "isVisible": true,
  1362. "domain": "global",
  1363. "serviceName": "HIVE",
  1364. "category": "Advanced"
  1365. },
  1366. {
  1367. "id": "puppet var",
  1368. "name": "hive_pid_dir",
  1369. "displayName": "Hive PID Dir",
  1370. "description": "Directory in which the PID files for Hive processes will be created",
  1371. "defaultValue": "/var/run/hive",
  1372. "isReconfigurable": false,
  1373. "displayType": "directory",
  1374. "isOverridable": false,
  1375. "isVisible": true,
  1376. "domain": "global",
  1377. "serviceName": "HIVE",
  1378. "category": "Advanced"
  1379. },
  1380. {
  1381. "id": "puppet var",
  1382. "name": "mysql_connector_url",
  1383. "displayName": "MySQL connector url",
  1384. "description": "",
  1385. "defaultValue": "${download_url}/mysql-connector-java-5.1.18.zip",
  1386. "isReconfigurable": false,
  1387. "displayType": "directory",
  1388. "isVisible": false,
  1389. "domain": "global",
  1390. "serviceName": "HIVE",
  1391. "category": "Advanced"
  1392. },
  1393. {
  1394. "id": "puppet var",
  1395. "name": "hive_aux_jars_path",
  1396. "displayName": "Hive auxilary jar path",
  1397. "description": "",
  1398. "defaultValue": "/usr/lib/hcatalog/share/hcatalog/hcatalog-core.jar",
  1399. "isReconfigurable": false,
  1400. "displayType": "directory",
  1401. "isVisible": false,
  1402. "domain": "global",
  1403. "serviceName": "HIVE",
  1404. "category": "Advanced"
  1405. },
  1406. /**********************************************WEBHCAT***************************************/
  1407. {
  1408. "id": "puppet var",
  1409. "name": "webhcatserver_host",
  1410. "displayName": "WebHCat Server host",
  1411. "value": "",
  1412. "defaultValue": "",
  1413. "description": "The host that has been assigned to run WebHCat Server",
  1414. "displayType": "masterHost",
  1415. "isOverridable": false,
  1416. "isVisible": true,
  1417. "domain": "global",
  1418. "serviceName": "WEBHCAT",
  1419. "category": "WebHCat Server"
  1420. },
  1421. {
  1422. "id": "puppet var",
  1423. "name": "hcat_log_dir",
  1424. "displayName": "WebHCat Log Dir",
  1425. "description": "Directory for WebHCat log files",
  1426. "defaultValue": "/var/log/webhcat",
  1427. "isReconfigurable": false,
  1428. "displayType": "directory",
  1429. "isOverridable": false,
  1430. "isVisible": true,
  1431. "domain": "global",
  1432. "serviceName": "WEBHCAT",
  1433. "category": "Advanced"
  1434. },
  1435. {
  1436. "id": "puppet var",
  1437. "name": "hcat_pid_dir",
  1438. "displayName": "WebHCat PID Dir",
  1439. "description": "Directory in which the PID files for WebHCat processes will be created",
  1440. "defaultValue": "/var/run/webhcat",
  1441. "isReconfigurable": false,
  1442. "displayType": "directory",
  1443. "isOverridable": false,
  1444. "isVisible": true,
  1445. "domain": "global",
  1446. "serviceName": "WEBHCAT",
  1447. "category": "Advanced"
  1448. },
  1449. /**********************************************OOZIE***************************************/
  1450. {
  1451. "id": "puppet var",
  1452. "name": "oozieserver_host",
  1453. "displayName": "Oozie Server host",
  1454. "value": "",
  1455. "defaultValue": "",
  1456. "description": "The host that has been assigned to run Oozie Server",
  1457. "displayType": "masterHost",
  1458. "isOverridable": false,
  1459. "isVisible": true,
  1460. "domain": "global",
  1461. "serviceName": "OOZIE",
  1462. "category": "Oozie Server",
  1463. "index": 0
  1464. },
  1465. // for existing Oracle
  1466. {
  1467. "id": "puppet var",
  1468. "name": "oozie_existing_oracle_database",
  1469. "displayName": "Database Type",
  1470. "value": "",
  1471. "defaultValue": "Oracle",
  1472. "description": "Using an existing Oracle database for Oozie Metastore",
  1473. "displayType": "masterHost",
  1474. "isVisible": false,
  1475. "isObserved": true,
  1476. "isReconfigurable": false,
  1477. "isOverridable": false,
  1478. //"domain": "global",
  1479. "serviceName": "OOZIE",
  1480. "category": "Oozie Server",
  1481. "index": 1
  1482. },
  1483. // for new MySQL
  1484. {
  1485. "id": "puppet var",
  1486. "name": "oozie_ambari_database",
  1487. "displayName": "Database Type",
  1488. "value": "",
  1489. "defaultValue": "MySQL",
  1490. "description": "MySQL will be installed by Ambari",
  1491. "displayType": "masterHost",
  1492. "isVisible": false,
  1493. "isOverridable": false,
  1494. // "domain": "global",
  1495. "serviceName": "OOZIE",
  1496. "category": "Oozie Server",
  1497. "index": 1
  1498. },
  1499. // for current derby
  1500. {
  1501. "id": "puppet var",
  1502. "name": "oozie_derby_database",
  1503. "displayName": "Database Type",
  1504. "value": "",
  1505. "defaultValue": "Derby",
  1506. "description": "Using current Derby database for Oozie Metastore",
  1507. "displayType": "masterHost",
  1508. "isVisible": false,
  1509. "isReconfigurable": false,
  1510. "isOverridable": false,
  1511. // "domain": "global",
  1512. "serviceName": "OOZIE",
  1513. "category": "Oozie Server",
  1514. "index": 1
  1515. },
  1516. // for existing MySQL oozie
  1517. {
  1518. "id": "puppet var",
  1519. "name": "oozie_existing_mysql_database",
  1520. "displayName": "Database Type",
  1521. "value": "",
  1522. "defaultValue": "MySQL",
  1523. "description": "Using an existing MySQL database for Oozie Metastore",
  1524. "displayType": "masterHost",
  1525. "isVisible": false,
  1526. "isReconfigurable": false,
  1527. "isOverridable": false,
  1528. //"domain": "global",
  1529. "serviceName": "OOZIE",
  1530. "category": "Oozie Server",
  1531. "index": 1
  1532. },
  1533. {
  1534. "id": "puppet var",
  1535. "name": "oozie_database",
  1536. "displayName": "Oozie Database",
  1537. "value": "",
  1538. "defaultValue": "New Derby Database",
  1539. "options": [
  1540. {
  1541. displayName: 'New Derby Database',
  1542. foreignKeys: ['oozie_derby_database']
  1543. },
  1544. /*{
  1545. displayName: 'New MySQL Database',
  1546. foreignKeys: ['oozie_ambari_database', 'oozie_ambari_host'],
  1547. hidden: !App.supports.hiveOozieExtraDatabases
  1548. },*/
  1549. {
  1550. displayName: 'Existing MySQL Database',
  1551. foreignKeys: ['oozie_existing_mysql_database', 'oozie_existing_mysql_host'],
  1552. hidden: !App.supports.hiveOozieExtraDatabases
  1553. },
  1554. {
  1555. displayName: 'Existing Oracle Database',
  1556. foreignKeys: ['oozie_existing_oracle_database', 'oozie_existing_oracle_host'],
  1557. hidden: !App.supports.hiveOozieExtraDatabases
  1558. }
  1559. ],
  1560. "description": "Current Derby Database will be installed by Ambari",
  1561. "displayType": "radio button",
  1562. "isReconfigurable": false,
  1563. "isOverridable": false,
  1564. "radioName": "oozie-database",
  1565. "isVisible": true,
  1566. "domain": "global",
  1567. "serviceName": "OOZIE",
  1568. "category": "Oozie Server",
  1569. "index": 2
  1570. },
  1571. {
  1572. "id": "puppet var",
  1573. "name": "oozie_database_name",
  1574. "displayName": "Database Name",
  1575. "description": "Database name used for the Oozie",
  1576. "defaultValue": "oozie",
  1577. "isReconfigurable": false,
  1578. "isOverridable": false,
  1579. "displayType": "host",
  1580. "isVisible": true,
  1581. "isObserved": true,
  1582. //"domain": "global",
  1583. "serviceName": "OOZIE",
  1584. "category": "Oozie Server",
  1585. "index": 3
  1586. },
  1587. {
  1588. "id": "puppet var",
  1589. "name": "oozie_metastore_user_name",
  1590. "displayName": "Database Username",
  1591. "description": "Database user name to use to connect to the database",
  1592. "defaultValue": "oozie",
  1593. "isReconfigurable": false,
  1594. "isOverridable": false,
  1595. "displayType": "user",
  1596. "isVisible": true,
  1597. //"domain": "global",
  1598. "serviceName": "OOZIE",
  1599. "category": "Oozie Server",
  1600. "index": 4
  1601. },
  1602. {
  1603. "id": "puppet var",
  1604. "name": "oozie_metastore_user_passwd",
  1605. "displayName": "Database Password",
  1606. "description": "Database password to use to connect to the database",
  1607. "defaultValue": "",
  1608. "isReconfigurable": false,
  1609. "isOverridable": false,
  1610. "displayType": "password",
  1611. "isVisible": true,
  1612. //"domain": "global",
  1613. "serviceName": "OOZIE",
  1614. "category": "Oozie Server",
  1615. "index": 5
  1616. },
  1617. {
  1618. "id": "puppet var",
  1619. "name": "oozie_jdbc_connection_url",
  1620. "displayName": "Database URL",
  1621. "description": "The JDBC connection URL to the database",
  1622. "defaultValue": " ", // set to a space to not include this in initial error count
  1623. "isReconfigurable": true,
  1624. "isOverridable": false,
  1625. "displayType": "advanced",
  1626. "isVisible": true,
  1627. "serviceName": "OOZIE",
  1628. "category": "Oozie Server",
  1629. "index": 6
  1630. },
  1631. {
  1632. "id": "puppet var",
  1633. "name": "oozie_data_dir",
  1634. "displayName": "Oozie Data Dir",
  1635. "description": "Data directory in which the Oozie DB exists",
  1636. "defaultValue": "",
  1637. "defaultDirectory": "/hadoop/oozie/data",
  1638. "isReconfigurable": false,
  1639. "displayType": "directory",
  1640. "isOverridable": false,
  1641. "isVisible": true,
  1642. "isRequired": false,
  1643. "domain": "global",
  1644. "serviceName": "OOZIE",
  1645. "category": "Oozie Server",
  1646. "index": 7
  1647. },
  1648. {
  1649. "id": "puppet var",
  1650. "name": "oozie_hostname",
  1651. "defaultValue": "",
  1652. "displayName": "Database Host",
  1653. "description": "The host where the Oozie database is located",
  1654. "isReconfigurable": true,
  1655. "isOverridable": false,
  1656. "displayType": "host",
  1657. "isVisible": false,
  1658. "domain": "global",
  1659. "serviceName": "OOZIE",
  1660. "category": "Oozie Server",
  1661. "index": 3
  1662. },
  1663. {
  1664. "id": "puppet var",
  1665. "name": "oozie_existing_mysql_host",
  1666. "displayName": "Database Host",
  1667. "description": "Specify the host on which the existing database is hosted",
  1668. "defaultValue": "",
  1669. "isReconfigurable": false,
  1670. "isOverridable": false,
  1671. "displayType": "host",
  1672. "isVisible": false,
  1673. "isObserved": true,
  1674. //"domain": "global",
  1675. "serviceName": "OOZIE",
  1676. "category": "Oozie Server"
  1677. },
  1678. {
  1679. "id": "puppet var",
  1680. "name": "oozie_existing_oracle_host",
  1681. "displayName": "Database Host",
  1682. "description": "Specify the host on which the existing database is hosted",
  1683. "defaultValue": "",
  1684. "isReconfigurable": false,
  1685. "isOverridable": false,
  1686. "displayType": "host",
  1687. "isVisible": false,
  1688. "isObserved": true,
  1689. //"domain": "global",
  1690. "serviceName": "OOZIE",
  1691. "category": "Oozie Server"
  1692. },
  1693. {
  1694. "id": "puppet var",
  1695. "name": "oozie_ambari_host",
  1696. "value": "",
  1697. "defaultValue": "",
  1698. "displayName": "Database Host",
  1699. "description": "Host on which the database will be created by Ambari",
  1700. "isReconfigurable": false,
  1701. "isOverridable": false,
  1702. "displayType": "masterHost",
  1703. "isVisible": false,
  1704. //"domain": "global",
  1705. "serviceName": "OOZIE",
  1706. "category": "Oozie Server"
  1707. },
  1708. {
  1709. "id": "puppet var",
  1710. "name": "oozie_log_dir",
  1711. "displayName": "Oozie Log Dir",
  1712. "description": "Directory for oozie logs",
  1713. "defaultValue": "/var/log/oozie",
  1714. "isReconfigurable": false,
  1715. "displayType": "directory",
  1716. "isOverridable": false,
  1717. "isVisible": true,
  1718. "domain": "global",
  1719. "serviceName": "OOZIE",
  1720. "category": "Advanced"
  1721. },
  1722. {
  1723. "id": "puppet var",
  1724. "name": "oozie_pid_dir",
  1725. "displayName": "Oozie PID Dir",
  1726. "description": "Directory in which the pid files for oozie processes will be created",
  1727. "defaultValue": "/var/run/oozie",
  1728. "isReconfigurable": false,
  1729. "displayType": "directory",
  1730. "isOverridable": false,
  1731. "isVisible": true,
  1732. "domain": "global",
  1733. "serviceName": "OOZIE",
  1734. "category": "Advanced"
  1735. },
  1736. /**********************************************NAGIOS***************************************/
  1737. {
  1738. "id": "puppet var",
  1739. "name": "nagios_web_login",
  1740. "displayName": "Nagios Admin username",
  1741. "description": "Nagios Web UI Admin username",
  1742. "defaultValue": "nagiosadmin",
  1743. "isReconfigurable": false,
  1744. "displayType": "user",
  1745. "isOverridable": false,
  1746. "domain": "global",
  1747. "isVisible": true,
  1748. "serviceName": "NAGIOS",
  1749. "index": 0
  1750. },
  1751. {
  1752. "id": "puppet var",
  1753. "name": "nagios_web_password",
  1754. "displayName": "Nagios Admin password",
  1755. "description": "Nagios Web UI Admin password",
  1756. "defaultValue": "",
  1757. "isReconfigurable": true,
  1758. "displayType": "password",
  1759. "isOverridable": false,
  1760. "isVisible": true,
  1761. "domain": "global",
  1762. "serviceName": "NAGIOS",
  1763. "index": 1
  1764. },
  1765. {
  1766. "id": "puppet var",
  1767. "name": "nagios_contact",
  1768. "displayName": "Hadoop Admin email",
  1769. "description": "Hadoop Administrator email for alert notification",
  1770. "defaultValue": "",
  1771. "displayType": "email",
  1772. "isOverridable": false,
  1773. "isVisible": true,
  1774. "domain": "global",
  1775. "serviceName": "NAGIOS",
  1776. "index": 2
  1777. },
  1778. /**********************************************ZOOKEEPER***************************************/
  1779. {
  1780. "id": "puppet var",
  1781. "name": "zookeeperserver_hosts",
  1782. "displayName": "ZooKeeper Server hosts",
  1783. "value": "",
  1784. "defaultValue": "",
  1785. "description": "The host that has been assigned to run ZooKeeper Server",
  1786. "displayType": "masterHosts",
  1787. "isVisible": true,
  1788. "isOverridable": false,
  1789. "isRequired": false,
  1790. "serviceName": "ZOOKEEPER",
  1791. "category": "ZooKeeper Server",
  1792. "index": 0
  1793. },
  1794. {
  1795. "id": "puppet var",
  1796. "name": "zk_data_dir",
  1797. "displayName": "ZooKeeper directory",
  1798. "description": "Data directory for ZooKeeper",
  1799. "defaultValue": "",
  1800. "defaultDirectory": "/hadoop/zookeeper",
  1801. "isReconfigurable": false,
  1802. "displayType": "directory",
  1803. "isVisible": true,
  1804. "domain": "global",
  1805. "serviceName": "ZOOKEEPER",
  1806. "category": "ZooKeeper Server",
  1807. "index": 1
  1808. },
  1809. {
  1810. "id": "puppet var",
  1811. "name": "tickTime",
  1812. "displayName": "Length of single Tick",
  1813. "description": "The length of a single tick in milliseconds, which is the basic time unit used by ZooKeeper",
  1814. "defaultValue": "2000",
  1815. "displayType": "int",
  1816. "unit": "ms",
  1817. "isOverridable": false,
  1818. "isVisible": true,
  1819. "domain": "global",
  1820. "serviceName": "ZOOKEEPER",
  1821. "category": "ZooKeeper Server",
  1822. "index": 2
  1823. },
  1824. {
  1825. "id": "puppet var",
  1826. "name": "initLimit",
  1827. "displayName": "Ticks to allow for sync at Init",
  1828. "description": "Amount of time, in ticks to allow followers to connect and sync to a leader",
  1829. "defaultValue": "10",
  1830. "displayType": "int",
  1831. "isOverridable": false,
  1832. "isVisible": true,
  1833. "domain": "global",
  1834. "serviceName": "ZOOKEEPER",
  1835. "category": "ZooKeeper Server",
  1836. "index": 3
  1837. },
  1838. {
  1839. "id": "puppet var",
  1840. "name": "syncLimit",
  1841. "displayName": "Ticks to allow for sync at Runtime",
  1842. "description": "Amount of time, in ticks to allow followers to connect",
  1843. "defaultValue": "5",
  1844. "displayType": "int",
  1845. "isOverridable": false,
  1846. "isVisible": true,
  1847. "domain": "global",
  1848. "serviceName": "ZOOKEEPER",
  1849. "category": "ZooKeeper Server",
  1850. "index": 4
  1851. },
  1852. {
  1853. "id": "puppet var",
  1854. "name": "clientPort",
  1855. "displayName": "Port for running ZK Server",
  1856. "description": "Port for running ZooKeeper server",
  1857. "defaultValue": "2181",
  1858. "displayType": "int",
  1859. "isOverridable": false,
  1860. "isVisible": true,
  1861. "domain": "global",
  1862. "serviceName": "ZOOKEEPER",
  1863. "category": "ZooKeeper Server",
  1864. "index": 5
  1865. },
  1866. {
  1867. "id": "puppet var",
  1868. "name": "zk_log_dir",
  1869. "displayName": "ZooKeeper Log Dir",
  1870. "description": "Directory for ZooKeeper log files",
  1871. "defaultValue": "/var/log/zookeeper",
  1872. "isReconfigurable": false,
  1873. "displayType": "directory",
  1874. "isOverridable": false,
  1875. "isVisible": true,
  1876. "domain": "global",
  1877. "serviceName": "ZOOKEEPER",
  1878. "category": "Advanced",
  1879. "index": 0
  1880. },
  1881. {
  1882. "id": "puppet var",
  1883. "name": "zk_pid_dir",
  1884. "displayName": "ZooKeeper PID Dir",
  1885. "description": "Directory in which the pid files for zookeeper processes will be created",
  1886. "defaultValue": "/var/run/zookeeper",
  1887. "isReconfigurable": false,
  1888. "displayType": "directory",
  1889. "isOverridable": false,
  1890. "isVisible": true,
  1891. "domain": "global",
  1892. "serviceName": "ZOOKEEPER",
  1893. "category": "Advanced",
  1894. "index": 1
  1895. },
  1896. {
  1897. "id": "puppet var",
  1898. "name": "zk_pid_file",
  1899. "displayName": "ZooKeeper PID File",
  1900. "description": "",
  1901. "defaultValue": "/var/run/zookeeper/zookeeper_server.pid",
  1902. "isReconfigurable": false,
  1903. "displayType": "directory",
  1904. "isVisible": false,
  1905. "domain": "global",
  1906. "serviceName": "ZOOKEEPER",
  1907. "category": "Advanced"
  1908. },
  1909. /**********************************************HUE***************************************/
  1910. {
  1911. "id": "puppet var",
  1912. "name": "hueserver_host",
  1913. "displayName": "Hue Server host",
  1914. "value": "",
  1915. "defaultValue": "",
  1916. "description": "The host that has been assigned to run Hue Server",
  1917. "displayType": "masterHost",
  1918. "isOverridable": false,
  1919. "isVisible": true,
  1920. "domain": "global",
  1921. "serviceName": "HUE",
  1922. "category": "Hue Server"
  1923. },
  1924. {
  1925. "id": "puppet var",
  1926. "name": "hue_log_dir",
  1927. "displayName": "HUE Log Dir",
  1928. "description": "Directory for HUE logs",
  1929. "defaultValue": "/var/log/hue",
  1930. "isReconfigurable": false,
  1931. "displayType": "directory",
  1932. "isOverridable": false,
  1933. "isVisible": true,
  1934. "domain": "global",
  1935. "serviceName": "HUE",
  1936. "category": "Advanced"
  1937. },
  1938. {
  1939. "id": "puppet var",
  1940. "name": "hue_pid_dir",
  1941. "displayName": "HUE Pid Dir",
  1942. "description": "Directory in which the pid files for HUE processes will be created",
  1943. "defaultValue": "/var/run/hue",
  1944. "isReconfigurable": false,
  1945. "displayType": "directory",
  1946. "isOverridable": false,
  1947. "isVisible": true,
  1948. "domain": "global",
  1949. "serviceName": "HUE",
  1950. "category": "Advanced"
  1951. },
  1952. /**********************************************GANGLIA***************************************/
  1953. {
  1954. "id": "puppet var",
  1955. "name": "ganglia_conf_dir",
  1956. "displayName": "Ganglia conf directory",
  1957. "description": "",
  1958. "defaultValue": "/etc/ganglia/hdp",
  1959. "isReconfigurable": false,
  1960. "displayType": "directory",
  1961. "isVisible": false,
  1962. "domain": "global",
  1963. "serviceName": "GANGLIA",
  1964. "category": "Advanced"
  1965. },
  1966. /**********************************************MISC***************************************/
  1967. {
  1968. "id": "puppet var",
  1969. "name": "hbase_conf_dir",
  1970. "displayName": "HBase conf dir",
  1971. "description": "",
  1972. "defaultValue": "/etc/hbase",
  1973. "isRequired": false,
  1974. "displayType": "directory",
  1975. "isVisible": false,
  1976. "domain": "global",
  1977. "serviceName": "MISC",
  1978. "category": "General",
  1979. "belongsToService":[]
  1980. },
  1981. {
  1982. "id": "puppet var",
  1983. "name": "proxyuser_group",
  1984. "displayName": "Proxy group for Hive, WebHCat, and Oozie",
  1985. "description": "",
  1986. "defaultValue": "users",
  1987. "isReconfigurable": false,
  1988. "displayType": "user",
  1989. "isOverridable": false,
  1990. "isVisible": true,
  1991. "filename": "core-site.xml",
  1992. "domain": "global",
  1993. "serviceName": "MISC",
  1994. "category": "Users and Groups",
  1995. "belongsToService":["HIVE","WEBHCAT","OOZIE"]
  1996. },
  1997. {
  1998. "id": "puppet var",
  1999. "name": "dfs_datanode_address",
  2000. "displayName": "dfs_datanode_address",
  2001. "description": "",
  2002. "defaultValue": "50010",
  2003. "isReconfigurable": true,
  2004. "displayType": "int",
  2005. "isVisible": true,
  2006. "filename": "hdfs-site.xml",
  2007. "domain": "global",
  2008. "serviceName": "MISC",
  2009. "category": "Advanced",
  2010. "belongsToService":[]
  2011. },
  2012. {
  2013. "id": "puppet var",
  2014. "name": "dfs_datanode_http_address",
  2015. "displayName": "dfs_datanode_http_address",
  2016. "description": "",
  2017. "defaultValue": "50075",
  2018. "isReconfigurable": true,
  2019. "displayType": "int",
  2020. "isVisible": true,
  2021. "filename": "hdfs-site.xml",
  2022. "domain": "global",
  2023. "serviceName": "MISC",
  2024. "category": "Advanced",
  2025. "belongsToService":[]
  2026. },
  2027. {
  2028. "id": "puppet var",
  2029. "name": "gpl_artifacts_download_url",
  2030. "displayName": "gpl artifact download url",
  2031. "description": "",
  2032. "defaultValue": "",
  2033. "isReconfigurable": false,
  2034. "displayType": "advanced",
  2035. "isVisible": false,
  2036. "domain": "global",
  2037. "serviceName": "MISC",
  2038. "category": "General",
  2039. "belongsToService":[]
  2040. },
  2041. {
  2042. "id": "puppet var",
  2043. "name": "apache_artifacts_download_url",
  2044. "displayName": "apache artifact download url",
  2045. "description": "",
  2046. "defaultValue": "",
  2047. "isReconfigurable": false,
  2048. "displayType": "advanced",
  2049. "isVisible": false,
  2050. "domain": "global",
  2051. "serviceName": "MISC",
  2052. "category": "General",
  2053. "belongsToService":[]
  2054. },
  2055. {
  2056. "id": "puppet var",
  2057. "name": "ganglia_runtime_dir",
  2058. "displayName": "Ganglia runtime directory",
  2059. "description": "",
  2060. "defaultValue": "/var/run/ganglia/hdp",
  2061. "isReconfigurable": false,
  2062. "displayType": "directory",
  2063. "isVisible": false,
  2064. "domain": "global",
  2065. "serviceName": "MISC",
  2066. "category": "General",
  2067. "belongsToService":[]
  2068. },
  2069. {
  2070. "id": "puppet var",
  2071. "name": "java64_home",
  2072. "displayName": "Path to 64-bit JAVA_HOME",
  2073. "description": "Path to 64-bit JAVA_HOME. /usr/jdk/jdk1.6.0_31 is the default used by Ambari. You can override this to a specific path that contains the JDK. Note that the path must be valid on ALL hosts in your cluster.",
  2074. "defaultValue": "/usr/jdk64/jdk1.6.0_31",
  2075. "isRequired": true,
  2076. "isReconfigurable": false,
  2077. "displayType": "directory",
  2078. "isVisible": false,
  2079. "domain": "global",
  2080. "serviceName": "MISC",
  2081. "belongsToService":[]
  2082. },
  2083. {
  2084. "id": "puppet var",
  2085. "name": "run_dir",
  2086. "displayName": "Hadoop run directory",
  2087. "description": "",
  2088. "defaultValue": "/var/run/hadoop",
  2089. "isRequired": false,
  2090. "isReconfigurable": false,
  2091. "displayType": "directory",
  2092. "isVisible": false,
  2093. "domain": "global",
  2094. "serviceName": "MISC",
  2095. "category": "Advanced",
  2096. "belongsToService":[]
  2097. },
  2098. {
  2099. "id": "puppet var",
  2100. "name": "hadoop_conf_dir",
  2101. "displayName": "Hadoop conf directory",
  2102. "description": "",
  2103. "defaultValue": "/etc/hadoop/conf",
  2104. "isRequired": false,
  2105. "isReconfigurable": false,
  2106. "displayType": "directory",
  2107. "isVisible": false,
  2108. "domain": "global",
  2109. "serviceName": "MISC",
  2110. "category": "Advanced",
  2111. "belongsToService":[]
  2112. },
  2113. {
  2114. "id": "puppet var",
  2115. "name": "hdfs_user",
  2116. "displayName": "HDFS User",
  2117. "description": "User to run HDFS as",
  2118. "defaultValue": "hdfs",
  2119. "isReconfigurable": false,
  2120. "displayType": "user",
  2121. "isOverridable": false,
  2122. "isVisible": true,
  2123. "serviceName": "MISC",
  2124. "domain": "global",
  2125. "category": "Users and Groups",
  2126. "belongsToService":["HDFS"]
  2127. },
  2128. {
  2129. "id": "puppet var",
  2130. "name": "mapred_user",
  2131. "displayName": "MapReduce User",
  2132. "description": "User to run MapReduce as",
  2133. "defaultValue": "mapred",
  2134. "isReconfigurable": false,
  2135. "displayType": "user",
  2136. "isOverridable": false,
  2137. "isVisible": true,
  2138. "domain": "global",
  2139. "serviceName": "MISC",
  2140. "category": "Users and Groups",
  2141. "belongsToService":["MAPREDUCE2"]
  2142. },
  2143. {
  2144. "id": "puppet var",
  2145. "name": "yarn_user",
  2146. "displayName": "YARN User",
  2147. "description": "User to run YARN as",
  2148. "defaultValue": "yarn",
  2149. "isReconfigurable": false,
  2150. "displayType": "user",
  2151. "isOverridable": false,
  2152. "isVisible": true,
  2153. "domain": "global",
  2154. "serviceName": "MISC",
  2155. "category": "Users and Groups",
  2156. "belongsToService":["YARN"]
  2157. },
  2158. {
  2159. "id": "puppet var",
  2160. "name": "hbase_user",
  2161. "displayName": "HBase User",
  2162. "description": "User to run HBase as",
  2163. "defaultValue": "hbase",
  2164. "isReconfigurable": false,
  2165. "displayType": "user",
  2166. "isOverridable": false,
  2167. "isVisible": true,
  2168. "domain": "global",
  2169. "serviceName": "MISC",
  2170. "category": "Users and Groups",
  2171. "belongsToService":["HBASE"]
  2172. },
  2173. {
  2174. "id": "puppet var",
  2175. "name": "hive_user",
  2176. "displayName": "Hive User",
  2177. "description": "User to run Hive as",
  2178. "defaultValue": "hive",
  2179. "isReconfigurable": false,
  2180. "displayType": "user",
  2181. "isOverridable": false,
  2182. "isVisible": true,
  2183. "domain": "global",
  2184. "serviceName": "MISC",
  2185. "category": "Users and Groups",
  2186. "belongsToService":["HIVE"]
  2187. },
  2188. {
  2189. "id": "puppet var",
  2190. "name": "hcat_user",
  2191. "displayName": "HCat User",
  2192. "description": "User to run HCatalog as",
  2193. "defaultValue": "hcat",
  2194. "isReconfigurable": false,
  2195. "displayType": "user",
  2196. "isOverridable": false,
  2197. "isVisible": true,
  2198. "domain": "global",
  2199. "serviceName": "MISC",
  2200. "category": "Users and Groups",
  2201. "belongsToService":["HCATALOG"]
  2202. },
  2203. {
  2204. "id": "puppet var",
  2205. "name": "webhcat_user",
  2206. "displayName": "WebHCat User",
  2207. "description": "User to run WebHCat as",
  2208. "defaultValue": "hcat",
  2209. "isReconfigurable": false,
  2210. "displayType": "user",
  2211. "isOverridable": false,
  2212. "isVisible": true,
  2213. "domain": "global",
  2214. "serviceName": "MISC",
  2215. "category": "Users and Groups",
  2216. "belongsToService":["WEBHCAT"]
  2217. },
  2218. {
  2219. "id": "puppet var",
  2220. "name": "oozie_user",
  2221. "displayName": "Oozie User",
  2222. "description": "User to run Oozie as",
  2223. "defaultValue": "oozie",
  2224. "isReconfigurable": false,
  2225. "displayType": "user",
  2226. "isOverridable": false,
  2227. "isVisible": true,
  2228. "domain": "global",
  2229. "serviceName": "MISC",
  2230. "category": "Users and Groups",
  2231. "belongsToService":["OOZIE"]
  2232. },
  2233. {
  2234. "id": "puppet var",
  2235. "name": "zk_user",
  2236. "displayName": "ZooKeeper User",
  2237. "description": "User to run ZooKeeper as",
  2238. "defaultValue": "zookeeper",
  2239. "isReconfigurable": false,
  2240. "displayType": "user",
  2241. "isOverridable": false,
  2242. "isVisible": true,
  2243. "domain": "global",
  2244. "serviceName": "MISC",
  2245. "category": "Users and Groups",
  2246. "belongsToService":["ZOOKEEPER"]
  2247. },
  2248. {
  2249. "id": "puppet var",
  2250. "name": "gmetad_user",
  2251. "displayName": "Ganglia User",
  2252. "description": "The user used to run Ganglia",
  2253. "defaultValue": "nobody",
  2254. "isReconfigurable": false,
  2255. "displayType": "advanced",
  2256. "isOverridable": false,
  2257. "isVisible": true,
  2258. "domain": "global",
  2259. "serviceName": "MISC",
  2260. "category": "Users and Groups",
  2261. "belongsToService":["GANGLIA"]
  2262. },
  2263. {
  2264. "id": "puppet var",
  2265. "name": "gmond_user",
  2266. "displayName": "Gmond User",
  2267. "description": "The user used to run gmond for Ganglia",
  2268. "defaultValue": "nobody",
  2269. "isReconfigurable": false,
  2270. "displayType": "advanced",
  2271. "isOverridable": false,
  2272. "isVisible": false,
  2273. "domain": "global",
  2274. "serviceName":"MISC",
  2275. "category": "Users and Groups",
  2276. "belongsToService":[]
  2277. },
  2278. {
  2279. "id": "puppet var",
  2280. "name": "nagios_user",
  2281. "displayName": "Nagios User",
  2282. "description": "User to run Nagios as",
  2283. "defaultValue": "nagios",
  2284. "isReconfigurable": false,
  2285. "displayType": "user",
  2286. "isOverridable": false,
  2287. "domain": "global",
  2288. "isVisible": true,
  2289. "serviceName":"MISC",
  2290. "category": "Users and Groups",
  2291. "belongsToService":["NAGIOS"]
  2292. },
  2293. {
  2294. "id": "puppet var",
  2295. "name": "nagios_group",
  2296. "displayName": "Nagios Group",
  2297. "description": "Nagios Group",
  2298. "defaultValue": "nagios",
  2299. "isReconfigurable": false,
  2300. "displayType": "user",
  2301. "isOverridable": false,
  2302. "domain": "global",
  2303. "isVisible": true,
  2304. "serviceName":"MISC",
  2305. "category": "Users and Groups",
  2306. "belongsToService":["NAGIOS"]
  2307. },
  2308. {
  2309. "id": "puppet var",
  2310. "name": "smokeuser",
  2311. "displayName": "Smoke Test User",
  2312. "description": "The user used to run service smoke tests",
  2313. "defaultValue": "ambari-qa",
  2314. "isReconfigurable": false,
  2315. "displayType": "user",
  2316. "isOverridable": false,
  2317. "isVisible": App.supports.customizeSmokeTestUser,
  2318. "domain": "global",
  2319. "serviceName": "MISC",
  2320. "category": "Users and Groups",
  2321. "belongsToService":["HDFS"]
  2322. },
  2323. {
  2324. "id": "puppet var",
  2325. "name": "user_group",
  2326. "displayName": "Group",
  2327. "description": "Group that the users specified above belong to",
  2328. "defaultValue": "hadoop",
  2329. "isReconfigurable": false,
  2330. "displayType": "user",
  2331. "isOverridable": false,
  2332. "isVisible": true,
  2333. "domain": "global",
  2334. "serviceName": "MISC",
  2335. "category": "Users and Groups",
  2336. "belongsToService":["HDFS"]
  2337. },
  2338. {
  2339. "id": "puppet var",
  2340. "name": "rrdcached_base_dir",
  2341. "displayName": "Ganglia rrd cached base directory",
  2342. "description": "Default directory for saving the rrd files on ganglia server",
  2343. "defaultValue": "/var/lib/ganglia/rrds",
  2344. "displayType": "directory",
  2345. "isOverridable": false,
  2346. "domain": "global",
  2347. "serviceName": "MISC",
  2348. "category": "General",
  2349. "belongsToService":["GANGLIA"]
  2350. }
  2351. ]
  2352. };