config_properties.js 82 KB

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