config_properties.js 70 KB

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