123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * Defines service configuration properties.
- * name:
- * The name of the config property that is understood by Ambari server and agent.
- * E.g., "datanode_du_reserved"
- *
- * displayName:
- * The human-friendly display name of the config property.
- * E.g., "Reserved space for HDFS"
- *
- * description:
- * The description of the config property.
- * E.g., "Reserved space in GB per volume"
- *
- * defaultValue:
- * The default value of the config property.
- * E.g., "1"
- *
- * isReconfigurable:
- * Whether the config property can be reconfigured after it has been initially set and deployed.
- * If this is unspecified, true is assumed.
- * E.g., true, false
- *
- * isRequired:
- * Whether the config property is required or not.
- * If this is unspecified, true is assumed.
- * E.g., true, false
- *
- * displayType:
- * How the config property is to be rendered for user input.
- * If this is left unspecified, "string" is assumed
- * E.g., "string", "int", "float", "checkbox", "directories", "custom", "email", "masterHost", "slaveHosts"
- *
- * unit
- * The unit for the config property.
- * E.g., "ms", "MB", "bytes"
- *
- * serviceName:
- * The service that the config property belongs to.
- * E.g., "HDFS", "MAPREDUCE", "ZOOKEEPER", etc.
- *
- * category: the category that the config property belongs to (used for grouping config properties in the UI).
- * if unspecified, "General" is assumed.
- * E.g., "General", "Advanced", "NameNode", "DataNode"
- */
- module.exports =
- {
- "configProperties": [
- {
- "id": "puppet var",
- "name": "hbasemaster_host",
- "displayName": "HBase Master host",
- "value": "",
- "defaultValue": "",
- "description": "The host that has been assigned to run HBase Master",
- "displayType": "masterHost",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "HBase Master"
- },
- {
- "id": "puppet var",
- "name": "regionserver_hosts",
- "displayName": "RegionServer hosts",
- "value": "",
- "defaultValue": "",
- "description": "The hosts that have been assigned to run RegionServer",
- "displayType": "slaveHosts",
- "isVisible": true,
- "isRequired": false,
- "domain": "regionserver-global",
- "serviceName": "HBASE",
- "category": "RegionServer"
- },
- {
- "id": "puppet var",
- "name": "hbase_log_dir",
- "displayName": "HBase Log Dir",
- "description": "Directory for HBase logs",
- "defaultValue": "/var/log/hbase",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hbase_pid_dir",
- "displayName": "HBase PID Dir",
- "description": "Directory in which the pid files for HBase processes will be created",
- "defaultValue": "/var/run/hbase",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hbase_regionserver_heapsize",
- "displayName": "HBase Region Servers maximum Java heap size",
- "description": "Maximum Java heap size for HBase Region Servers (Java option -Xmx)",
- "defaultValue": "1024",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "regionserver-global",
- "serviceName": "HBASE",
- "category": "RegionServer"
- },
- {
- "id": "puppet var",
- "name": "hbase_master_heapsize",
- "displayName": "HBase Master Maximum Java heap size",
- "description": "Maximum Java heap size for HBase master (Java option -Xmx)",
- "defaultValue": "1024",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "HBase Master"
- },
- {
- "id": "puppet var",
- "name": "hstore_compactionthreshold",
- "displayName": "HBase HStore compaction threshold",
- "description": "If more than this number of HStoreFiles in any one HStore then a compaction is run to rewrite all HStoreFiles files as one.",
- "defaultValue": "3",
- "displayType": "int",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE"
- },
- {
- "id": "puppet var",
- "name": "hfile_blockcache_size",
- "displayName": "HFile block cache size ",
- "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.",
- "defaultValue": "0.25",
- "displayType": "float",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE"
- },
- {
- "id": "puppet var",
- "name": "hstorefile_maxsize",
- "displayName": "Maximum HStoreFile Size",
- "description": "If any one of a column families' HStoreFiles has grown to exceed this value, the hosting HRegion is split in two.",
- "defaultValue": "1073741824",
- "displayType": "int",
- "unit": "bytes",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE"
- },
- {
- "id": "puppet var",
- "name": "regionserver_handlers",
- "displayName": "HBase Region Server Handler",
- "description": "Count of RPC Listener instances spun up on RegionServers",
- "defaultValue": "30",
- "displayType": "int",
- "isVisible": true,
- "domain": "regionserver-global",
- "serviceName": "HBASE",
- "category": "RegionServer"
- },
- {
- "id": "puppet var",
- "name": "hregion_majorcompaction",
- "displayName": "HBase Region Major Compaction",
- "description": "The time between major compactions of all HStoreFiles in a region. Set to 0 to disable automated major compactions.",
- "defaultValue": "86400000",
- "displayType": "int",
- "unit": "ms",
- "isVisible": true,
- "domain": "regionserver-global",
- "serviceName": "HBASE",
- "category": "RegionServer"
- },
- {
- "id": "puppet var",
- "name": "hregion_blockmultiplier",
- "displayName": "HBase Region Block Multiplier",
- "description": "Block updates if memstore has \"Multiplier * HBase Region Memstore Flush Size\" bytes. Useful preventing runaway memstore during spikes in update traffic",
- "defaultValue": "2",
- "displayType": "int",
- "isVisible": true,
- "domain": "regionserver-global",
- "serviceName": "HBASE",
- "category": "RegionServer"
- },
- {
- "id": "puppet var",
- "name": "hregion_memstoreflushsize",
- "displayName": "HBase Region Memstore Flush Size",
- "description": "Memstore will be flushed to disk if size of the memstore exceeds this number of bytes.",
- "defaultValue": "134217728",
- "displayType": "int",
- "unit": "bytes",
- "isVisible": true,
- "domain": "regionserver-global",
- "serviceName": "HBASE",
- "category": "RegionServer"
- },
- {
- "id": "puppet var",
- "name": "client_scannercaching",
- "displayName": "HBase Client Scanner Caching",
- "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",
- "defaultValue": "100",
- "displayType": "int",
- "unit": "rows",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE"
- },
- {
- "id": "puppet var",
- "name": "zookeeper_sessiontimeout",
- "displayName": "Zookeeper timeout for HBase Session",
- "description": "HBase passes this to the zk quorum as suggested maximum time for a session",
- "defaultValue": "60000",
- "displayType": "int",
- "unit": "ms",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE"
- },
- {
- "id": "puppet var",
- "name": "hfile_max_keyvalue_size",
- "displayName": "HBase Client Maximum key-value Size",
- "description": "Specifies the combined maximum allowed size of a KeyValue instance. It should be set to a fraction of the maximum region size.",
- "defaultValue": "10485760",
- "displayType": "int",
- "unit": "bytes",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE"
- },
- {
- "id": "puppet var",
- "name": "hbase_hdfs_root_dir",
- "displayName": "Hbase relative path to HDFS",
- "description": "Hbase relative directory to HDFS",
- "defaultValue": "/apps/hbase/data",
- "isRequired": true,
- "displayType": "advanced",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hbase_tmp_dir",
- "displayName": "Hbase temp directory",
- "description": "",
- "defaultValue": "/var/log/hbase",
- "isRequired": false,
- "displayType": "advanced",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hdfs_enable_shortcircuit_read",
- "displayName": "HDFS Short-circuit read",
- "description": "",
- "defaultValue": true,
- "isRequired": false,
- "displayType": "checkbox",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hdfs_enable_shortcircuit_skipchecksum",
- "displayName": "HDFS shortcircuit skip checksum",
- "description": "skip checksum for short circuit read",
- "defaultValue": false,
- "isRequired": false,
- "displayType": "checkbox",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hdfs_support_append",
- "displayName": "HDFS append support",
- "description": "HDFS append support",
- "defaultValue": true,
- "isRequired": false,
- "displayType": "checkbox",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hstore_blockingstorefiles",
- "displayName": "hstore blocking storefiles",
- "description": "If more than this number of StoreFiles in any one Store (one StoreFile is written per flush of " +
- "MemStore) then updates are blocked for this HRegion until a compaction is completed, or until " +
- "hbase.hstore.blockingWaitTime has been exceeded.",
- "defaultValue": 7,
- "isRequired": true,
- "displayType": "init",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "regionserver_memstore_lab",
- "displayName": "regionserver_memstore_lab",
- "description": "",
- "defaultValue": true,
- "isRequired": false,
- "displayType": "checkbox",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "regionserver_memstore_lowerlimit",
- "displayName": "regionserver_memstore_lowerlimit",
- "description": "",
- "defaultValue": "0.35",
- "isRequired": false,
- "displayType": "float",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "regionserver_memstore_upperlimitt",
- "displayName": "regionserver_memstore_upperlimit",
- "description": "",
- "defaultValue": "0.4",
- "isRequired": true,
- "displayType": "float",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HBASE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hbase_conf_dir",
- "displayName": "HBase conf dir",
- "description": "",
- "defaultValue": "/etc/hbase",
- "isRequired": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "General"
- },
- {
- "id": "puppet var",
- "name": "namenode_host",
- "displayName": "NameNode host",
- "value": "",
- "defaultValue": "",
- "description": "The host that has been assigned to run NameNode",
- "displayType": "masterHost",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "NameNode"
- },
- {
- "id": "puppet var",
- "name": "dfs_name_dir",
- "displayName": "NameNode directories",
- "description": "NameNode directories for HDFS to store the file system image",
- "defaultValue": "/grid/0/hadoop/hdfs/namenode\n/grid/1/hadoop/hdfs/namenode\n",
- "defaultDirectory": "hadoop/hdfs/namenode",
- "isReconfigurable": false,
- "displayType": "directories",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "NameNode"
- },
- {
- "id": "puppet var",
- "name": "snamenode_host",
- "displayName": "SNameNode host",
- "value": "",
- "defaultValue": "",
- "description": "The host that has been assigned to run SecondaryNameNode",
- "displayType": "masterHost",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "SNameNode"
- },
- {
- "id": "puppet var",
- "name": "fs_checkpoint_dir",
- "displayName": "SecondaryNameNode Checkpoint directory",
- "description": "Directory on the local filesystem where the Secondary NameNode should store the temporary images to merge",
- "defaultValue": "/grid/0/hadoop/hdfs/namesecondary",
- "defaultDirectory": "hadoop/hdfs/namesecondary",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "SNameNode"
- },
- {
- "id": "puppet var",
- "name": "datanode_hosts", //not in the schema. For UI purpose
- "displayName": "DataNode hosts",
- "value": "",
- "defaultValue": "",
- "description": "The hosts that have been assigned to run DataNode",
- "displayType": "slaveHosts",
- "isRequired": false,
- "isVisible": true,
- "domain": "datanode-global",
- "serviceName": "HDFS",
- "category": "DataNode"
- },
- {
- "id": "puppet var",
- "name": "dfs_data_dir",
- "displayName": "DataNode directories",
- "description": "DataNode directories for HDFS to store the data blocks",
- "defaultValue": "/tmp/hadoop/hdfs/data",
- "defaultDirectory": "hadoop/hdfs/data",
- "isReconfigurable": false,
- "displayType": "directories",
- "isVisible": true,
- "domain": "datanode-global",
- "serviceName": "HDFS",
- "category": "DataNode"
- },
- {
- "id": "puppet var",
- "name": "hdfs_log_dir_prefix",
- "displayName": "Hadoop Log Dir Prefix",
- "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}.",
- "defaultValue": "/var/log/hadoop",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hadoop_pid_dir_prefix",
- "displayName": "Hadoop PID Dir Prefix",
- "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}.",
- "defaultValue": "/var/run/hadoop",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "dfs_support_append",
- "displayName": "Append enabled",
- "description": "Whether to enable HDFS Append feature",
- "defaultValue": true,
- "displayType": "checkbox",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HDFS"
- },
- {
- "id": "puppet var",
- "name": "dfs_webhdfs_enabled",
- "displayName": "WebHDFS enabled",
- "description": "Whether to enable WebHDFS feature",
- "defaultValue": false,
- "displayType": "checkbox",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HDFS"
- },
- {
- "id": "puppet var",
- "name": "hadoop_heapsize",
- "displayName": "Hadoop maximum Java heap size",
- "description": "Maximum Java heap size for daemons such as Balancer (Java option -Xmx)",
- "defaultValue": "1024",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HDFS"
- },
- {
- "id": "puppet var",
- "name": "namenode_heapsize",
- "displayName": "NameNode Java heap size",
- "description": "Initial and maximum Java heap size for NameNode (Java options -Xms and -Xmx)",
- "defaultValue": "1024",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "NameNode"
- },
- {
- "id": "puppet var",
- "name": "namenode_opt_newsize",
- "displayName": "NameNode new generation size",
- "description": "Default size of Java new generation for NameNode (Java option -XX:NewSize)",
- "defaultValue": "200",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "NameNode"
- },
- {
- "id": "puppet var",
- "name": "namenode_opt_maxnewsize",
- "displayName": "NameNode maximum new generation size",
- "description": "",
- "defaultValue": "640",
- "displayType": "int",
- "unit": "MB",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "NameNode"
- },
- {
- "id": "puppet var",
- "name": "datanode_du_reserved",
- "displayName": "Reserved space for HDFS",
- "description": "Reserved space in GB per volume",
- "defaultValue": "1",
- "displayType": "int",
- "unit": "GB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HDFS"
- },
- {
- "id": "puppet var",
- "name": "dtnode_heapsize",
- "displayName": "DataNode maximum Java heap size",
- "description": "Maximum Java heap size for DataNode (Java option -Xmx)",
- "defaultValue": "1024",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "datanode-global",
- "serviceName": "HDFS",
- "category": "DataNode"
- },
- {
- "id": "puppet var",
- "name": "dfs_datanode_failed_volume_tolerated",
- "displayName": "DataNode volumes failure toleration",
- "description": "The number of volumes that are allowed to fail before a DataNode stops offering service",
- "defaultValue": "0",
- "displayType": "int",
- "isVisible": true,
- "domain": "datanode-global",
- "serviceName": "HDFS",
- "category": "DataNode"
- },
- {
- "id": "puppet var",
- "name": "fs_checkpoint_period",
- "displayName": "HDFS Maximum Checkpoint Delay",
- "description": "Maximum delay between two consecutive checkpoints for HDFS",
- "defaultValue": "21600",
- "isReconfigurable": false,
- "displayType": "int",
- "unit": "seconds",
- "isVisible": true,
- "domain": "global",
- "filename": "core-site.xml",
- "serviceName": "HDFS"
- },
- {
- "id": "puppet var",
- "name": "fs_checkpoint_size",
- "displayName": "HDFS Maximum Edit Log Size for Checkpointing",
- "description": "Maximum size of the edits log file that forces an urgent checkpoint even if the maximum checkpoint delay is not reached",
- "defaultValue": "0.5",
- "isReconfigurable": false,
- "displayType": "float",
- "unit": "GB",
- "isVisible": true,
- "domain": "global",
- "filename": "core-site.xml",
- "serviceName": "HDFS"
- },
- {
- "id": "puppet var",
- "name": "proxyuser_group",
- "displayName": "Proxy group for Hive, WebHCat, and Oozie",
- "description": "",
- "defaultValue": "users",
- "isReconfigurable": false,
- "displayType": "advanced",
- "isVisible": true,
- "filename": "core-site.xml",
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "dfs_exclude",
- "displayName": "Exclude hosts",
- "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.",
- "defaultValue": "dfs.exclude",
- "isReconfigurable": false,
- "displayType": "advanced",
- "isVisible": true,
- "filename": "hdfs-site.xml",
- "domain": "global",
- "serviceName": "HDFS",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "dfs_include",
- "displayName": "Include hosts",
- "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.",
- "defaultValue": "dfs.include",
- "isReconfigurable": false,
- "displayType": "advanced",
- "isVisible": true,
- "filename": "hdfs-site.xml",
- "domain": "global",
- "serviceName": "HDFS",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "dfs_replication",
- "displayName": "Block replication",
- "description": "Default block replication.",
- "displayType": "int",
- "defaultValue": "3",
- "isReconfigurable": false,
- "isVisible": true,
- "filename": "hdfs-site.xml",
- "domain": "global",
- "serviceName": "HDFS",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "dfs_block_local_path_access_user",
- "displayName": "dfs.block.local-path-access.user",
- "description": "the user who is allowed to perform short circuit reads",
- "displayType": "advanced",
- "defaultValue": "hbase",
- "isReconfigurable": false,
- "isVisible": true,
- "filename": "hdfs-site.xml",
- "domain": "global",
- "serviceName": "HDFS",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "dfs_datanode_address",
- "displayName": "dfs_datanode_address",
- "description": "",
- "defaultValue": "50010",
- "isReconfigurable": true,
- "displayType": "int",
- "isVisible": true,
- "filename": "hdfs-site.xml",
- "domain": "global",
- "serviceName": "MISC",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "dfs_datanode_http_address",
- "displayName": "dfs_datanode_http_address",
- "description": "",
- "defaultValue": "50075",
- "isReconfigurable": true,
- "displayType": "int",
- "isVisible": true,
- "filename": "hdfs-site.xml",
- "domain": "global",
- "serviceName": "MISC",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "dfs_datanode_http_address",
- "displayName": "dfs_datanode_http_address",
- "description": "",
- "defaultValue": "50075",
- "isReconfigurable": true,
- "displayType": "int",
- "isVisible": true,
- "filename": "hdfs-site.xml",
- "domain": "global",
- "serviceName": "MISC",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "dfs_datanode_data_dir_perm",
- "displayName": "dfs_datanode_data_dir_perm",
- "description": "",
- "defaultValue": "750",
- "isReconfigurable": true,
- "displayType": "int",
- "isVisible": false,
- "filename": "hdfs-site.xml",
- "domain": "global",
- "serviceName": "HDFS",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "security_enabled",
- "displayName": "Hadoop Security",
- "description": "Enable hadoop security",
- "defaultValue": false,
- "isRequired": false,
- "displayType": "checkbox",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "kerberos_domain",
- "displayName": "Kerberos realm",
- "description": "Kerberos realm",
- "defaultValue": "EXAMPLE.COM",
- "isRequired": true,
- "isVisible": false,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "kadmin_pw",
- "displayName": "password",
- "description": "Kerberos admin password",
- "defaultValue": "",
- "isRequired": true,
- "displayType": "password",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "keytab_path",
- "displayName": "Keytab directory",
- "description": "Kerberos admin password",
- "defaultValue": "/etc/security/keytabs",
- "isRequired": true,
- "displayType": "advanced",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hivemetastore_host",
- "displayName": "Hive Metastore host",
- "value": "",
- "defaultValue": "",
- "description": "The host that has been assigned to run Hive Metastore",
- "displayType": "masterHost",
- "isVisible": true,
- "serviceName": "HIVE",
- "category": "Hive Metastore"
- },
- /* Comment out the other hive_database and uncomment this for Hive with Postgres support
- {
- "id": "puppet var",
- "name": "hive_database",
- "displayName": "Hive Database",
- "value": "",
- "defaultValue": "New PostgreSQL Database",
- "options": [
- {
- displayName: 'New PostgreSQL Database',
- foreignKeys: ['hive_ambari_database', 'hive_ambari_host']
- },
- {
- displayName: 'Existing Database',
- foreignKeys: ['hive_existing_database', 'hive_existing_host']
- }
- ],
- "description": "PostgreSQL will be installed by Ambari. Any other database will have to be installed by the user.",
- "displayType": "radio button",
- "radioName": "hive-database",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Hive Metastore"
- },
- */
- {
- "id": "puppet var",
- "name": "hive_database",
- "displayName": "Hive Database",
- "value": "",
- "defaultValue": "New MySQL Database",
- "options": [
- {
- displayName: 'New MySQL Database',
- foreignKeys: ['hive_ambari_database', 'hive_ambari_host']
- },
- {
- displayName: 'Existing MySQL Database',
- foreignKeys: ['hive_existing_database', 'hive_existing_host']
- }
- ],
- "description": "MySQL will be installed by Ambari",
- "displayType": "radio button",
- "radioName": "hive-database",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Hive Metastore"
- },
- {
- "id": "puppet var",
- "name": "hive_existing_database",
- "displayName": "Database Type",
- "value": "",
- "defaultValue": "MySQL",
- "description": "Using an existing database for Hive Metastore",
- "displayType": "masterHost",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Hive Metastore"
- },
- /* Uncomment for Hive with Postgres support
- {
- "id": "puppet var",
- "name": "hive_existing_database",
- "displayName": "Hive Database",
- "value": "",
- "defaultValue": "MySQL",
- "description": "Select the database, if you already have existing one for Hive Metastore.",
- "displayType": "string",
- "isVisible": false,
- "options": ['MySQL', 'PostgreSQL'],
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Hive Metastore"
- },
- {
- "id": "puppet var",
- "name": "hive_existing_database",
- "displayName": "Hive Database",
- "value": "",
- "defaultValue": "MySQL",
- "description": "Select the database, if you already have existing one for Hive Metastore.",
- "displayType": "combobox",
- "isVisible": false,
- "options": ['MySQL', 'PostgreSQL'],
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Hive Metastore"
- },
- */
- {
- "id": "puppet var",
- "name": "hive_existing_host",
- "displayName": "Database host",
- "description": "Specify the host on which the existing database is hosted",
- "defaultValue": "",
- "isReconfigurable": false,
- "displayType": "host",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Hive Metastore"
- },
- {
- "id": "puppet var",
- "name": "hive_ambari_database",
- "displayName": "Database Type",
- "value": "",
- "defaultValue": "MySQL",
- "description": "MySQL will be installed by Ambari",
- "displayType": "masterHost",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Hive Metastore"
- },
- {
- "id": "puppet var",
- "name": "hive_ambari_host",
- "value": "",
- "defaultValue": "",
- "displayName": "PostgreSQL host",
- "description": "Host on which the PostgreSQL database will be created by Ambari",
- "isReconfigurable": false,
- "displayType": "masterHost",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Hive Metastore"
- },
- {
- "id": "puppet var",
- "name": "hive_database_name",
- "displayName": "Database name",
- "description": "Database name used as the Hive Metastore",
- "defaultValue": "hive",
- "isReconfigurable": false,
- "displayType": "host",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Hive Metastore"
- },
- {
- "id": "puppet var",
- "name": "hive_metastore_user_name",
- "displayName": "Database user",
- "description": "Database user name to use to connect to the database",
- "defaultValue": "hive",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Hive Metastore"
- },
- {
- "id": "puppet var",
- "name": "hive_metastore_user_passwd",
- "displayName": "Database password",
- "description": "Database password to use to connect to the PostgreSQL database",
- "defaultValue": "",
- "isReconfigurable": false,
- "displayType": "password",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Hive Metastore"
- },
- {
- "id": "puppet var",
- "name": "hive_metastore_port",
- "displayName": "Hive metastore port",
- "description": "",
- "defaultValue": "9083",
- "isReconfigurable": false,
- "displayType": "int",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hive_lib",
- "displayName": "Hive library",
- "description": "",
- "defaultValue": "/usr/lib/hive/lib/",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hive_conf_dir",
- "displayName": "Hive lconf directory",
- "description": "",
- "defaultValue": "/etc/hive/conf",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hive_dbroot",
- "displayName": "Hive lconf directory",
- "description": "",
- "defaultValue": "/usr/lib/hive/lib",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hive_log_dir",
- "displayName": "Hive Log Dir",
- "description": "Directory for Hive log files",
- "defaultValue": "/var/log/hive",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hive_pid_dir",
- "displayName": "Hive PID Dir",
- "description": "Directory in which the PID files for Hive processes will be created",
- "defaultValue": "/var/run/hive",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "gpl_artifacts_download_url",
- "displayName": "gpl artifact download url",
- "description": "",
- "defaultValue": "",
- "isReconfigurable": false,
- "displayType": "advanced",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "General"
- },
- {
- "id": "puppet var",
- "name": "apache_artifacts_download_url",
- "displayName": "apache artifact download url",
- "description": "",
- "defaultValue": "",
- "isReconfigurable": false,
- "displayType": "advanced",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "General"
- },
- {
- "id": "puppet var",
- "name": "mysql_connector_url",
- "displayName": "MySQL connector url",
- "description": "",
- "defaultValue": "${download_url}/mysql-connector-java-5.1.18.zip",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hive_aux_jars_path",
- "displayName": "Hive auxilary jar path",
- "description": "",
- "defaultValue": "/usr/lib/hcatalog/share/hcatalog/hcatalog-core.jar",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "ganglia_conf_dir",
- "displayName": "Ganglia conf directory",
- "description": "",
- "defaultValue": "/etc/ganglia/hdp",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "GANGLIA",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "ganglia_runtime_dir",
- "displayName": "Ganglia runtime directory",
- "description": "",
- "defaultValue": "/var/run/ganglia/hdp",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "General"
- },
- {
- "id": "puppet var",
- "name": "gmetad_user",
- "displayName": "gmetad_user",
- "description": "",
- "defaultValue": "nobody",
- "isReconfigurable": false,
- "displayType": "advanced",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "gmond_user",
- "displayName": "gmond_user",
- "description": "",
- "defaultValue": "nobody",
- "isReconfigurable": false,
- "displayType": "advanced",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "ganglia_shell_cmds_dir",
- "displayName": "ganglia_shell_cmds_dir",
- "description": "",
- "defaultValue": "/usr/libexec/hdp/ganglia",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "General"
- },
- {
- "id": "puppet var",
- "name": "webserver_group",
- "displayName": "ganglia_shell_cmds_dir",
- "description": "",
- "defaultValue": "apache",
- "isReconfigurable": false,
- "displayType": "advanced",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "General"
- },
- {
- "id": "puppet var",
- "name": "hcat_log_dir",
- "displayName": "HCat Log Dir",
- "description": "Directory for HCatalog log files",
- "defaultValue": "/var/log/hcatalog",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hcat_pid_dir",
- "displayName": "HCat PID Dir",
- "description": "Directory in which the PID files for HCatalog processes will be created",
- "defaultValue": "/var/run/hcatalog",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "HIVE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "jobtracker_host",
- "displayName": "JobTracker host",
- "value": "",
- "defaultValue": "",
- "description": "The host that has been assigned to run JobTracker",
- "displayType": "masterHost",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE",
- "category": "JobTracker"
- },
- {
- "id": "puppet var",
- "name": "tasktracker_hosts",
- "displayName": "TaskTracer hosts",
- "value": "",
- "defaultValue": "",
- "description": "The hosts that have been assigned to run TaskTracker",
- "displayType": "slaveHosts",
- "isVisible": true,
- "isRequired": false,
- "domain": "tasktracker-global",
- "serviceName": "MAPREDUCE",
- "category": "TaskTracker"
- },
- {
- "id": "puppet var",
- "name": "mapred_local_dir",
- "displayName": "MapReduce local directories",
- "description": "Directories for MapReduce to store intermediate data files",
- "defaultValue": "/grid/0/hadoop/mapred\n/grid/1/hadoop/mapred\n",
- "defaultDirectory": "hadoop/mapred",
- "displayType": "directories",
- "isReconfigurable": false,
- "isVisible": true,
- "domain": "tasktracker-global",
- "serviceName": "MAPREDUCE",
- "category": "TaskTracker"
- },
- {
- "id": "puppet var",
- "name": "mapred_system_dir",
- "displayName": "MapReduce system directories",
- "description": "",
- "defaultValue": "",
- "displayType": "directories",
- "isReconfigurable": false,
- "isVisible": true,
- "isRequired": false,
- "domain": "global",
- "serviceName": "MAPREDUCE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "scheduler_name",
- "displayName": "MapReduce Capacity Scheduler",
- "description": "The scheduler to use for scheduling of MapReduce jobs",
- "defaultValue": "org.apache.hadoop.mapred.CapacityTaskScheduler",
- "displayType": "directory",
- "isVisible": true,
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "jtnode_opt_newsize",
- "displayName": "JobTracker new generation size",
- "description": "Default size of Java new generation size for JobTracker in MB (Java option -XX:NewSize)",
- "defaultValue": "200",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE",
- "category": "JobTracker"
- },
- {
- "id": "puppet var",
- "name": "jtnode_opt_maxnewsize",
- "displayName": "JobTracker maximum new generation size",
- "description": "Maximum size of Java new generation for JobTracker in MB (Java option -XX:MaxNewSize)",
- "defaultValue": "200",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE",
- "category": "JobTracker"
- },
- {
- "id": "puppet var",
- "name": "jtnode_heapsize",
- "displayName": "JobTracker maximum Java heap size",
- "description": "Maximum Java heap size for JobTracker in MB (Java option -Xmx)",
- "defaultValue": "1024",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE",
- "category": "JobTracker"
- },
- {
- "id": "puppet var",
- "name": "mapred_map_tasks_max",
- "displayName": "Number of Map slots per node",
- "description": "Number of slots that Map tasks that run simultaneously can occupy on a TaskTracker",
- "defaultValue": "4",
- "displayType": "int",
- "isVisible": true,
- "domain": "tasktracker-global",
- "serviceName": "MAPREDUCE",
- "category": "TaskTracker"
- },
- {
- "id": "puppet var",
- "name": "mapred_red_tasks_max",
- "displayName": "Number of Reduce slots per node",
- "description": "Number of slots that Reduce tasks that run simultaneously can occupy on a TaskTracker.",
- "defaultValue": "2",
- "displayType": "int",
- "isVisible": true,
- "isRequired": false,
- "domain": "tasktracker-global",
- "serviceName": "MAPREDUCE",
- "category": "TaskTracker"
- },
- {
- "id": "puppet var",
- "name": "mapred_cluster_map_mem_mb",
- "displayName": "Cluster's Map slot size (virtual memory)",
- "description": "The virtual memory size of a single Map slot in the MapReduce framework",
- "defaultValue": "-1",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "mapred_cluster_red_mem_mb",
- "displayName": "Cluster's Reduce slot size (virtual memory)",
- "description": "The virtual memory size of a single Reduce slot in the MapReduce framework",
- "defaultValue": "-1",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "mapred_cluster_max_map_mem_mb",
- "displayName": "Upper limit on virtual memory for single Map task",
- "description": "Upper limit on virtual memory size for a single Map task of any MapReduce job",
- "defaultValue": "-1",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "mapred_cluster_max_red_mem_mb",
- "displayName": "Upper limit on virtual memory for single Reduce task",
- "description": "Upper limit on virtual memory size for a single Reduce task of any MapReduce job",
- "defaultValue": "-1",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "mapred_job_map_mem_mb",
- "displayName": "Default virtual memory for a job's map-task",
- "description": "Virtual memory for single Map task",
- "defaultValue": "-1",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "mapred_job_red_mem_mb",
- "displayName": "Default virtual memory for a job's reduce-task",
- "description": "Virtual memory for single Reduce task",
- "defaultValue": "-1",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "mapred_child_java_opts_sz",
- "displayName": "Java options for MapReduce tasks",
- "description": "Java options for the TaskTracker child processes.",
- "defaultValue": "768",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "tasktracker-global",
- "serviceName": "MAPREDUCE",
- "category": "TaskTracker"
- },
- {
- "id": "puppet var",
- "name": "io_sort_mb",
- "displayName": "Map-side sort buffer memory",
- "description": "The total amount of Map-side buffer memory to use while sorting files (Expert-only configuration)",
- "defaultValue": "200",
- "displayType": "int",
- "unit": "MB",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "io_sort_spill_percent",
- "displayName": "Limit on buffer",
- "description": "Percentage of sort buffer used for record collection (Expert-only configuration)",
- "defaultValue": "0.9",
- "displayType": "float",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "mapreduce_userlog_retainhours",
- "displayName": "Job log retention (hours)",
- "description": "The maximum time, in hours, for which the user-logs are to be retained after the job completion.",
- "defaultValue": "24",
- "displayType": "int",
- "unit": "hours",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "maxtasks_per_job",
- "displayName": "Maximum number tasks for a Job",
- "description": "Maximum number of tasks for a single Job",
- "defaultValue": "-1",
- "displayType": "int",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "lzo_enabled",
- "displayName": "LZO compression",
- "description": "LZO compression enabled",
- "defaultValue": false,
- "displayType": "checkbox",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "snappy_enabled",
- "displayName": "Snappy compression",
- "description": "Snappy compression enabled",
- "defaultValue": true,
- "isReconfigurable": false,
- "displayType": "checkbox",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "rca_enabled",
- "displayName": "Enable RCA",
- "description": "Enable RCA",
- "defaultValue": true,
- "isReconfigurable": true,
- "displayType": "checkbox",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MAPREDUCE"
- },
- {
- "id": "puppet var",
- "name": "mapred_hosts_exclude",
- "displayName": "Exclude hosts",
- "description": "Exclude entered hosts",
- "defaultValue": "mapred.exclude",
- "displayType": "directories",
- "isVisible": false,
- "serviceName": "MAPREDUCE",
- "domain": "global",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "mapred_hosts_include",
- "displayName": "Include hosts",
- "description": "Include enetered hosts",
- "defaultValue": "mapred.include",
- "displayType": "directories",
- "isVisible": false,
- "serviceName": "MAPREDUCE",
- "domain": "global",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "mapred_jobstatus_dir",
- "displayName": "Job Status directory",
- "description": "Directory path to view job status",
- "defaultValue": "file:////mapred/jobstatus",
- "displayType": "advanced",
- "isVisible": false,
- "serviceName": "MAPREDUCE",
- "domain": "global",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "task_controller",
- "displayName": "task_controller",
- "description": "",
- "defaultValue": "org.apache.hadoop.mapred.DefaultTaskController",
- "displayType": "advanced",
- "isVisible": false,
- "serviceName": "MAPREDUCE",
- "domain": "global",
- "category": "Advanced"
- },
- /*
- {
- "id": "puppet var",
- "name": "jdk_location",
- "displayName": "URL to download 64-bit JDK",
- "description": "URL from where the 64-bit JDK binary can be downloaded",
- "defaultValue": "",
- "isRequired": false,
- "isReconfigurable": false,
- "displayType": "url",
- "isVisible": true,
- "serviceName": "MISC"
- },
- */
- {
- "id": "puppet var",
- "name": "java64_home",
- "displayName": "Path to 64-bit JAVA_HOME",
- "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.",
- "defaultValue": "/usr/jdk64/jdk1.6.0_31",
- "isRequired": true,
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MISC"
- },
- {
- "id": "puppet var",
- "name": "run_dir",
- "displayName": "Hadoop run directory",
- "description": "",
- "defaultValue": "/var/run/hadoop",
- "isRequired": false,
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hadoop_conf_dir",
- "displayName": "Hadoop conf directory",
- "description": "",
- "defaultValue": "/etc/hadoop",
- "isRequired": false,
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "namenode_formatted_mark_dir",
- "displayName": "Hadoop formatted mark directory",
- "description": "",
- "defaultValue": "/var/run/hadoop/hdfs/namenode/formatted/",
- "isRequired": false,
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "NameNode"
- },
- {
- "id": "puppet var",
- "name": "hcat_conf_dir",
- "displayName": "HCat conf directory",
- "description": "",
- "defaultValue": "",
- "isRequired": false,
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "HDFS",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hcat_metastore_port",
- "displayName": "hcat_metastore_port",
- "description": "",
- "defaultValue": "/usr/lib/hcatalog/share/hcatalog",
- "isRequired": true,
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC"
- },
- {
- "id": "puppet var",
- "name": "hcat_lib",
- "displayName": "hcat_lib",
- "description": "",
- "defaultValue": "/usr/lib/hcatalog/share/hcatalog",
- "isRequired": true,
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC"
- },
- {
- "id": "puppet var",
- "name": "hcat_dbroot",
- "displayName": "hcat_dbroot",
- "description": "",
- "defaultValue": "/usr/lib/hcatalog/share/hcatalog",
- "isRequired": true,
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC"
- },
- {
- "id": "puppet var",
- "name": "hcat_dbroot",
- "displayName": "hcat_dbroot",
- "description": "",
- "defaultValue": "/usr/lib/hcatalog/share/hcatalog",
- "isRequired": true,
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC"
- },
- /*
- {
- "id": "puppet var",
- "name": "hadoop_log_dir",
- "displayName": "Hadoop Log Dir",
- "description": "Directory for Hadoop log files",
- "defaultValue": "/var/log/hadoop",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true, "serviceName": "MISC",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "hadoop_pid_dir",
- "displayName": "Hadoop PID Dir",
- "description": "Directory in which the pid files for Hadoop processes will be created",
- "defaultValue": "/var/run/hadoop",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true, "serviceName": "MISC",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "using_local_repo",
- "displayName": "Whether a local repo is being used",
- "description": "Whether a local repo is being used",
- "defaultValue": false,
- "isReconfigurable": false,
- "displayType": "checkbox",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC"
- },
- {
- "id": "puppet var",
- "name": "yum_repo_file",
- "displayName": "Path to local repo file",
- "description": "Path to local repository file that configures from where to download software packages",
- "defaultValue": "/etc/yum.repos.d/hdp.repo",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MISC"
- },
- */
- {
- "id": "puppet var",
- "name": "hdfs_user",
- "displayName": "HDFS User",
- "description": "User to run HDFS as",
- "defaultValue": "hdfs",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "serviceName": "MISC",
- "domain": "global",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "mapred_user",
- "displayName": "MapReduce User",
- "description": "User to run MapReduce as",
- "defaultValue": "mapred",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "hbase_user",
- "displayName": "HBase User",
- "description": "User to run HBase as",
- "defaultValue": "hbase",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "hive_user",
- "displayName": "Hive User",
- "description": "User to run Hive as",
- "defaultValue": "hive",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "hcat_user",
- "displayName": "HCat User",
- "description": "User to run HCatalog as",
- "defaultValue": "hcat",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "webhcat_user",
- "displayName": "WebHCat User",
- "description": "User to run WebHCat as",
- "defaultValue": "hcat",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "oozie_user",
- "displayName": "Oozie User",
- "description": "User to run Oozie as",
- "defaultValue": "oozie",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "oozie_conf_dir",
- "displayName": "Oozie conf dir",
- "description": "",
- "defaultValue": "/etc/oozie",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "General"
- },
- {
- "id": "puppet var",
- "name": "pig_conf_dir",
- "displayName": "Pig conf dir",
- "description": "",
- "defaultValue": "/etc/pig",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "General"
- },
- {
- "id": "puppet var",
- "name": "pig_user",
- "displayName": "Pig User",
- "description": "User to run Pig as",
- "defaultValue": "pig",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "sqoop_conf_dir",
- "displayName": "sqoop conf dir",
- "description": "",
- "defaultValue": "/etc/sqoop",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "General"
- },
- {
- "id": "puppet var",
- "name": "sqoop_lib",
- "displayName": "sqoop conf dir",
- "description": "",
- "defaultValue": "/usr/lib/sqoop/lib/",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "General"
- },
- {
- "id": "puppet var",
- "name": "sqoop_user",
- "displayName": "Sqoop User",
- "description": "User to run Sqoop as",
- "defaultValue": "sqoop",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "zk_user",
- "displayName": "ZooKeeper User",
- "description": "User to run ZooKeeper as",
- "defaultValue": "zookeeper",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "user_group",
- "displayName": "Group",
- "description": "Group that the users specified above belong to",
- "defaultValue": "hadoop",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "domain": "global",
- "serviceName": "MISC",
- "category": "Users and Groups"
- },
- {
- "id": "puppet var",
- "name": "nagios_user",
- "displayName": "Nagios username",
- "description": "Nagios username",
- "defaultValue": "nagios",
- "isReconfigurable": false,
- "displayType": "user",
- "domain": "global",
- "isVisible": false,
- "serviceName": "NAGIOS"
- },
- {
- "id": "puppet var",
- "name": "nagios_group",
- "displayName": "Nagios username",
- "description": "Nagios username",
- "defaultValue": "nagios",
- "isReconfigurable": false,
- "displayType": "user",
- "domain": "global",
- "isVisible": false,
- "serviceName": "NAGIOS"
- },
- {
- "id": "puppet var",
- "name": "nagios_web_login",
- "displayName": "Nagios Admin username",
- "description": "Nagios Web UI Admin username",
- "defaultValue": "nagiosadmin",
- "isReconfigurable": false,
- "displayType": "user",
- "domain": "global",
- "isVisible": true,
- "serviceName": "NAGIOS"
- },
- {
- "id": "puppet var",
- "name": "nagios_web_password",
- "displayName": "Nagios Admin password",
- "description": "Nagios Web UI Admin password",
- "defaultValue": "",
- "isReconfigurable": false,
- "displayType": "password",
- "isVisible": true,
- "domain": "global",
- "serviceName": "NAGIOS"
- },
- {
- "id": "puppet var",
- "name": "nagios_contact",
- "displayName": "Hadoop Admin email",
- "description": "Hadoop Administrator email for alert notification",
- "defaultValue": "",
- "displayType": "email",
- "isVisible": true,
- "domain": "global",
- "serviceName": "NAGIOS"
- },
- {
- "id": "puppet var",
- "name": "oozieserver_host",
- "displayName": "Oozie Server host",
- "value": "",
- "defaultValue": "",
- "description": "The host that has been assigned to run Oozie Server",
- "displayType": "masterHost",
- "isVisible": true,
- "domain": "global",
- "serviceName": "OOZIE",
- "category": "Oozie Server"
- },
- /*
- {
- "id": "puppet var",
- "name": "oozie_database",
- "displayName": "Oozie Database",
- "value": "",
- "defaultValue": "New PostgreSQL Database",
- "options": [
- {
- displayName: 'New PostgreSQL Database',
- foreignKeys: ['oozie_ambari_database', 'oozie_ambari_host']
- },
- {
- displayName: 'Existing Database',
- foreignKeys: ['oozie_existing_database', 'oozie_existing_host']
- }
- ],
- "description": "PostgreSQL will be installed by ambari. Any other database will have to be installed by the user.",
- "displayType": "radio button",
- "radioName": "oozie-database",
- "isVisible": true,
- "serviceName": "OOZIE",
- "category": "Oozie Server"
- },
- {
- "id": "puppet var",
- "name": "oozie_existing_database",
- "displayName": "Oozie Database",
- "value": "",
- "defaultValue": "MySQL",
- "description": "Select the database, if you already have existing one for Oozie.",
- "displayType": "combobox",
- "isVisible": false,
- "options": ['MySQL', 'PostgreSQL'],
- "serviceName": "OOZIE",
- "category": "Oozie Server"
- },
- {
- "id": "puppet var",
- "name": "oozie_existing_host",
- "displayName": "Database host",
- "description": "Select the host on which the existing database is hosted.",
- "defaultValue": "",
- "isReconfigurable": false,
- "displayType": "host",
- "isVisible": false,
- "serviceName": "OOZIE",
- "category": "Oozie Server"
- },
- {
- "id": "puppet var",
- "name": "oozie_ambari_database",
- "displayName": "Oozie Database",
- "value": "",
- "defaultValue": "PostgreSQL",
- "description": "PostgreSQL will be installed by ambari.",
- "displayType": "masterHost",
- "isVisible": true,
- "serviceName": "OOZIE",
- "category": "Oozie Server"
- },
- {
- "id": "puppet var",
- "name": "oozie_ambari_host",
- "value": "",
- "defaultValue": "",
- "displayName": "PostgreSQL host",
- "description": "Host on which the PostgreSQL database will be created by ambari. ",
- "isReconfigurable": false,
- "displayType": "masterHost",
- "isVisible": true,
- "serviceName": "OOZIE",
- "category": "Oozie Server"
- },
- {
- "id": "puppet var",
- "name": "oozie_database_name",
- "displayName": "Database name",
- "description": "Database name used for the Oozie",
- "defaultValue": "oozie",
- "isReconfigurable": false,
- "displayType": "host",
- "isVisible": true,
- "serviceName": "OOZIE",
- "category": "Oozie Server"
- },
- {
- "id": "puppet var",
- "name": "oozie_metastore_user_name",
- "displayName": "Database user",
- "description": "Database user name to use to connect to the database",
- "defaultValue": "oozie",
- "isReconfigurable": false,
- "displayType": "user",
- "isVisible": true,
- "serviceName": "OOZIE",
- "category": "Oozie Server"
- },
- {
- "id": "puppet var",
- "name": "oozie_metastore_user_passwd",
- "displayName": "Database password",
- "description": "Database password to use to connect to the PostgreSQL database",
- "defaultValue": "",
- "isReconfigurable": false,
- "displayType": "password",
- "isVisible": true,
- "serviceName": "OOZIE",
- "category": "Oozie Server"
- },
- */
- {
- "id": "puppet var",
- "name": "oozie_data_dir",
- "displayName": "Oozie Data Dir",
- "description": "Data directory in which the Oozie DB exists",
- "defaultValue": "",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "isRequired": false,
- "domain": "global",
- "serviceName": "OOZIE",
- "category": "Oozie Server"
- },
- {
- "id": "puppet var",
- "name": "oozie_log_dir",
- "displayName": "Oozie Log Dir",
- "description": "Directory for oozie logs",
- "defaultValue": "/var/log/oozie",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "OOZIE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "oozie_pid_dir",
- "displayName": "Oozie PID Dir",
- "description": "Directory in which the pid files for oozie processes will be created",
- "defaultValue": "/var/run/oozie",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "OOZIE",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "zookeeperserver_hosts",
- "displayName": "ZooKeeper Server hosts",
- "value": "",
- "defaultValue": "",
- "description": "The host that has been assigned to run ZooKeeper Server",
- "displayType": "masterHosts",
- "isVisible": true,
- "isRequired": false,
- "serviceName": "ZOOKEEPER",
- "category": "ZooKeeper Server"
- },
- {
- "id": "puppet var",
- "name": "zk_data_dir",
- "displayName": "ZooKeeper directory",
- "description": "Data directory for ZooKeeper",
- "defaultValue": "/grid/0/hadoop/zookeeper",
- "defaultDirectory": "hadoop/zookeeper",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "ZOOKEEPER",
- "category": "ZooKeeper Server"
- },
- {
- "id": "puppet var",
- "name": "zk_log_dir",
- "displayName": "ZooKeeper Log Dir",
- "description": "Directory for ZooKeeper log files",
- "defaultValue": "/var/log/zookeeper",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "ZOOKEEPER",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "zk_pid_dir",
- "displayName": "ZooKeeper PID Dir",
- "description": "Directory in which the pid files for zookeeper processes will be created",
- "defaultValue": "/var/run/zookeeper",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": true,
- "domain": "global",
- "serviceName": "ZOOKEEPER",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "zk_pid_file",
- "displayName": "ZooKeeper PID File",
- "description": "",
- "defaultValue": "/var/run/zookeeper/zookeeper_server.pid",
- "isReconfigurable": false,
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "ZOOKEEPER",
- "category": "Advanced"
- },
- {
- "id": "puppet var",
- "name": "tickTime",
- "displayName": "Length of single Tick",
- "description": "The length of a single tick in milliseconds, which is the basic time unit used by ZooKeeper",
- "defaultValue": "2000",
- "displayType": "int",
- "unit": "ms",
- "isVisible": true,
- "domain": "global",
- "serviceName": "ZOOKEEPER",
- "category": "ZooKeeper Server"
- },
- {
- "id": "puppet var",
- "name": "initLimit",
- "displayName": "Ticks to allow for sync at Init",
- "description": "Amount of time, in ticks to allow followers to connect and sync to a leader",
- "defaultValue": "10",
- "displayType": "int",
- "isVisible": true,
- "domain": "global",
- "serviceName": "ZOOKEEPER",
- "category": "ZooKeeper Server"
- },
- {
- "id": "puppet var",
- "name": "syncLimit",
- "displayName": "Ticks to allow for sync at Runtime",
- "description": "Amount of time, in ticks to allow followers to connect",
- "defaultValue": "5",
- "displayType": "int",
- "isVisible": true,
- "domain": "global",
- "serviceName": "ZOOKEEPER",
- "category": "ZooKeeper Server"
- },
- {
- "id": "puppet var",
- "name": "clientPort",
- "displayName": "Port for running ZK Server",
- "description": "Port for running ZooKeeper server",
- "defaultValue": "2181",
- "displayType": "int",
- "isVisible": true,
- "domain": "global",
- "serviceName": "ZOOKEEPER",
- "category": "ZooKeeper Server"
- },
- {
- "id": "puppet var",
- "name": "zk_conf_dir",
- "displayName": "zk_conf_dir",
- "description": "",
- "defaultValue": "/etc/conf/",
- "displayType": "directory",
- "isVisible": false,
- "domain": "global",
- "serviceName": "MISC",
- "category": "General"
- }
- ]
- };
|