config_properties.js 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313
  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 host",
  70. "value": "",
  71. "defaultValue": "",
  72. "description": "The host that has been assigned to run HBase Master",
  73. "displayType": "masterHost",
  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 Region Servers maximum Java heap size",
  123. "description": "Maximum Java heap size for HBase Region Servers (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 Region Server 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_upperlimitt",
  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": "/grid/0/hadoop/hdfs/namenode\n/grid/1/hadoop/hdfs/namenode\n",
  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": "/grid/0/hadoop/hdfs/namesecondary",
  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": "/tmp/hadoop/hdfs/data",
  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. "isReconfigurable": false,
  486. "displayType": "directory",
  487. "isVisible": true,
  488. "domain": "global",
  489. "serviceName": "HDFS",
  490. "category": "Advanced"
  491. },
  492. {
  493. "id": "puppet var",
  494. "name": "hadoop_pid_dir_prefix",
  495. "displayName": "Hadoop PID Dir Prefix",
  496. "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}.",
  497. "defaultValue": "/var/run/hadoop",
  498. "isReconfigurable": false,
  499. "displayType": "directory",
  500. "isVisible": true,
  501. "domain": "global",
  502. "serviceName": "HDFS",
  503. "category": "Advanced"
  504. },
  505. {
  506. "id": "puppet var",
  507. "name": "dfs_support_append",
  508. "displayName": "Append enabled",
  509. "description": "Whether to enable HDFS Append feature",
  510. "defaultValue": true,
  511. "displayType": "checkbox",
  512. "isVisible": true,
  513. "domain": "global",
  514. "serviceName": "HDFS"
  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. "isReconfigurable": false,
  622. "displayType": "int",
  623. "unit": "seconds",
  624. "isVisible": true,
  625. "domain": "global",
  626. "filename": "core-site.xml",
  627. "serviceName": "HDFS"
  628. },
  629. {
  630. "id": "puppet var",
  631. "name": "fs_checkpoint_size",
  632. "displayName": "HDFS Maximum Edit Log Size for Checkpointing",
  633. "description": "Maximum size of the edits log file that forces an urgent checkpoint even if the maximum checkpoint delay is not reached",
  634. "defaultValue": "0.5",
  635. "isReconfigurable": false,
  636. "displayType": "float",
  637. "unit": "GB",
  638. "isVisible": true,
  639. "domain": "global",
  640. "filename": "core-site.xml",
  641. "serviceName": "HDFS"
  642. },
  643. {
  644. "id": "puppet var",
  645. "name": "proxyuser_group",
  646. "displayName": "Proxy group for Hive, WebHCat, and Oozie",
  647. "description": "",
  648. "defaultValue": "users",
  649. "isReconfigurable": false,
  650. "displayType": "advanced",
  651. "isVisible": true,
  652. "filename": "core-site.xml",
  653. "domain": "global",
  654. "serviceName": "MISC",
  655. "category": "Users and Groups"
  656. },
  657. {
  658. "id": "puppet var",
  659. "name": "dfs_exclude",
  660. "displayName": "Exclude hosts",
  661. "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.",
  662. "defaultValue": "dfs.exclude",
  663. "isReconfigurable": false,
  664. "displayType": "advanced",
  665. "isVisible": true,
  666. "filename": "hdfs-site.xml",
  667. "domain": "global",
  668. "serviceName": "HDFS",
  669. "category": "Advanced"
  670. },
  671. {
  672. "id": "puppet var",
  673. "name": "dfs_include",
  674. "displayName": "Include hosts",
  675. "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.",
  676. "defaultValue": "dfs.include",
  677. "isReconfigurable": false,
  678. "displayType": "advanced",
  679. "isVisible": true,
  680. "filename": "hdfs-site.xml",
  681. "domain": "global",
  682. "serviceName": "HDFS",
  683. "category": "Advanced"
  684. },
  685. {
  686. "id": "puppet var",
  687. "name": "dfs_replication",
  688. "displayName": "Block replication",
  689. "description": "Default block replication.",
  690. "displayType": "int",
  691. "defaultValue": "3",
  692. "isReconfigurable": false,
  693. "isVisible": true,
  694. "filename": "hdfs-site.xml",
  695. "domain": "global",
  696. "serviceName": "HDFS",
  697. "category": "Advanced"
  698. },
  699. {
  700. "id": "puppet var",
  701. "name": "dfs_block_local_path_access_user",
  702. "displayName": "dfs.block.local-path-access.user",
  703. "description": "the user who is allowed to perform short circuit reads",
  704. "displayType": "advanced",
  705. "defaultValue": "hbase",
  706. "isReconfigurable": false,
  707. "isVisible": true,
  708. "filename": "hdfs-site.xml",
  709. "domain": "global",
  710. "serviceName": "HDFS",
  711. "category": "Advanced"
  712. },
  713. {
  714. "id": "puppet var",
  715. "name": "dfs_datanode_address",
  716. "displayName": "dfs_datanode_address",
  717. "description": "",
  718. "defaultValue": "50010",
  719. "isReconfigurable": true,
  720. "displayType": "int",
  721. "isVisible": true,
  722. "filename": "hdfs-site.xml",
  723. "domain": "global",
  724. "serviceName": "MISC",
  725. "category": "Advanced"
  726. },
  727. {
  728. "id": "puppet var",
  729. "name": "dfs_datanode_http_address",
  730. "displayName": "dfs_datanode_http_address",
  731. "description": "",
  732. "defaultValue": "50075",
  733. "isReconfigurable": true,
  734. "displayType": "int",
  735. "isVisible": true,
  736. "filename": "hdfs-site.xml",
  737. "domain": "global",
  738. "serviceName": "MISC",
  739. "category": "Advanced"
  740. },
  741. {
  742. "id": "puppet var",
  743. "name": "dfs_datanode_http_address",
  744. "displayName": "dfs_datanode_http_address",
  745. "description": "",
  746. "defaultValue": "50075",
  747. "isReconfigurable": true,
  748. "displayType": "int",
  749. "isVisible": true,
  750. "filename": "hdfs-site.xml",
  751. "domain": "global",
  752. "serviceName": "MISC",
  753. "category": "Advanced"
  754. },
  755. {
  756. "id": "puppet var",
  757. "name": "dfs_datanode_data_dir_perm",
  758. "displayName": "dfs_datanode_data_dir_perm",
  759. "description": "",
  760. "defaultValue": "750",
  761. "isReconfigurable": true,
  762. "displayType": "int",
  763. "isVisible": false,
  764. "filename": "hdfs-site.xml",
  765. "domain": "global",
  766. "serviceName": "HDFS",
  767. "category": "Advanced"
  768. },
  769. {
  770. "id": "puppet var",
  771. "name": "security_enabled",
  772. "displayName": "Hadoop Security",
  773. "description": "Enable hadoop security",
  774. "defaultValue": false,
  775. "isRequired": false,
  776. "displayType": "checkbox",
  777. "isVisible": false,
  778. "domain": "global",
  779. "serviceName": "HDFS",
  780. "category": "Advanced"
  781. },
  782. {
  783. "id": "puppet var",
  784. "name": "kerberos_domain",
  785. "displayName": "Kerberos realm",
  786. "description": "Kerberos realm",
  787. "defaultValue": "EXAMPLE.COM",
  788. "isRequired": true,
  789. "isVisible": false,
  790. "domain": "global",
  791. "serviceName": "HDFS",
  792. "category": "Advanced"
  793. },
  794. {
  795. "id": "puppet var",
  796. "name": "kadmin_pw",
  797. "displayName": "password",
  798. "description": "Kerberos admin password",
  799. "defaultValue": "",
  800. "isRequired": true,
  801. "displayType": "password",
  802. "isVisible": false,
  803. "domain": "global",
  804. "serviceName": "HDFS",
  805. "category": "Advanced"
  806. },
  807. {
  808. "id": "puppet var",
  809. "name": "keytab_path",
  810. "displayName": "Keytab directory",
  811. "description": "Kerberos admin password",
  812. "defaultValue": "/etc/security/keytabs",
  813. "isRequired": true,
  814. "displayType": "advanced",
  815. "isVisible": false,
  816. "domain": "global",
  817. "serviceName": "HDFS",
  818. "category": "Advanced"
  819. },
  820. {
  821. "id": "puppet var",
  822. "name": "hivemetastore_host",
  823. "displayName": "Hive Metastore host",
  824. "value": "",
  825. "defaultValue": "",
  826. "description": "The host that has been assigned to run Hive Metastore",
  827. "displayType": "masterHost",
  828. "isVisible": true,
  829. "serviceName": "HIVE",
  830. "category": "Hive Metastore"
  831. },
  832. /* Comment out the other hive_database and uncomment this for Hive with Postgres support
  833. {
  834. "id": "puppet var",
  835. "name": "hive_database",
  836. "displayName": "Hive Database",
  837. "value": "",
  838. "defaultValue": "New PostgreSQL Database",
  839. "options": [
  840. {
  841. displayName: 'New PostgreSQL Database',
  842. foreignKeys: ['hive_ambari_database', 'hive_ambari_host']
  843. },
  844. {
  845. displayName: 'Existing Database',
  846. foreignKeys: ['hive_existing_database', 'hive_existing_host']
  847. }
  848. ],
  849. "description": "PostgreSQL will be installed by Ambari. Any other database will have to be installed by the user.",
  850. "displayType": "radio button",
  851. "radioName": "hive-database",
  852. "isVisible": true,
  853. "domain": "global",
  854. "serviceName": "HIVE",
  855. "category": "Hive Metastore"
  856. },
  857. */
  858. {
  859. "id": "puppet var",
  860. "name": "hive_database",
  861. "displayName": "Hive Database",
  862. "value": "",
  863. "defaultValue": "New MySQL Database",
  864. "options": [
  865. {
  866. displayName: 'New MySQL Database',
  867. foreignKeys: ['hive_ambari_database', 'hive_ambari_host']
  868. },
  869. {
  870. displayName: 'Existing MySQL Database',
  871. foreignKeys: ['hive_existing_database', 'hive_existing_host']
  872. }
  873. ],
  874. "description": "MySQL will be installed by Ambari",
  875. "displayType": "radio button",
  876. "radioName": "hive-database",
  877. "isVisible": true,
  878. "domain": "global",
  879. "serviceName": "HIVE",
  880. "category": "Hive Metastore"
  881. },
  882. {
  883. "id": "puppet var",
  884. "name": "hive_existing_database",
  885. "displayName": "Database Type",
  886. "value": "",
  887. "defaultValue": "MySQL",
  888. "description": "Using an existing database for Hive Metastore",
  889. "displayType": "masterHost",
  890. "isVisible": false,
  891. "domain": "global",
  892. "serviceName": "HIVE",
  893. "category": "Hive Metastore"
  894. },
  895. /* Uncomment for Hive with Postgres support
  896. {
  897. "id": "puppet var",
  898. "name": "hive_existing_database",
  899. "displayName": "Hive Database",
  900. "value": "",
  901. "defaultValue": "MySQL",
  902. "description": "Select the database, if you already have existing one for Hive Metastore.",
  903. "displayType": "string",
  904. "isVisible": false,
  905. "options": ['MySQL', 'PostgreSQL'],
  906. "domain": "global",
  907. "serviceName": "HIVE",
  908. "category": "Hive Metastore"
  909. },
  910. {
  911. "id": "puppet var",
  912. "name": "hive_existing_database",
  913. "displayName": "Hive Database",
  914. "value": "",
  915. "defaultValue": "MySQL",
  916. "description": "Select the database, if you already have existing one for Hive Metastore.",
  917. "displayType": "combobox",
  918. "isVisible": false,
  919. "options": ['MySQL', 'PostgreSQL'],
  920. "domain": "global",
  921. "serviceName": "HIVE",
  922. "category": "Hive Metastore"
  923. },
  924. */
  925. {
  926. "id": "puppet var",
  927. "name": "hive_existing_host",
  928. "displayName": "Database host",
  929. "description": "Specify the host on which the existing database is hosted",
  930. "defaultValue": "",
  931. "isReconfigurable": false,
  932. "displayType": "host",
  933. "isVisible": false,
  934. "domain": "global",
  935. "serviceName": "HIVE",
  936. "category": "Hive Metastore"
  937. },
  938. {
  939. "id": "puppet var",
  940. "name": "hive_ambari_database",
  941. "displayName": "Database Type",
  942. "value": "",
  943. "defaultValue": "MySQL",
  944. "description": "MySQL will be installed by Ambari",
  945. "displayType": "masterHost",
  946. "isVisible": true,
  947. "domain": "global",
  948. "serviceName": "HIVE",
  949. "category": "Hive Metastore"
  950. },
  951. {
  952. "id": "puppet var",
  953. "name": "hive_ambari_host",
  954. "value": "",
  955. "defaultValue": "",
  956. "displayName": "PostgreSQL host",
  957. "description": "Host on which the PostgreSQL database will be created by Ambari",
  958. "isReconfigurable": false,
  959. "displayType": "masterHost",
  960. "isVisible": true,
  961. "domain": "global",
  962. "serviceName": "HIVE",
  963. "category": "Hive Metastore"
  964. },
  965. {
  966. "id": "puppet var",
  967. "name": "hive_database_name",
  968. "displayName": "Database name",
  969. "description": "Database name used as the Hive Metastore",
  970. "defaultValue": "hive",
  971. "isReconfigurable": false,
  972. "displayType": "host",
  973. "isVisible": true,
  974. "domain": "global",
  975. "serviceName": "HIVE",
  976. "category": "Hive Metastore"
  977. },
  978. {
  979. "id": "puppet var",
  980. "name": "hive_metastore_user_name",
  981. "displayName": "Database user",
  982. "description": "Database user name to use to connect to the database",
  983. "defaultValue": "hive",
  984. "isReconfigurable": false,
  985. "displayType": "user",
  986. "isVisible": true,
  987. "domain": "global",
  988. "serviceName": "HIVE",
  989. "category": "Hive Metastore"
  990. },
  991. {
  992. "id": "puppet var",
  993. "name": "hive_metastore_user_passwd",
  994. "displayName": "Database password",
  995. "description": "Database password to use to connect to the PostgreSQL database",
  996. "defaultValue": "",
  997. "isReconfigurable": false,
  998. "displayType": "password",
  999. "isVisible": true,
  1000. "domain": "global",
  1001. "serviceName": "HIVE",
  1002. "category": "Hive Metastore"
  1003. },
  1004. {
  1005. "id": "puppet var",
  1006. "name": "hive_metastore_port",
  1007. "displayName": "Hive metastore port",
  1008. "description": "",
  1009. "defaultValue": "9083",
  1010. "isReconfigurable": false,
  1011. "displayType": "int",
  1012. "isVisible": false,
  1013. "domain": "global",
  1014. "serviceName": "HIVE",
  1015. "category": "Advanced"
  1016. },
  1017. {
  1018. "id": "puppet var",
  1019. "name": "hive_lib",
  1020. "displayName": "Hive library",
  1021. "description": "",
  1022. "defaultValue": "/usr/lib/hive/lib/",
  1023. "isReconfigurable": false,
  1024. "displayType": "directory",
  1025. "isVisible": false,
  1026. "domain": "global",
  1027. "serviceName": "HIVE",
  1028. "category": "Advanced"
  1029. },
  1030. {
  1031. "id": "puppet var",
  1032. "name": "hive_conf_dir",
  1033. "displayName": "Hive lconf directory",
  1034. "description": "",
  1035. "defaultValue": "/etc/hive/conf",
  1036. "isReconfigurable": false,
  1037. "displayType": "directory",
  1038. "isVisible": false,
  1039. "domain": "global",
  1040. "serviceName": "HIVE",
  1041. "category": "Advanced"
  1042. },
  1043. {
  1044. "id": "puppet var",
  1045. "name": "hive_dbroot",
  1046. "displayName": "Hive lconf directory",
  1047. "description": "",
  1048. "defaultValue": "/usr/lib/hive/lib",
  1049. "isReconfigurable": false,
  1050. "displayType": "directory",
  1051. "isVisible": false,
  1052. "domain": "global",
  1053. "serviceName": "HIVE",
  1054. "category": "Advanced"
  1055. },
  1056. {
  1057. "id": "puppet var",
  1058. "name": "hive_log_dir",
  1059. "displayName": "Hive Log Dir",
  1060. "description": "Directory for Hive log files",
  1061. "defaultValue": "/var/log/hive",
  1062. "isReconfigurable": false,
  1063. "displayType": "directory",
  1064. "isVisible": false,
  1065. "domain": "global",
  1066. "serviceName": "HIVE",
  1067. "category": "Advanced"
  1068. },
  1069. {
  1070. "id": "puppet var",
  1071. "name": "hive_pid_dir",
  1072. "displayName": "Hive PID Dir",
  1073. "description": "Directory in which the PID files for Hive processes will be created",
  1074. "defaultValue": "/var/run/hive",
  1075. "isReconfigurable": false,
  1076. "displayType": "directory",
  1077. "isVisible": true,
  1078. "domain": "global",
  1079. "serviceName": "HIVE",
  1080. "category": "Advanced"
  1081. },
  1082. {
  1083. "id": "puppet var",
  1084. "name": "gpl_artifacts_download_url",
  1085. "displayName": "gpl artifact download url",
  1086. "description": "",
  1087. "defaultValue": "",
  1088. "isReconfigurable": false,
  1089. "displayType": "advanced",
  1090. "isVisible": false,
  1091. "domain": "global",
  1092. "serviceName": "MISC",
  1093. "category": "General"
  1094. },
  1095. {
  1096. "id": "puppet var",
  1097. "name": "apache_artifacts_download_url",
  1098. "displayName": "apache artifact download url",
  1099. "description": "",
  1100. "defaultValue": "",
  1101. "isReconfigurable": false,
  1102. "displayType": "advanced",
  1103. "isVisible": false,
  1104. "domain": "global",
  1105. "serviceName": "MISC",
  1106. "category": "General"
  1107. },
  1108. {
  1109. "id": "puppet var",
  1110. "name": "mysql_connector_url",
  1111. "displayName": "MySQL connector url",
  1112. "description": "",
  1113. "defaultValue": "${download_url}/mysql-connector-java-5.1.18.zip",
  1114. "isReconfigurable": false,
  1115. "displayType": "directory",
  1116. "isVisible": false,
  1117. "domain": "global",
  1118. "serviceName": "HIVE",
  1119. "category": "Advanced"
  1120. },
  1121. {
  1122. "id": "puppet var",
  1123. "name": "hive_aux_jars_path",
  1124. "displayName": "Hive auxilary jar path",
  1125. "description": "",
  1126. "defaultValue": "/usr/lib/hcatalog/share/hcatalog/hcatalog-core.jar",
  1127. "isReconfigurable": false,
  1128. "displayType": "directory",
  1129. "isVisible": false,
  1130. "domain": "global",
  1131. "serviceName": "HIVE",
  1132. "category": "Advanced"
  1133. },
  1134. {
  1135. "id": "puppet var",
  1136. "name": "ganglia_conf_dir",
  1137. "displayName": "Ganglia conf directory",
  1138. "description": "",
  1139. "defaultValue": "/etc/ganglia/hdp",
  1140. "isReconfigurable": false,
  1141. "displayType": "directory",
  1142. "isVisible": false,
  1143. "domain": "global",
  1144. "serviceName": "GANGLIA",
  1145. "category": "Advanced"
  1146. },
  1147. {
  1148. "id": "puppet var",
  1149. "name": "ganglia_runtime_dir",
  1150. "displayName": "Ganglia runtime directory",
  1151. "description": "",
  1152. "defaultValue": "/var/run/ganglia/hdp",
  1153. "isReconfigurable": false,
  1154. "displayType": "directory",
  1155. "isVisible": false,
  1156. "domain": "global",
  1157. "serviceName": "MISC",
  1158. "category": "General"
  1159. },
  1160. {
  1161. "id": "puppet var",
  1162. "name": "gmetad_user",
  1163. "displayName": "gmetad_user",
  1164. "description": "",
  1165. "defaultValue": "nobody",
  1166. "isReconfigurable": false,
  1167. "displayType": "advanced",
  1168. "isVisible": false,
  1169. "domain": "global",
  1170. "serviceName": "MISC",
  1171. "category": "Users and Groups"
  1172. },
  1173. {
  1174. "id": "puppet var",
  1175. "name": "gmond_user",
  1176. "displayName": "gmond_user",
  1177. "description": "",
  1178. "defaultValue": "nobody",
  1179. "isReconfigurable": false,
  1180. "displayType": "advanced",
  1181. "isVisible": false,
  1182. "domain": "global",
  1183. "serviceName": "MISC",
  1184. "category": "Users and Groups"
  1185. },
  1186. {
  1187. "id": "puppet var",
  1188. "name": "ganglia_shell_cmds_dir",
  1189. "displayName": "ganglia_shell_cmds_dir",
  1190. "description": "",
  1191. "defaultValue": "/usr/libexec/hdp/ganglia",
  1192. "isReconfigurable": false,
  1193. "displayType": "directory",
  1194. "isVisible": false,
  1195. "domain": "global",
  1196. "serviceName": "MISC",
  1197. "category": "General"
  1198. },
  1199. {
  1200. "id": "puppet var",
  1201. "name": "webserver_group",
  1202. "displayName": "ganglia_shell_cmds_dir",
  1203. "description": "",
  1204. "defaultValue": "apache",
  1205. "isReconfigurable": false,
  1206. "displayType": "advanced",
  1207. "isVisible": false,
  1208. "domain": "global",
  1209. "serviceName": "MISC",
  1210. "category": "General"
  1211. },
  1212. {
  1213. "id": "puppet var",
  1214. "name": "hcat_log_dir",
  1215. "displayName": "HCat Log Dir",
  1216. "description": "Directory for HCatalog log files",
  1217. "defaultValue": "/var/log/hcatalog",
  1218. "isReconfigurable": false,
  1219. "displayType": "directory",
  1220. "isVisible": true,
  1221. "domain": "global",
  1222. "serviceName": "HIVE",
  1223. "category": "Advanced"
  1224. },
  1225. {
  1226. "id": "puppet var",
  1227. "name": "hcat_pid_dir",
  1228. "displayName": "HCat PID Dir",
  1229. "description": "Directory in which the PID files for HCatalog processes will be created",
  1230. "defaultValue": "/var/run/hcatalog",
  1231. "isReconfigurable": false,
  1232. "displayType": "directory",
  1233. "isVisible": true,
  1234. "domain": "global",
  1235. "serviceName": "HIVE",
  1236. "category": "Advanced"
  1237. },
  1238. {
  1239. "id": "puppet var",
  1240. "name": "jobtracker_host",
  1241. "displayName": "JobTracker host",
  1242. "value": "",
  1243. "defaultValue": "",
  1244. "description": "The host that has been assigned to run JobTracker",
  1245. "displayType": "masterHost",
  1246. "isVisible": true,
  1247. "domain": "global",
  1248. "serviceName": "MAPREDUCE",
  1249. "category": "JobTracker"
  1250. },
  1251. {
  1252. "id": "puppet var",
  1253. "name": "tasktracker_hosts",
  1254. "displayName": "TaskTracer hosts",
  1255. "value": "",
  1256. "defaultValue": "",
  1257. "description": "The hosts that have been assigned to run TaskTracker",
  1258. "displayType": "slaveHosts",
  1259. "isVisible": true,
  1260. "isRequired": false,
  1261. "domain": "tasktracker-global",
  1262. "serviceName": "MAPREDUCE",
  1263. "category": "TaskTracker"
  1264. },
  1265. {
  1266. "id": "puppet var",
  1267. "name": "mapred_local_dir",
  1268. "displayName": "MapReduce local directories",
  1269. "description": "Directories for MapReduce to store intermediate data files",
  1270. "defaultValue": "/grid/0/hadoop/mapred\n/grid/1/hadoop/mapred\n",
  1271. "defaultDirectory": "hadoop/mapred",
  1272. "displayType": "directories",
  1273. "isReconfigurable": false,
  1274. "isVisible": true,
  1275. "domain": "tasktracker-global",
  1276. "serviceName": "MAPREDUCE",
  1277. "category": "TaskTracker"
  1278. },
  1279. {
  1280. "id": "puppet var",
  1281. "name": "mapred_system_dir",
  1282. "displayName": "MapReduce system directories",
  1283. "description": "",
  1284. "defaultValue": "",
  1285. "displayType": "directories",
  1286. "isReconfigurable": false,
  1287. "isVisible": true,
  1288. "isRequired": false,
  1289. "domain": "global",
  1290. "serviceName": "MAPREDUCE",
  1291. "category": "Advanced"
  1292. },
  1293. {
  1294. "id": "puppet var",
  1295. "name": "scheduler_name",
  1296. "displayName": "MapReduce Capacity Scheduler",
  1297. "description": "The scheduler to use for scheduling of MapReduce jobs",
  1298. "defaultValue": "org.apache.hadoop.mapred.CapacityTaskScheduler",
  1299. "displayType": "directory",
  1300. "isVisible": true,
  1301. "serviceName": "MAPREDUCE"
  1302. },
  1303. {
  1304. "id": "puppet var",
  1305. "name": "jtnode_opt_newsize",
  1306. "displayName": "JobTracker new generation size",
  1307. "description": "Default size of Java new generation size for JobTracker in MB (Java option -XX:NewSize)",
  1308. "defaultValue": "200",
  1309. "displayType": "int",
  1310. "unit": "MB",
  1311. "isVisible": true,
  1312. "domain": "global",
  1313. "serviceName": "MAPREDUCE",
  1314. "category": "JobTracker"
  1315. },
  1316. {
  1317. "id": "puppet var",
  1318. "name": "jtnode_opt_maxnewsize",
  1319. "displayName": "JobTracker maximum new generation size",
  1320. "description": "Maximum size of Java new generation for JobTracker in MB (Java option -XX:MaxNewSize)",
  1321. "defaultValue": "200",
  1322. "displayType": "int",
  1323. "unit": "MB",
  1324. "isVisible": true,
  1325. "domain": "global",
  1326. "serviceName": "MAPREDUCE",
  1327. "category": "JobTracker"
  1328. },
  1329. {
  1330. "id": "puppet var",
  1331. "name": "jtnode_heapsize",
  1332. "displayName": "JobTracker maximum Java heap size",
  1333. "description": "Maximum Java heap size for JobTracker in MB (Java option -Xmx)",
  1334. "defaultValue": "1024",
  1335. "displayType": "int",
  1336. "unit": "MB",
  1337. "isVisible": true,
  1338. "domain": "global",
  1339. "serviceName": "MAPREDUCE",
  1340. "category": "JobTracker"
  1341. },
  1342. {
  1343. "id": "puppet var",
  1344. "name": "mapred_map_tasks_max",
  1345. "displayName": "Number of Map slots per node",
  1346. "description": "Number of slots that Map tasks that run simultaneously can occupy on a TaskTracker",
  1347. "defaultValue": "4",
  1348. "displayType": "int",
  1349. "isVisible": true,
  1350. "domain": "tasktracker-global",
  1351. "serviceName": "MAPREDUCE",
  1352. "category": "TaskTracker"
  1353. },
  1354. {
  1355. "id": "puppet var",
  1356. "name": "mapred_red_tasks_max",
  1357. "displayName": "Number of Reduce slots per node",
  1358. "description": "Number of slots that Reduce tasks that run simultaneously can occupy on a TaskTracker.",
  1359. "defaultValue": "2",
  1360. "displayType": "int",
  1361. "isVisible": true,
  1362. "isRequired": false,
  1363. "domain": "tasktracker-global",
  1364. "serviceName": "MAPREDUCE",
  1365. "category": "TaskTracker"
  1366. },
  1367. {
  1368. "id": "puppet var",
  1369. "name": "mapred_cluster_map_mem_mb",
  1370. "displayName": "Cluster's Map slot size (virtual memory)",
  1371. "description": "The virtual memory size of a single Map slot in the MapReduce framework",
  1372. "defaultValue": "-1",
  1373. "displayType": "int",
  1374. "unit": "MB",
  1375. "isVisible": true,
  1376. "domain": "global",
  1377. "serviceName": "MAPREDUCE"
  1378. },
  1379. {
  1380. "id": "puppet var",
  1381. "name": "mapred_cluster_red_mem_mb",
  1382. "displayName": "Cluster's Reduce slot size (virtual memory)",
  1383. "description": "The virtual memory size of a single Reduce slot in the MapReduce framework",
  1384. "defaultValue": "-1",
  1385. "displayType": "int",
  1386. "unit": "MB",
  1387. "isVisible": true,
  1388. "domain": "global",
  1389. "serviceName": "MAPREDUCE"
  1390. },
  1391. {
  1392. "id": "puppet var",
  1393. "name": "mapred_cluster_max_map_mem_mb",
  1394. "displayName": "Upper limit on virtual memory for single Map task",
  1395. "description": "Upper limit on virtual memory size for a single Map task of any MapReduce job",
  1396. "defaultValue": "-1",
  1397. "displayType": "int",
  1398. "unit": "MB",
  1399. "isVisible": true,
  1400. "domain": "global",
  1401. "serviceName": "MAPREDUCE"
  1402. },
  1403. {
  1404. "id": "puppet var",
  1405. "name": "mapred_cluster_max_red_mem_mb",
  1406. "displayName": "Upper limit on virtual memory for single Reduce task",
  1407. "description": "Upper limit on virtual memory size for a single Reduce task of any MapReduce job",
  1408. "defaultValue": "-1",
  1409. "displayType": "int",
  1410. "unit": "MB",
  1411. "isVisible": true,
  1412. "domain": "global",
  1413. "serviceName": "MAPREDUCE"
  1414. },
  1415. {
  1416. "id": "puppet var",
  1417. "name": "mapred_job_map_mem_mb",
  1418. "displayName": "Default virtual memory for a job's map-task",
  1419. "description": "Virtual memory for single Map task",
  1420. "defaultValue": "-1",
  1421. "displayType": "int",
  1422. "unit": "MB",
  1423. "isVisible": true,
  1424. "domain": "global",
  1425. "serviceName": "MAPREDUCE"
  1426. },
  1427. {
  1428. "id": "puppet var",
  1429. "name": "mapred_job_red_mem_mb",
  1430. "displayName": "Default virtual memory for a job's reduce-task",
  1431. "description": "Virtual memory for single Reduce task",
  1432. "defaultValue": "-1",
  1433. "displayType": "int",
  1434. "unit": "MB",
  1435. "isVisible": true,
  1436. "domain": "global",
  1437. "serviceName": "MAPREDUCE"
  1438. },
  1439. {
  1440. "id": "puppet var",
  1441. "name": "mapred_child_java_opts_sz",
  1442. "displayName": "Java options for MapReduce tasks",
  1443. "description": "Java options for the TaskTracker child processes.",
  1444. "defaultValue": "768",
  1445. "displayType": "int",
  1446. "unit": "MB",
  1447. "isVisible": true,
  1448. "domain": "tasktracker-global",
  1449. "serviceName": "MAPREDUCE",
  1450. "category": "TaskTracker"
  1451. },
  1452. {
  1453. "id": "puppet var",
  1454. "name": "io_sort_mb",
  1455. "displayName": "Map-side sort buffer memory",
  1456. "description": "The total amount of Map-side buffer memory to use while sorting files (Expert-only configuration)",
  1457. "defaultValue": "200",
  1458. "displayType": "int",
  1459. "unit": "MB",
  1460. "isVisible": true,
  1461. "domain": "global",
  1462. "serviceName": "MAPREDUCE"
  1463. },
  1464. {
  1465. "id": "puppet var",
  1466. "name": "io_sort_spill_percent",
  1467. "displayName": "Limit on buffer",
  1468. "description": "Percentage of sort buffer used for record collection (Expert-only configuration)",
  1469. "defaultValue": "0.9",
  1470. "displayType": "float",
  1471. "isVisible": true,
  1472. "domain": "global",
  1473. "serviceName": "MAPREDUCE"
  1474. },
  1475. {
  1476. "id": "puppet var",
  1477. "name": "mapreduce_userlog_retainhours",
  1478. "displayName": "Job log retention (hours)",
  1479. "description": "The maximum time, in hours, for which the user-logs are to be retained after the job completion.",
  1480. "defaultValue": "24",
  1481. "displayType": "int",
  1482. "unit": "hours",
  1483. "isVisible": true,
  1484. "domain": "global",
  1485. "serviceName": "MAPREDUCE"
  1486. },
  1487. {
  1488. "id": "puppet var",
  1489. "name": "maxtasks_per_job",
  1490. "displayName": "Maximum number tasks for a Job",
  1491. "description": "Maximum number of tasks for a single Job",
  1492. "defaultValue": "-1",
  1493. "displayType": "int",
  1494. "isVisible": true,
  1495. "domain": "global",
  1496. "serviceName": "MAPREDUCE"
  1497. },
  1498. {
  1499. "id": "puppet var",
  1500. "name": "lzo_enabled",
  1501. "displayName": "LZO compression",
  1502. "description": "LZO compression enabled",
  1503. "defaultValue": false,
  1504. "displayType": "checkbox",
  1505. "isVisible": true,
  1506. "domain": "global",
  1507. "serviceName": "MAPREDUCE"
  1508. },
  1509. {
  1510. "id": "puppet var",
  1511. "name": "snappy_enabled",
  1512. "displayName": "Snappy compression",
  1513. "description": "Snappy compression enabled",
  1514. "defaultValue": true,
  1515. "isReconfigurable": false,
  1516. "displayType": "checkbox",
  1517. "isVisible": true,
  1518. "domain": "global",
  1519. "serviceName": "MAPREDUCE"
  1520. },
  1521. {
  1522. "id": "puppet var",
  1523. "name": "rca_enabled",
  1524. "displayName": "Enable RCA",
  1525. "description": "Enable RCA",
  1526. "defaultValue": true,
  1527. "isReconfigurable": true,
  1528. "displayType": "checkbox",
  1529. "isVisible": true,
  1530. "domain": "global",
  1531. "serviceName": "MAPREDUCE"
  1532. },
  1533. {
  1534. "id": "puppet var",
  1535. "name": "mapred_hosts_exclude",
  1536. "displayName": "Exclude hosts",
  1537. "description": "Exclude entered hosts",
  1538. "defaultValue": "mapred.exclude",
  1539. "displayType": "directories",
  1540. "isVisible": false,
  1541. "serviceName": "MAPREDUCE",
  1542. "domain": "global",
  1543. "category": "Advanced"
  1544. },
  1545. {
  1546. "id": "puppet var",
  1547. "name": "mapred_hosts_include",
  1548. "displayName": "Include hosts",
  1549. "description": "Include enetered hosts",
  1550. "defaultValue": "mapred.include",
  1551. "displayType": "directories",
  1552. "isVisible": false,
  1553. "serviceName": "MAPREDUCE",
  1554. "domain": "global",
  1555. "category": "Advanced"
  1556. },
  1557. {
  1558. "id": "puppet var",
  1559. "name": "mapred_jobstatus_dir",
  1560. "displayName": "Job Status directory",
  1561. "description": "Directory path to view job status",
  1562. "defaultValue": "file:////mapred/jobstatus",
  1563. "displayType": "advanced",
  1564. "isVisible": false,
  1565. "serviceName": "MAPREDUCE",
  1566. "domain": "global",
  1567. "category": "Advanced"
  1568. },
  1569. {
  1570. "id": "puppet var",
  1571. "name": "task_controller",
  1572. "displayName": "task_controller",
  1573. "description": "",
  1574. "defaultValue": "org.apache.hadoop.mapred.DefaultTaskController",
  1575. "displayType": "advanced",
  1576. "isVisible": false,
  1577. "serviceName": "MAPREDUCE",
  1578. "domain": "global",
  1579. "category": "Advanced"
  1580. },
  1581. /*
  1582. {
  1583. "id": "puppet var",
  1584. "name": "jdk_location",
  1585. "displayName": "URL to download 64-bit JDK",
  1586. "description": "URL from where the 64-bit JDK binary can be downloaded",
  1587. "defaultValue": "",
  1588. "isRequired": false,
  1589. "isReconfigurable": false,
  1590. "displayType": "url",
  1591. "isVisible": true,
  1592. "serviceName": "MISC"
  1593. },
  1594. */
  1595. {
  1596. "id": "puppet var",
  1597. "name": "java64_home",
  1598. "displayName": "Path to 64-bit JAVA_HOME",
  1599. "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.",
  1600. "defaultValue": "/usr/jdk64/jdk1.6.0_31",
  1601. "isRequired": true,
  1602. "isReconfigurable": false,
  1603. "displayType": "directory",
  1604. "isVisible": true,
  1605. "domain": "global",
  1606. "serviceName": "MISC"
  1607. },
  1608. {
  1609. "id": "puppet var",
  1610. "name": "run_dir",
  1611. "displayName": "Hadoop run directory",
  1612. "description": "",
  1613. "defaultValue": "/var/run/hadoop",
  1614. "isRequired": false,
  1615. "isReconfigurable": false,
  1616. "displayType": "directory",
  1617. "isVisible": false,
  1618. "domain": "global",
  1619. "serviceName": "MISC",
  1620. "category": "Advanced"
  1621. },
  1622. {
  1623. "id": "puppet var",
  1624. "name": "hadoop_conf_dir",
  1625. "displayName": "Hadoop conf directory",
  1626. "description": "",
  1627. "defaultValue": "/etc/hadoop",
  1628. "isRequired": false,
  1629. "isReconfigurable": false,
  1630. "displayType": "directory",
  1631. "isVisible": false,
  1632. "domain": "global",
  1633. "serviceName": "MISC",
  1634. "category": "Advanced"
  1635. },
  1636. {
  1637. "id": "puppet var",
  1638. "name": "namenode_formatted_mark_dir",
  1639. "displayName": "Hadoop formatted mark directory",
  1640. "description": "",
  1641. "defaultValue": "/var/run/hadoop/hdfs/namenode/formatted/",
  1642. "isRequired": false,
  1643. "isReconfigurable": false,
  1644. "displayType": "directory",
  1645. "isVisible": false,
  1646. "domain": "global",
  1647. "serviceName": "HDFS",
  1648. "category": "NameNode"
  1649. },
  1650. {
  1651. "id": "puppet var",
  1652. "name": "hcat_conf_dir",
  1653. "displayName": "HCat conf directory",
  1654. "description": "",
  1655. "defaultValue": "",
  1656. "isRequired": false,
  1657. "isReconfigurable": false,
  1658. "displayType": "directory",
  1659. "isVisible": false,
  1660. "domain": "global",
  1661. "serviceName": "HDFS",
  1662. "category": "Advanced"
  1663. },
  1664. {
  1665. "id": "puppet var",
  1666. "name": "hcat_metastore_port",
  1667. "displayName": "hcat_metastore_port",
  1668. "description": "",
  1669. "defaultValue": "/usr/lib/hcatalog/share/hcatalog",
  1670. "isRequired": true,
  1671. "isReconfigurable": false,
  1672. "displayType": "directory",
  1673. "isVisible": false,
  1674. "domain": "global",
  1675. "serviceName": "MISC"
  1676. },
  1677. {
  1678. "id": "puppet var",
  1679. "name": "hcat_lib",
  1680. "displayName": "hcat_lib",
  1681. "description": "",
  1682. "defaultValue": "/usr/lib/hcatalog/share/hcatalog",
  1683. "isRequired": true,
  1684. "isReconfigurable": false,
  1685. "displayType": "directory",
  1686. "isVisible": false,
  1687. "domain": "global",
  1688. "serviceName": "MISC"
  1689. },
  1690. {
  1691. "id": "puppet var",
  1692. "name": "hcat_dbroot",
  1693. "displayName": "hcat_dbroot",
  1694. "description": "",
  1695. "defaultValue": "/usr/lib/hcatalog/share/hcatalog",
  1696. "isRequired": true,
  1697. "isReconfigurable": false,
  1698. "displayType": "directory",
  1699. "isVisible": false,
  1700. "domain": "global",
  1701. "serviceName": "MISC"
  1702. },
  1703. {
  1704. "id": "puppet var",
  1705. "name": "hcat_dbroot",
  1706. "displayName": "hcat_dbroot",
  1707. "description": "",
  1708. "defaultValue": "/usr/lib/hcatalog/share/hcatalog",
  1709. "isRequired": true,
  1710. "isReconfigurable": false,
  1711. "displayType": "directory",
  1712. "isVisible": false,
  1713. "domain": "global",
  1714. "serviceName": "MISC"
  1715. },
  1716. /*
  1717. {
  1718. "id": "puppet var",
  1719. "name": "hadoop_log_dir",
  1720. "displayName": "Hadoop Log Dir",
  1721. "description": "Directory for Hadoop log files",
  1722. "defaultValue": "/var/log/hadoop",
  1723. "isReconfigurable": false,
  1724. "displayType": "directory",
  1725. "isVisible": true, "serviceName": "MISC",
  1726. "category": "Advanced"
  1727. },
  1728. {
  1729. "id": "puppet var",
  1730. "name": "hadoop_pid_dir",
  1731. "displayName": "Hadoop PID Dir",
  1732. "description": "Directory in which the pid files for Hadoop processes will be created",
  1733. "defaultValue": "/var/run/hadoop",
  1734. "isReconfigurable": false,
  1735. "displayType": "directory",
  1736. "isVisible": true, "serviceName": "MISC",
  1737. "category": "Advanced"
  1738. },
  1739. {
  1740. "id": "puppet var",
  1741. "name": "using_local_repo",
  1742. "displayName": "Whether a local repo is being used",
  1743. "description": "Whether a local repo is being used",
  1744. "defaultValue": false,
  1745. "isReconfigurable": false,
  1746. "displayType": "checkbox",
  1747. "isVisible": false,
  1748. "domain": "global",
  1749. "serviceName": "MISC"
  1750. },
  1751. {
  1752. "id": "puppet var",
  1753. "name": "yum_repo_file",
  1754. "displayName": "Path to local repo file",
  1755. "description": "Path to local repository file that configures from where to download software packages",
  1756. "defaultValue": "/etc/yum.repos.d/hdp.repo",
  1757. "isReconfigurable": false,
  1758. "displayType": "directory",
  1759. "isVisible": true,
  1760. "domain": "global",
  1761. "serviceName": "MISC"
  1762. },
  1763. */
  1764. {
  1765. "id": "puppet var",
  1766. "name": "hdfs_user",
  1767. "displayName": "HDFS User",
  1768. "description": "User to run HDFS as",
  1769. "defaultValue": "hdfs",
  1770. "isReconfigurable": false,
  1771. "displayType": "user",
  1772. "isVisible": true,
  1773. "serviceName": "MISC",
  1774. "domain": "global",
  1775. "category": "Users and Groups"
  1776. },
  1777. {
  1778. "id": "puppet var",
  1779. "name": "mapred_user",
  1780. "displayName": "MapReduce User",
  1781. "description": "User to run MapReduce as",
  1782. "defaultValue": "mapred",
  1783. "isReconfigurable": false,
  1784. "displayType": "user",
  1785. "isVisible": true,
  1786. "domain": "global",
  1787. "serviceName": "MISC",
  1788. "category": "Users and Groups"
  1789. },
  1790. {
  1791. "id": "puppet var",
  1792. "name": "hbase_user",
  1793. "displayName": "HBase User",
  1794. "description": "User to run HBase as",
  1795. "defaultValue": "hbase",
  1796. "isReconfigurable": false,
  1797. "displayType": "user",
  1798. "isVisible": true,
  1799. "domain": "global",
  1800. "serviceName": "MISC",
  1801. "category": "Users and Groups"
  1802. },
  1803. {
  1804. "id": "puppet var",
  1805. "name": "hive_user",
  1806. "displayName": "Hive User",
  1807. "description": "User to run Hive as",
  1808. "defaultValue": "hive",
  1809. "isReconfigurable": false,
  1810. "displayType": "user",
  1811. "isVisible": true,
  1812. "domain": "global",
  1813. "serviceName": "MISC",
  1814. "category": "Users and Groups"
  1815. },
  1816. {
  1817. "id": "puppet var",
  1818. "name": "hcat_user",
  1819. "displayName": "HCat User",
  1820. "description": "User to run HCatalog as",
  1821. "defaultValue": "hcat",
  1822. "isReconfigurable": false,
  1823. "displayType": "user",
  1824. "isVisible": true,
  1825. "domain": "global",
  1826. "serviceName": "MISC",
  1827. "category": "Users and Groups"
  1828. },
  1829. {
  1830. "id": "puppet var",
  1831. "name": "webhcat_user",
  1832. "displayName": "WebHCat User",
  1833. "description": "User to run WebHCat as",
  1834. "defaultValue": "hcat",
  1835. "isReconfigurable": false,
  1836. "displayType": "user",
  1837. "isVisible": true,
  1838. "domain": "global",
  1839. "serviceName": "MISC",
  1840. "category": "Users and Groups"
  1841. },
  1842. {
  1843. "id": "puppet var",
  1844. "name": "oozie_user",
  1845. "displayName": "Oozie User",
  1846. "description": "User to run Oozie as",
  1847. "defaultValue": "oozie",
  1848. "isReconfigurable": false,
  1849. "displayType": "user",
  1850. "isVisible": true,
  1851. "domain": "global",
  1852. "serviceName": "MISC",
  1853. "category": "Users and Groups"
  1854. },
  1855. {
  1856. "id": "puppet var",
  1857. "name": "oozie_conf_dir",
  1858. "displayName": "Oozie conf dir",
  1859. "description": "",
  1860. "defaultValue": "/etc/oozie",
  1861. "isReconfigurable": false,
  1862. "displayType": "directory",
  1863. "isVisible": false,
  1864. "domain": "global",
  1865. "serviceName": "MISC",
  1866. "category": "General"
  1867. },
  1868. {
  1869. "id": "puppet var",
  1870. "name": "pig_conf_dir",
  1871. "displayName": "Pig conf dir",
  1872. "description": "",
  1873. "defaultValue": "/etc/pig",
  1874. "isReconfigurable": false,
  1875. "displayType": "directory",
  1876. "isVisible": false,
  1877. "domain": "global",
  1878. "serviceName": "MISC",
  1879. "category": "General"
  1880. },
  1881. {
  1882. "id": "puppet var",
  1883. "name": "pig_user",
  1884. "displayName": "Pig User",
  1885. "description": "User to run Pig as",
  1886. "defaultValue": "pig",
  1887. "isReconfigurable": false,
  1888. "displayType": "user",
  1889. "isVisible": true,
  1890. "domain": "global",
  1891. "serviceName": "MISC",
  1892. "category": "Users and Groups"
  1893. },
  1894. {
  1895. "id": "puppet var",
  1896. "name": "sqoop_conf_dir",
  1897. "displayName": "sqoop conf dir",
  1898. "description": "",
  1899. "defaultValue": "/etc/sqoop",
  1900. "isReconfigurable": false,
  1901. "displayType": "directory",
  1902. "isVisible": false,
  1903. "domain": "global",
  1904. "serviceName": "MISC",
  1905. "category": "General"
  1906. },
  1907. {
  1908. "id": "puppet var",
  1909. "name": "sqoop_lib",
  1910. "displayName": "sqoop conf dir",
  1911. "description": "",
  1912. "defaultValue": "/usr/lib/sqoop/lib/",
  1913. "isReconfigurable": false,
  1914. "displayType": "directory",
  1915. "isVisible": false,
  1916. "domain": "global",
  1917. "serviceName": "MISC",
  1918. "category": "General"
  1919. },
  1920. {
  1921. "id": "puppet var",
  1922. "name": "sqoop_user",
  1923. "displayName": "Sqoop User",
  1924. "description": "User to run Sqoop as",
  1925. "defaultValue": "sqoop",
  1926. "isReconfigurable": false,
  1927. "displayType": "user",
  1928. "isVisible": true,
  1929. "domain": "global",
  1930. "serviceName": "MISC",
  1931. "category": "Users and Groups"
  1932. },
  1933. {
  1934. "id": "puppet var",
  1935. "name": "zk_user",
  1936. "displayName": "ZooKeeper User",
  1937. "description": "User to run ZooKeeper as",
  1938. "defaultValue": "zookeeper",
  1939. "isReconfigurable": false,
  1940. "displayType": "user",
  1941. "isVisible": true,
  1942. "domain": "global",
  1943. "serviceName": "MISC",
  1944. "category": "Users and Groups"
  1945. },
  1946. {
  1947. "id": "puppet var",
  1948. "name": "user_group",
  1949. "displayName": "Group",
  1950. "description": "Group that the users specified above belong to",
  1951. "defaultValue": "hadoop",
  1952. "isReconfigurable": false,
  1953. "displayType": "user",
  1954. "isVisible": true,
  1955. "domain": "global",
  1956. "serviceName": "MISC",
  1957. "category": "Users and Groups"
  1958. },
  1959. {
  1960. "id": "puppet var",
  1961. "name": "nagios_user",
  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_group",
  1974. "displayName": "Nagios username",
  1975. "description": "Nagios username",
  1976. "defaultValue": "nagios",
  1977. "isReconfigurable": false,
  1978. "displayType": "user",
  1979. "domain": "global",
  1980. "isVisible": false,
  1981. "serviceName": "NAGIOS"
  1982. },
  1983. {
  1984. "id": "puppet var",
  1985. "name": "nagios_web_login",
  1986. "displayName": "Nagios Admin username",
  1987. "description": "Nagios Web UI Admin username",
  1988. "defaultValue": "nagiosadmin",
  1989. "isReconfigurable": false,
  1990. "displayType": "user",
  1991. "domain": "global",
  1992. "isVisible": true,
  1993. "serviceName": "NAGIOS"
  1994. },
  1995. {
  1996. "id": "puppet var",
  1997. "name": "nagios_web_password",
  1998. "displayName": "Nagios Admin password",
  1999. "description": "Nagios Web UI Admin password",
  2000. "defaultValue": "",
  2001. "isReconfigurable": false,
  2002. "displayType": "password",
  2003. "isVisible": true,
  2004. "domain": "global",
  2005. "serviceName": "NAGIOS"
  2006. },
  2007. {
  2008. "id": "puppet var",
  2009. "name": "nagios_contact",
  2010. "displayName": "Hadoop Admin email",
  2011. "description": "Hadoop Administrator email for alert notification",
  2012. "defaultValue": "",
  2013. "displayType": "email",
  2014. "isVisible": true,
  2015. "domain": "global",
  2016. "serviceName": "NAGIOS"
  2017. },
  2018. {
  2019. "id": "puppet var",
  2020. "name": "oozieserver_host",
  2021. "displayName": "Oozie Server host",
  2022. "value": "",
  2023. "defaultValue": "",
  2024. "description": "The host that has been assigned to run Oozie Server",
  2025. "displayType": "masterHost",
  2026. "isVisible": true,
  2027. "domain": "global",
  2028. "serviceName": "OOZIE",
  2029. "category": "Oozie Server"
  2030. },
  2031. /*
  2032. {
  2033. "id": "puppet var",
  2034. "name": "oozie_database",
  2035. "displayName": "Oozie Database",
  2036. "value": "",
  2037. "defaultValue": "New PostgreSQL Database",
  2038. "options": [
  2039. {
  2040. displayName: 'New PostgreSQL Database',
  2041. foreignKeys: ['oozie_ambari_database', 'oozie_ambari_host']
  2042. },
  2043. {
  2044. displayName: 'Existing Database',
  2045. foreignKeys: ['oozie_existing_database', 'oozie_existing_host']
  2046. }
  2047. ],
  2048. "description": "PostgreSQL will be installed by ambari. Any other database will have to be installed by the user.",
  2049. "displayType": "radio button",
  2050. "radioName": "oozie-database",
  2051. "isVisible": true,
  2052. "serviceName": "OOZIE",
  2053. "category": "Oozie Server"
  2054. },
  2055. {
  2056. "id": "puppet var",
  2057. "name": "oozie_existing_database",
  2058. "displayName": "Oozie Database",
  2059. "value": "",
  2060. "defaultValue": "MySQL",
  2061. "description": "Select the database, if you already have existing one for Oozie.",
  2062. "displayType": "combobox",
  2063. "isVisible": false,
  2064. "options": ['MySQL', 'PostgreSQL'],
  2065. "serviceName": "OOZIE",
  2066. "category": "Oozie Server"
  2067. },
  2068. {
  2069. "id": "puppet var",
  2070. "name": "oozie_existing_host",
  2071. "displayName": "Database host",
  2072. "description": "Select the host on which the existing database is hosted.",
  2073. "defaultValue": "",
  2074. "isReconfigurable": false,
  2075. "displayType": "host",
  2076. "isVisible": false,
  2077. "serviceName": "OOZIE",
  2078. "category": "Oozie Server"
  2079. },
  2080. {
  2081. "id": "puppet var",
  2082. "name": "oozie_ambari_database",
  2083. "displayName": "Oozie Database",
  2084. "value": "",
  2085. "defaultValue": "PostgreSQL",
  2086. "description": "PostgreSQL will be installed by ambari.",
  2087. "displayType": "masterHost",
  2088. "isVisible": true,
  2089. "serviceName": "OOZIE",
  2090. "category": "Oozie Server"
  2091. },
  2092. {
  2093. "id": "puppet var",
  2094. "name": "oozie_ambari_host",
  2095. "value": "",
  2096. "defaultValue": "",
  2097. "displayName": "PostgreSQL host",
  2098. "description": "Host on which the PostgreSQL database will be created by ambari. ",
  2099. "isReconfigurable": false,
  2100. "displayType": "masterHost",
  2101. "isVisible": true,
  2102. "serviceName": "OOZIE",
  2103. "category": "Oozie Server"
  2104. },
  2105. {
  2106. "id": "puppet var",
  2107. "name": "oozie_database_name",
  2108. "displayName": "Database name",
  2109. "description": "Database name used for the Oozie",
  2110. "defaultValue": "oozie",
  2111. "isReconfigurable": false,
  2112. "displayType": "host",
  2113. "isVisible": true,
  2114. "serviceName": "OOZIE",
  2115. "category": "Oozie Server"
  2116. },
  2117. {
  2118. "id": "puppet var",
  2119. "name": "oozie_metastore_user_name",
  2120. "displayName": "Database user",
  2121. "description": "Database user name to use to connect to the database",
  2122. "defaultValue": "oozie",
  2123. "isReconfigurable": false,
  2124. "displayType": "user",
  2125. "isVisible": true,
  2126. "serviceName": "OOZIE",
  2127. "category": "Oozie Server"
  2128. },
  2129. {
  2130. "id": "puppet var",
  2131. "name": "oozie_metastore_user_passwd",
  2132. "displayName": "Database password",
  2133. "description": "Database password to use to connect to the PostgreSQL database",
  2134. "defaultValue": "",
  2135. "isReconfigurable": false,
  2136. "displayType": "password",
  2137. "isVisible": true,
  2138. "serviceName": "OOZIE",
  2139. "category": "Oozie Server"
  2140. },
  2141. */
  2142. {
  2143. "id": "puppet var",
  2144. "name": "oozie_data_dir",
  2145. "displayName": "Oozie Data Dir",
  2146. "description": "Data directory in which the Oozie DB exists",
  2147. "defaultValue": "",
  2148. "isReconfigurable": false,
  2149. "displayType": "directory",
  2150. "isVisible": true,
  2151. "isRequired": false,
  2152. "domain": "global",
  2153. "serviceName": "OOZIE",
  2154. "category": "Oozie Server"
  2155. },
  2156. {
  2157. "id": "puppet var",
  2158. "name": "oozie_log_dir",
  2159. "displayName": "Oozie Log Dir",
  2160. "description": "Directory for oozie logs",
  2161. "defaultValue": "/var/log/oozie",
  2162. "isReconfigurable": false,
  2163. "displayType": "directory",
  2164. "isVisible": true,
  2165. "domain": "global",
  2166. "serviceName": "OOZIE",
  2167. "category": "Advanced"
  2168. },
  2169. {
  2170. "id": "puppet var",
  2171. "name": "oozie_pid_dir",
  2172. "displayName": "Oozie PID Dir",
  2173. "description": "Directory in which the pid files for oozie processes will be created",
  2174. "defaultValue": "/var/run/oozie",
  2175. "isReconfigurable": false,
  2176. "displayType": "directory",
  2177. "isVisible": true,
  2178. "domain": "global",
  2179. "serviceName": "OOZIE",
  2180. "category": "Advanced"
  2181. },
  2182. {
  2183. "id": "puppet var",
  2184. "name": "zookeeperserver_hosts",
  2185. "displayName": "ZooKeeper Server hosts",
  2186. "value": "",
  2187. "defaultValue": "",
  2188. "description": "The host that has been assigned to run ZooKeeper Server",
  2189. "displayType": "masterHosts",
  2190. "isVisible": true,
  2191. "isRequired": false,
  2192. "serviceName": "ZOOKEEPER",
  2193. "category": "ZooKeeper Server"
  2194. },
  2195. {
  2196. "id": "puppet var",
  2197. "name": "zk_data_dir",
  2198. "displayName": "ZooKeeper directory",
  2199. "description": "Data directory for ZooKeeper",
  2200. "defaultValue": "/grid/0/hadoop/zookeeper",
  2201. "defaultDirectory": "hadoop/zookeeper",
  2202. "isReconfigurable": false,
  2203. "displayType": "directory",
  2204. "isVisible": true,
  2205. "domain": "global",
  2206. "serviceName": "ZOOKEEPER",
  2207. "category": "ZooKeeper Server"
  2208. },
  2209. {
  2210. "id": "puppet var",
  2211. "name": "zk_log_dir",
  2212. "displayName": "ZooKeeper Log Dir",
  2213. "description": "Directory for ZooKeeper log files",
  2214. "defaultValue": "/var/log/zookeeper",
  2215. "isReconfigurable": false,
  2216. "displayType": "directory",
  2217. "isVisible": true,
  2218. "domain": "global",
  2219. "serviceName": "ZOOKEEPER",
  2220. "category": "Advanced"
  2221. },
  2222. {
  2223. "id": "puppet var",
  2224. "name": "zk_pid_dir",
  2225. "displayName": "ZooKeeper PID Dir",
  2226. "description": "Directory in which the pid files for zookeeper processes will be created",
  2227. "defaultValue": "/var/run/zookeeper",
  2228. "isReconfigurable": false,
  2229. "displayType": "directory",
  2230. "isVisible": true,
  2231. "domain": "global",
  2232. "serviceName": "ZOOKEEPER",
  2233. "category": "Advanced"
  2234. },
  2235. {
  2236. "id": "puppet var",
  2237. "name": "zk_pid_file",
  2238. "displayName": "ZooKeeper PID File",
  2239. "description": "",
  2240. "defaultValue": "/var/run/zookeeper/zookeeper_server.pid",
  2241. "isReconfigurable": false,
  2242. "displayType": "directory",
  2243. "isVisible": false,
  2244. "domain": "global",
  2245. "serviceName": "ZOOKEEPER",
  2246. "category": "Advanced"
  2247. },
  2248. {
  2249. "id": "puppet var",
  2250. "name": "tickTime",
  2251. "displayName": "Length of single Tick",
  2252. "description": "The length of a single tick in milliseconds, which is the basic time unit used by ZooKeeper",
  2253. "defaultValue": "2000",
  2254. "displayType": "int",
  2255. "unit": "ms",
  2256. "isVisible": true,
  2257. "domain": "global",
  2258. "serviceName": "ZOOKEEPER",
  2259. "category": "ZooKeeper Server"
  2260. },
  2261. {
  2262. "id": "puppet var",
  2263. "name": "initLimit",
  2264. "displayName": "Ticks to allow for sync at Init",
  2265. "description": "Amount of time, in ticks to allow followers to connect and sync to a leader",
  2266. "defaultValue": "10",
  2267. "displayType": "int",
  2268. "isVisible": true,
  2269. "domain": "global",
  2270. "serviceName": "ZOOKEEPER",
  2271. "category": "ZooKeeper Server"
  2272. },
  2273. {
  2274. "id": "puppet var",
  2275. "name": "syncLimit",
  2276. "displayName": "Ticks to allow for sync at Runtime",
  2277. "description": "Amount of time, in ticks to allow followers to connect",
  2278. "defaultValue": "5",
  2279. "displayType": "int",
  2280. "isVisible": true,
  2281. "domain": "global",
  2282. "serviceName": "ZOOKEEPER",
  2283. "category": "ZooKeeper Server"
  2284. },
  2285. {
  2286. "id": "puppet var",
  2287. "name": "clientPort",
  2288. "displayName": "Port for running ZK Server",
  2289. "description": "Port for running ZooKeeper server",
  2290. "defaultValue": "2181",
  2291. "displayType": "int",
  2292. "isVisible": true,
  2293. "domain": "global",
  2294. "serviceName": "ZOOKEEPER",
  2295. "category": "ZooKeeper Server"
  2296. },
  2297. {
  2298. "id": "puppet var",
  2299. "name": "zk_conf_dir",
  2300. "displayName": "zk_conf_dir",
  2301. "description": "",
  2302. "defaultValue": "/etc/conf/",
  2303. "displayType": "directory",
  2304. "isVisible": false,
  2305. "domain": "global",
  2306. "serviceName": "MISC",
  2307. "category": "General"
  2308. }
  2309. ]
  2310. };