core-default.xml 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494
  1. <?xml version="1.0"?>
  2. <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
  3. <!--
  4. Licensed to the Apache Software Foundation (ASF) under one or more
  5. contributor license agreements. See the NOTICE file distributed with
  6. this work for additional information regarding copyright ownership.
  7. The ASF licenses this file to You under the Apache License, Version 2.0
  8. (the "License"); you may not use this file except in compliance with
  9. the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing, software
  12. distributed under the License is distributed on an "AS IS" BASIS,
  13. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. See the License for the specific language governing permissions and
  15. limitations under the License.
  16. -->
  17. <!-- Do not modify this file directly. Instead, copy entries that you -->
  18. <!-- wish to modify from this file into core-site.xml and change them -->
  19. <!-- there. If core-site.xml does not already exist, create it. -->
  20. <configuration>
  21. <!--- global properties -->
  22. <property>
  23. <name>hadoop.common.configuration.version</name>
  24. <value>3.0.0</value>
  25. <description>version of this configuration file</description>
  26. </property>
  27. <property>
  28. <name>hadoop.tmp.dir</name>
  29. <value>/tmp/hadoop-${user.name}</value>
  30. <description>A base for other temporary directories.</description>
  31. </property>
  32. <property>
  33. <name>hadoop.http.filter.initializers</name>
  34. <value>org.apache.hadoop.http.lib.StaticUserWebFilter</value>
  35. <description>A comma separated list of class names. Each class in the list
  36. must extend org.apache.hadoop.http.FilterInitializer. The corresponding
  37. Filter will be initialized. Then, the Filter will be applied to all user
  38. facing jsp and servlet web pages. The ordering of the list defines the
  39. ordering of the filters.</description>
  40. </property>
  41. <property>
  42. <name>hadoop.http.idle_timeout.ms</name>
  43. <value>60000</value>
  44. <description>
  45. NN/JN/DN Server connection timeout in milliseconds.
  46. </description>
  47. </property>
  48. <property>
  49. <name>hadoop.http.metrics.enabled</name>
  50. <value>true</value>
  51. <description>
  52. If true, set Jetty's StatisticsHandler to HTTP server to collect
  53. HTTP layer metrics and register them to Hadoop metrics system.
  54. </description>
  55. </property>
  56. <property>
  57. <name>hadoop.http.jmx.nan-filter.enabled</name>
  58. <value>false</value>
  59. <description>
  60. The REST API of the JMX interface can return with NaN values
  61. if the attribute represent a 0.0/0.0 value.
  62. Some JSON parser by default can not parse json attributes like foo:NaN.
  63. If this filter is enabled the NaN values will be converted to 0.0 values,
  64. to make json parse less complicated.
  65. </description>
  66. </property>
  67. <!--- security properties -->
  68. <property>
  69. <name>hadoop.security.authorization</name>
  70. <value>false</value>
  71. <description>Is service-level authorization enabled?</description>
  72. </property>
  73. <property>
  74. <name>security.service.authorization.default.acl</name>
  75. <value></value>
  76. <description>
  77. Define the default acl for the Hadoop service if the acl of Hadoop
  78. service is not defined in hadoop-policy.xml. If not set, `*` is applied
  79. meaning that all users are allowed to access the service. The list of
  80. users and groups are both comma-separated list of names separated by
  81. a space. Example: `user1,user2 group1,group2`.
  82. </description>
  83. </property>
  84. <property>
  85. <name>security.service.authorization.default.acl.blocked</name>
  86. <value></value>
  87. <description>
  88. This property specifies the list of users and groups who are not
  89. authorized to access Hadoop service.
  90. </description>
  91. </property>
  92. <property>
  93. <name>hadoop.security.instrumentation.requires.admin</name>
  94. <value>false</value>
  95. <description>
  96. Indicates if administrator ACLs are required to access
  97. instrumentation servlets (JMX, METRICS, CONF, STACKS, PROF).
  98. </description>
  99. </property>
  100. <property>
  101. <name>hadoop.security.authentication</name>
  102. <value>simple</value>
  103. <description>Possible values are simple (no authentication), and kerberos
  104. </description>
  105. </property>
  106. <property>
  107. <name>hadoop.security.group.mapping</name>
  108. <value>org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback</value>
  109. <description>
  110. Class for user to group mapping (get groups for a given user) for ACL.
  111. The default implementation,
  112. org.apache.hadoop.security.JniBasedUnixGroupsMappingWithFallback,
  113. will determine if the Java Native Interface (JNI) is available. If JNI is
  114. available the implementation will use the API within hadoop to resolve a
  115. list of groups for a user. If JNI is not available then the shell
  116. implementation, ShellBasedUnixGroupsMapping, is used. This implementation
  117. shells out to the Linux/Unix environment with the
  118. <code>bash -c groups</code> command to resolve a list of groups for a user.
  119. </description>
  120. </property>
  121. <property>
  122. <name>hadoop.security.dns.interface</name>
  123. <description>
  124. The name of the Network Interface from which the service should determine
  125. its host name for Kerberos login. e.g. eth2. In a multi-homed environment,
  126. the setting can be used to affect the _HOST substitution in the service
  127. Kerberos principal. If this configuration value is not set, the service
  128. will use its default hostname as returned by
  129. InetAddress.getLocalHost().getCanonicalHostName().
  130. Most clusters will not require this setting.
  131. </description>
  132. </property>
  133. <property>
  134. <name>hadoop.security.dns.nameserver</name>
  135. <description>
  136. The host name or IP address of the name server (DNS) which a service Node
  137. should use to determine its own host name for Kerberos Login. Requires
  138. hadoop.security.dns.interface.
  139. Most clusters will not require this setting.
  140. </description>
  141. </property>
  142. <property>
  143. <name>hadoop.security.resolver.impl</name>
  144. <value>org.apache.hadoop.net.DNSDomainNameResolver</value>
  145. <description>
  146. The resolver implementation used to resolve FQDN for Kerberos
  147. </description>
  148. </property>
  149. <property>
  150. <name>hadoop.security.dns.log-slow-lookups.enabled</name>
  151. <value>false</value>
  152. <description>
  153. Time name lookups (via SecurityUtil) and log them if they exceed the
  154. configured threshold.
  155. </description>
  156. </property>
  157. <property>
  158. <name>hadoop.security.dns.log-slow-lookups.threshold.ms</name>
  159. <value>1000</value>
  160. <description>
  161. If slow lookup logging is enabled, this threshold is used to decide if a
  162. lookup is considered slow enough to be logged.
  163. </description>
  164. </property>
  165. <property>
  166. <name>hadoop.security.groups.cache.secs</name>
  167. <value>300</value>
  168. <description>
  169. This is the config controlling the validity of the entries in the cache
  170. containing the user->group mapping. When this duration has expired,
  171. then the implementation of the group mapping provider is invoked to get
  172. the groups of the user and then cached back.
  173. </description>
  174. </property>
  175. <property>
  176. <name>hadoop.security.groups.negative-cache.secs</name>
  177. <value>30</value>
  178. <description>
  179. Expiration time for entries in the the negative user-to-group mapping
  180. caching, in seconds. This is useful when invalid users are retrying
  181. frequently. It is suggested to set a small value for this expiration, since
  182. a transient error in group lookup could temporarily lock out a legitimate
  183. user.
  184. Set this to zero or negative value to disable negative user-to-group caching.
  185. </description>
  186. </property>
  187. <property>
  188. <name>hadoop.security.groups.cache.warn.after.ms</name>
  189. <value>5000</value>
  190. <description>
  191. If looking up a single user to group takes longer than this amount of
  192. milliseconds, we will log a warning message.
  193. </description>
  194. </property>
  195. <property>
  196. <name>hadoop.security.groups.cache.background.reload</name>
  197. <value>false</value>
  198. <description>
  199. Whether to reload expired user->group mappings using a background thread
  200. pool. If set to true, a pool of
  201. hadoop.security.groups.cache.background.reload.threads is created to
  202. update the cache in the background.
  203. </description>
  204. </property>
  205. <property>
  206. <name>hadoop.security.groups.cache.background.reload.threads</name>
  207. <value>3</value>
  208. <description>
  209. Only relevant if hadoop.security.groups.cache.background.reload is true.
  210. Controls the number of concurrent background user->group cache entry
  211. refreshes. Pending refresh requests beyond this value are queued and
  212. processed when a thread is free.
  213. </description>
  214. </property>
  215. <property>
  216. <name>hadoop.security.groups.shell.command.timeout</name>
  217. <value>0s</value>
  218. <description>
  219. Used by the ShellBasedUnixGroupsMapping class, this property controls how
  220. long to wait for the underlying shell command that is run to fetch groups.
  221. Expressed in seconds (e.g. 10s, 1m, etc.), if the running command takes
  222. longer than the value configured, the command is aborted and the groups
  223. resolver would return a result of no groups found. A value of 0s (default)
  224. would mean an infinite wait (i.e. wait until the command exits on its own).
  225. </description>
  226. </property>
  227. <property>
  228. <name>hadoop.security.group.mapping.ldap.ctx.factory.class</name>
  229. <value></value>
  230. <description>
  231. Used to specify the fully qualified class name of the initial context
  232. factory when connecting to an LDAP server. The default value is
  233. "com.sun.jndi.ldap.LdapCtxFactory", but set to null now to avoid
  234. LifecycleExecutionException with JDK 11(see HADOOP-15941).
  235. </description>
  236. </property>
  237. <property>
  238. <name>hadoop.security.group.mapping.ldap.connection.timeout.ms</name>
  239. <value>60000</value>
  240. <description>
  241. This property is the connection timeout (in milliseconds) for LDAP
  242. operations. If the LDAP provider doesn't establish a connection within the
  243. specified period, it will abort the connect attempt. Non-positive value
  244. means no LDAP connection timeout is specified in which case it waits for the
  245. connection to establish until the underlying network times out.
  246. </description>
  247. </property>
  248. <property>
  249. <name>hadoop.security.group.mapping.ldap.read.timeout.ms</name>
  250. <value>60000</value>
  251. <description>
  252. This property is the read timeout (in milliseconds) for LDAP
  253. operations. If the LDAP provider doesn't get a LDAP response within the
  254. specified period, it will abort the read attempt. Non-positive value
  255. means no read timeout is specified in which case it waits for the response
  256. infinitely.
  257. </description>
  258. </property>
  259. <property>
  260. <name>hadoop.security.group.mapping.ldap.num.attempts</name>
  261. <value>3</value>
  262. <description>
  263. This property is the number of attempts to be made for LDAP operations.
  264. If this limit is exceeded, LdapGroupsMapping will return an empty
  265. group list.
  266. </description>
  267. </property>
  268. <property>
  269. <name>hadoop.security.group.mapping.ldap.num.attempts.before.failover</name>
  270. <value>3</value>
  271. <description>
  272. This property is the number of attempts to be made for LDAP operations
  273. using a single LDAP instance. If multiple LDAP servers are configured
  274. and this number of failed operations is reached, we will switch to the
  275. next LDAP server. The configuration for the overall number of attempts
  276. will still be respected, failover will thus be performed only if this
  277. property is less than hadoop.security.group.mapping.ldap.num.attempts.
  278. </description>
  279. </property>
  280. <property>
  281. <name>hadoop.security.group.mapping.ldap.url</name>
  282. <value></value>
  283. <description>
  284. The URL of the LDAP server(s) to use for resolving user groups when using
  285. the LdapGroupsMapping user to group mapping. Supports configuring multiple
  286. LDAP servers via a comma-separated list.
  287. </description>
  288. </property>
  289. <property>
  290. <name>hadoop.security.group.mapping.ldap.ssl</name>
  291. <value>false</value>
  292. <description>
  293. Whether or not to use SSL when connecting to the LDAP server.
  294. </description>
  295. </property>
  296. <property>
  297. <name>hadoop.security.group.mapping.ldap.ssl.keystore</name>
  298. <value></value>
  299. <description>
  300. File path to the SSL keystore that contains the SSL certificate required
  301. by the LDAP server.
  302. </description>
  303. </property>
  304. <property>
  305. <name>hadoop.security.group.mapping.ldap.ssl.keystore.password.file</name>
  306. <value></value>
  307. <description>
  308. The path to a file containing the password of the LDAP SSL keystore. If
  309. the password is not configured in credential providers and the property
  310. hadoop.security.group.mapping.ldap.ssl.keystore.password is not set,
  311. LDAPGroupsMapping reads password from the file.
  312. IMPORTANT: This file should be readable only by the Unix user running
  313. the daemons and should be a local file.
  314. </description>
  315. </property>
  316. <property>
  317. <name>hadoop.security.group.mapping.ldap.ssl.keystore.password</name>
  318. <value></value>
  319. <description>
  320. The password of the LDAP SSL keystore. this property name is used as an
  321. alias to get the password from credential providers. If the password can
  322. not be found and hadoop.security.credential.clear-text-fallback is true
  323. LDAPGroupsMapping uses the value of this property for password.
  324. </description>
  325. </property>
  326. <property>
  327. <name>hadoop.security.group.mapping.ldap.conversion.rule</name>
  328. <value>none</value>
  329. <description>
  330. The rule is applied on the group names received from LDAP when
  331. RuleBasedLdapGroupsMapping is configured.
  332. Supported rules are "to_upper", "to_lower" and "none".
  333. to_upper: This will convert all the group names to uppercase.
  334. to_lower: This will convert all the group names to lowercase.
  335. none: This will retain the source formatting, this is default value.
  336. </description>
  337. </property>
  338. <property>
  339. <name>hadoop.security.credential.clear-text-fallback</name>
  340. <value>true</value>
  341. <description>
  342. true or false to indicate whether or not to fall back to storing credential
  343. password as clear text. The default value is true. This property only works
  344. when the password can't not be found from credential providers.
  345. </description>
  346. </property>
  347. <property>
  348. <name>hadoop.security.credential.provider.path</name>
  349. <value></value>
  350. <description>
  351. A comma-separated list of URLs that indicates the type and
  352. location of a list of providers that should be consulted.
  353. </description>
  354. </property>
  355. <property>
  356. <name>hadoop.security.credstore.java-keystore-provider.password-file</name>
  357. <value></value>
  358. <description>
  359. The path to a file containing the custom password for all keystores
  360. that may be configured in the provider path.
  361. </description>
  362. </property>
  363. <property>
  364. <name>hadoop.security.group.mapping.ldap.ssl.truststore</name>
  365. <value></value>
  366. <description>
  367. File path to the SSL truststore that contains the root certificate used to
  368. sign the LDAP server's certificate. Specify this if the LDAP server's
  369. certificate is not signed by a well known certificate authority.
  370. </description>
  371. </property>
  372. <property>
  373. <name>hadoop.security.group.mapping.ldap.ssl.truststore.password.file</name>
  374. <value></value>
  375. <description>
  376. The path to a file containing the password of the LDAP SSL truststore.
  377. IMPORTANT: This file should be readable only by the Unix user running
  378. the daemons.
  379. </description>
  380. </property>
  381. <property>
  382. <name>hadoop.security.group.mapping.ldap.bind.users</name>
  383. <value></value>
  384. <description>
  385. Aliases of users to be used to bind as when connecting to the LDAP
  386. server(s). Each alias will have to have its distinguished name and
  387. password specified through:
  388. hadoop.security.group.mapping.ldap.bind.user
  389. and a password configuration such as:
  390. hadoop.security.group.mapping.ldap.bind.password.alias
  391. For example, if:
  392. hadoop.security.group.mapping.ldap.bind.users=alias1,alias2
  393. then the following configuration is valid:
  394. hadoop.security.group.mapping.ldap.bind.users.alias1.bind.user=bindUser1
  395. hadoop.security.group.mapping.ldap.bind.users.alias1.bind.password.alias=
  396. bindPasswordAlias1
  397. hadoop.security.group.mapping.ldap.bind.users.alias2.bind.user=bindUser2
  398. hadoop.security.group.mapping.ldap.bind.users.alias2.bind.password.alias=
  399. bindPasswordAlias2
  400. </description>
  401. </property>
  402. <property>
  403. <name>hadoop.security.group.mapping.ldap.bind.user</name>
  404. <value></value>
  405. <description>
  406. The distinguished name of the user to bind as when connecting to the LDAP
  407. server. This may be left blank if the LDAP server supports anonymous binds.
  408. </description>
  409. </property>
  410. <property>
  411. <name>hadoop.security.group.mapping.ldap.bind.password.alias</name>
  412. <value></value>
  413. <description>
  414. The alias of the bind user to be used to get the password from credential
  415. providers. If the alias is empty, property
  416. hadoop.security.group.mapping.ldap.bind.password is used instead.
  417. </description>
  418. </property>
  419. <property>
  420. <name>hadoop.security.group.mapping.ldap.bind.password.file</name>
  421. <value></value>
  422. <description>
  423. The path to a file containing the password of the bind user. If
  424. the password is not configured in credential providers and the property
  425. hadoop.security.group.mapping.ldap.bind.password is not set,
  426. LDAPGroupsMapping reads password from the file.
  427. IMPORTANT: This file should be readable only by the Unix user running
  428. the daemons and should be a local file.
  429. </description>
  430. </property>
  431. <property>
  432. <name>hadoop.security.group.mapping.ldap.bind.password</name>
  433. <value></value>
  434. <description>
  435. The password of the bind user. this property name is used as an
  436. alias to get the password from credential providers. If the password can
  437. not be found and hadoop.security.credential.clear-text-fallback is true
  438. LDAPGroupsMapping uses the value of this property for password.
  439. </description>
  440. </property>
  441. <property>
  442. <name>hadoop.security.group.mapping.ldap.base</name>
  443. <value></value>
  444. <description>
  445. The search base for the LDAP connection. This is a distinguished name,
  446. and will typically be the root of the LDAP directory.
  447. </description>
  448. </property>
  449. <property>
  450. <name>hadoop.security.group.mapping.ldap.userbase</name>
  451. <value></value>
  452. <description>
  453. The search base for the LDAP connection for user search query. This is a
  454. distinguished name, and its the root of the LDAP directory for users.
  455. If not set, hadoop.security.group.mapping.ldap.base is used.
  456. </description>
  457. </property>
  458. <property>
  459. <name>hadoop.security.group.mapping.ldap.groupbase</name>
  460. <value></value>
  461. <description>
  462. The search base for the LDAP connection for group search . This is a
  463. distinguished name, and its the root of the LDAP directory for groups.
  464. If not set, hadoop.security.group.mapping.ldap.base is used.
  465. </description>
  466. </property>
  467. <property>
  468. <name>hadoop.security.group.mapping.ldap.search.filter.user</name>
  469. <value>(&amp;(objectClass=user)(sAMAccountName={0}))</value>
  470. <description>
  471. An additional filter to use when searching for LDAP users. The default will
  472. usually be appropriate for Active Directory installations. If connecting to
  473. an LDAP server with a non-AD schema, this should be replaced with
  474. (&amp;(objectClass=inetOrgPerson)(uid={0}). {0} is a special string used to
  475. denote where the username fits into the filter.
  476. If the LDAP server supports posixGroups, Hadoop can enable the feature by
  477. setting the value of this property to "posixAccount" and the value of
  478. the hadoop.security.group.mapping.ldap.search.filter.group property to
  479. "posixGroup".
  480. </description>
  481. </property>
  482. <property>
  483. <name>hadoop.security.group.mapping.ldap.search.filter.group</name>
  484. <value>(objectClass=group)</value>
  485. <description>
  486. An additional filter to use when searching for LDAP groups. This should be
  487. changed when resolving groups against a non-Active Directory installation.
  488. See the description of hadoop.security.group.mapping.ldap.search.filter.user
  489. to enable posixGroups support.
  490. </description>
  491. </property>
  492. <property>
  493. <name>hadoop.security.group.mapping.ldap.search.attr.memberof</name>
  494. <value></value>
  495. <description>
  496. The attribute of the user object that identifies its group objects. By
  497. default, Hadoop makes two LDAP queries per user if this value is empty. If
  498. set, Hadoop will attempt to resolve group names from this attribute,
  499. instead of making the second LDAP query to get group objects. The value
  500. should be 'memberOf' for an MS AD installation.
  501. </description>
  502. </property>
  503. <property>
  504. <name>hadoop.security.group.mapping.ldap.search.attr.member</name>
  505. <value>member</value>
  506. <description>
  507. The attribute of the group object that identifies the users that are
  508. members of the group. The default will usually be appropriate for
  509. any LDAP installation.
  510. </description>
  511. </property>
  512. <property>
  513. <name>hadoop.security.group.mapping.ldap.search.attr.group.name</name>
  514. <value>cn</value>
  515. <description>
  516. The attribute of the group object that identifies the group name. The
  517. default will usually be appropriate for all LDAP systems.
  518. </description>
  519. </property>
  520. <property>
  521. <name>hadoop.security.group.mapping.ldap.search.group.hierarchy.levels</name>
  522. <value>0</value>
  523. <description>
  524. The number of levels to go up the group hierarchy when determining
  525. which groups a user is part of. 0 Will represent checking just the
  526. group that the user belongs to. Each additional level will raise the
  527. time it takes to execute a query by at most
  528. hadoop.security.group.mapping.ldap.directory.search.timeout.
  529. The default will usually be appropriate for all LDAP systems.
  530. </description>
  531. </property>
  532. <property>
  533. <name>hadoop.security.group.mapping.ldap.posix.attr.uid.name</name>
  534. <value>uidNumber</value>
  535. <description>
  536. The attribute of posixAccount to use when groups for membership.
  537. Mostly useful for schemas wherein groups have memberUids that use an
  538. attribute other than uidNumber.
  539. </description>
  540. </property>
  541. <property>
  542. <name>hadoop.security.group.mapping.ldap.posix.attr.gid.name</name>
  543. <value>gidNumber</value>
  544. <description>
  545. The attribute of posixAccount indicating the group id.
  546. </description>
  547. </property>
  548. <property>
  549. <name>hadoop.security.group.mapping.ldap.directory.search.timeout</name>
  550. <value>10000</value>
  551. <description>
  552. The attribute applied to the LDAP SearchControl properties to set a
  553. maximum time limit when searching and awaiting a result.
  554. Set to 0 if infinite wait period is desired.
  555. Default is 10 seconds. Units in milliseconds.
  556. </description>
  557. </property>
  558. <property>
  559. <name>hadoop.security.group.mapping.ldap.group.search.filter.pattern</name>
  560. <value></value>
  561. <description>
  562. Comma separated values that needs to be substituted in the group search
  563. filter during group lookup. The values are substituted in the order they
  564. appear in the list, the first value will replace {0} the second {1} and
  565. so on.
  566. </description>
  567. </property>
  568. <property>
  569. <name>hadoop.security.group.mapping.providers</name>
  570. <value></value>
  571. <description>
  572. Comma separated of names of other providers to provide user to group
  573. mapping. Used by CompositeGroupsMapping.
  574. </description>
  575. </property>
  576. <property>
  577. <name>hadoop.security.group.mapping.providers.combined</name>
  578. <value>true</value>
  579. <description>
  580. true or false to indicate whether groups from the providers are combined or
  581. not. The default value is true. If true, then all the providers will be
  582. tried to get groups and all the groups are combined to return as the final
  583. results. Otherwise, providers are tried one by one in the configured list
  584. order, and if any groups are retrieved from any provider, then the groups
  585. will be returned without trying the left ones.
  586. </description>
  587. </property>
  588. <property>
  589. <name>hadoop.security.service.user.name.key</name>
  590. <value></value>
  591. <description>
  592. For those cases where the same RPC protocol is implemented by multiple
  593. servers, this configuration is required for specifying the principal
  594. name to use for the service when the client wishes to make an RPC call.
  595. </description>
  596. </property>
  597. <property>
  598. <name>fs.azure.user.agent.prefix</name>
  599. <value>unknown</value>
  600. <description>
  601. WASB passes User-Agent header to the Azure back-end. The default value
  602. contains WASB version, Java Runtime version, Azure Client library version,
  603. and the value of the configuration option fs.azure.user.agent.prefix.
  604. </description>
  605. </property>
  606. <property>
  607. <name>hadoop.security.uid.cache.secs</name>
  608. <value>14400</value>
  609. <description>
  610. This is the config controlling the validity of the entries in the cache
  611. containing the userId to userName and groupId to groupName used by
  612. NativeIO getFstat().
  613. </description>
  614. </property>
  615. <property>
  616. <name>hadoop.service.shutdown.timeout</name>
  617. <value>30s</value>
  618. <description>
  619. Timeout to wait for each shutdown operation to complete.
  620. If a hook takes longer than this time to complete, it will be interrupted,
  621. so the service will shutdown. This allows the service shutdown
  622. to recover from a blocked operation.
  623. Some shutdown hooks may need more time than this, for example when
  624. a large amount of data needs to be uploaded to an object store.
  625. In this situation: increase the timeout.
  626. The minimum duration of the timeout is 1 second, "1s".
  627. </description>
  628. </property>
  629. <property>
  630. <name>hadoop.rpc.protection</name>
  631. <value>authentication</value>
  632. <description>A comma-separated list of protection values for secured sasl
  633. connections. Possible values are authentication, integrity and privacy.
  634. authentication means authentication only and no integrity or privacy;
  635. integrity implies authentication and integrity are enabled; and privacy
  636. implies all of authentication, integrity and privacy are enabled.
  637. hadoop.security.saslproperties.resolver.class can be used to override
  638. the hadoop.rpc.protection for a connection at the server side.
  639. </description>
  640. </property>
  641. <property>
  642. <name>hadoop.security.saslproperties.resolver.class</name>
  643. <value></value>
  644. <description>SaslPropertiesResolver used to resolve the QOP used for a
  645. connection. If not specified, the full set of values specified in
  646. hadoop.rpc.protection is used while determining the QOP used for the
  647. connection. If a class is specified, then the QOP values returned by
  648. the class will be used while determining the QOP used for the connection.
  649. </description>
  650. </property>
  651. <property>
  652. <name>hadoop.security.sasl.mechanism</name>
  653. <value>DIGEST-MD5</value>
  654. <description>
  655. The SASL mechanism used in Hadoop.
  656. </description>
  657. </property>
  658. <property>
  659. <name>hadoop.security.sasl.CustomizedCallbackHandler.class</name>
  660. <value></value>
  661. <description>
  662. Some security provider may define a new javax.security.auth.callback.Callback.
  663. This property allows users to configure a customized callback handler.
  664. </description>
  665. </property>
  666. <property>
  667. <name>hadoop.security.sensitive-config-keys</name>
  668. <value>
  669. secret$
  670. password$
  671. ssl.keystore.pass$
  672. fs.s3a.server-side-encryption.key
  673. fs.s3a.*.server-side-encryption.key
  674. fs.s3a.encryption.algorithm
  675. fs.s3a.encryption.key
  676. fs.s3a.encryption.context
  677. fs.s3a.secret.key
  678. fs.s3a.*.secret.key
  679. fs.s3a.session.key
  680. fs.s3a.*.session.key
  681. fs.s3a.session.token
  682. fs.s3a.*.session.token
  683. fs.azure.account.key.*
  684. fs.azure.oauth2.*
  685. fs.adl.oauth2.*
  686. fs.gs.encryption.*
  687. fs.gs.proxy.*
  688. fs.gs.auth.*
  689. credential$
  690. oauth.*secret
  691. oauth.*password
  692. oauth.*token
  693. hadoop.security.sensitive-config-keys
  694. </value>
  695. <description>A comma-separated or multi-line list of regular expressions to
  696. match configuration keys that should be redacted where appropriate, for
  697. example, when logging modified properties during a reconfiguration,
  698. private credentials should not be logged.
  699. </description>
  700. </property>
  701. <property>
  702. <name>hadoop.security.token.service.use_ip</name>
  703. <value>true</value>
  704. <description>
  705. Controls whether tokens always use IP addresses.
  706. DNS changes will not be detected if this option is enabled.
  707. Existing client connections that break will always reconnect
  708. to the IP of the original host. New clients will connect
  709. to the host's new IP but fail to locate a token.
  710. Disabling this option will allow existing and new clients
  711. to detect an IP change and continue to locate the new host's token.
  712. In secure multi-homed environments, this parameter will need to
  713. be set to false on both cluster servers and clients (see HADOOP-7733).
  714. If it is not set correctly, the symptom will be inability to
  715. submit an application to YARN from an external client
  716. (with error "client host not a member of the Hadoop cluster"),
  717. or even from an in-cluster client if server failover occurs.
  718. </description>
  719. </property>
  720. <property>
  721. <name>hadoop.workaround.non.threadsafe.getpwuid</name>
  722. <value>true</value>
  723. <description>Some operating systems or authentication modules are known to
  724. have broken implementations of getpwuid_r and getpwgid_r, such that these
  725. calls are not thread-safe. Symptoms of this problem include JVM crashes
  726. with a stack trace inside these functions. If your system exhibits this
  727. issue, enable this configuration parameter to include a lock around the
  728. calls as a workaround.
  729. An incomplete list of some systems known to have this issue is available
  730. at http://wiki.apache.org/hadoop/KnownBrokenPwuidImplementations
  731. </description>
  732. </property>
  733. <property>
  734. <name>hadoop.kerberos.kinit.command</name>
  735. <value>kinit</value>
  736. <description>Used to periodically renew Kerberos credentials when provided
  737. to Hadoop. The default setting assumes that kinit is in the PATH of users
  738. running the Hadoop client. Change this to the absolute path to kinit if this
  739. is not the case.
  740. </description>
  741. </property>
  742. <property>
  743. <name>hadoop.kerberos.min.seconds.before.relogin</name>
  744. <value>60</value>
  745. <description>The minimum time between relogin attempts for Kerberos, in
  746. seconds.
  747. </description>
  748. </property>
  749. <property>
  750. <name>hadoop.kerberos.keytab.login.autorenewal.enabled</name>
  751. <value>false</value>
  752. <description>Used to enable automatic renewal of keytab based kerberos login.
  753. By default the automatic renewal is disabled for keytab based kerberos login.
  754. </description>
  755. </property>
  756. <property>
  757. <name>hadoop.security.auth_to_local</name>
  758. <value></value>
  759. <description>Maps kerberos principals to local user names</description>
  760. </property>
  761. <property>
  762. <name>hadoop.security.auth_to_local.mechanism</name>
  763. <value>hadoop</value>
  764. <description>The mechanism by which auth_to_local rules are evaluated.
  765. If set to 'hadoop' it will not allow resulting local user names to have
  766. either '@' or '/'. If set to 'MIT' it will follow MIT evaluation rules
  767. and the restrictions of 'hadoop' do not apply.</description>
  768. </property>
  769. <property>
  770. <name>hadoop.token.files</name>
  771. <value></value>
  772. <description>
  773. A comma-separated list of token cache files that have delegation tokens
  774. for hadoop service
  775. </description>
  776. </property>
  777. <property>
  778. <name>hadoop.tokens</name>
  779. <value></value>
  780. <description>
  781. A comma-separated list of delegation tokens from base64 encoding
  782. for hadoop service.
  783. </description>
  784. </property>
  785. <!-- i/o properties -->
  786. <property>
  787. <name>io.file.buffer.size</name>
  788. <value>4096</value>
  789. <description>The size of buffer for use in sequence files.
  790. The size of this buffer should probably be a multiple of hardware
  791. page size (4096 on Intel x86), and it determines how much data is
  792. buffered during read and write operations. Must be greater than zero.
  793. </description>
  794. </property>
  795. <property>
  796. <name>io.bytes.per.checksum</name>
  797. <value>512</value>
  798. <description>The number of bytes per checksum. Must not be larger than
  799. io.file.buffer.size.</description>
  800. </property>
  801. <property>
  802. <name>io.skip.checksum.errors</name>
  803. <value>false</value>
  804. <description>If true, when a checksum error is encountered while
  805. reading a sequence file, entries are skipped, instead of throwing an
  806. exception.</description>
  807. </property>
  808. <property>
  809. <name>io.compression.codecs</name>
  810. <value></value>
  811. <description>A comma-separated list of the compression codec classes that can
  812. be used for compression/decompression. In addition to any classes specified
  813. with this property (which take precedence), codec classes on the classpath
  814. are discovered using a Java ServiceLoader.</description>
  815. </property>
  816. <property>
  817. <name>io.compression.codec.bzip2.library</name>
  818. <value>system-native</value>
  819. <description>The native-code library to be used for compression and
  820. decompression by the bzip2 codec. This library could be specified
  821. either by by name or the full pathname. In the former case, the
  822. library is located by the dynamic linker, usually searching the
  823. directories specified in the environment variable LD_LIBRARY_PATH.
  824. The value of "system-native" indicates that the default system
  825. library should be used. To indicate that the algorithm should
  826. operate entirely in Java, specify "java-builtin".</description>
  827. </property>
  828. <property>
  829. <name>io.compression.codec.lz4.buffersize</name>
  830. <value>262144</value>
  831. <description>
  832. Internal buffer size for Lz4 compressor/decompressors.
  833. </description>
  834. </property>
  835. <property>
  836. <name>io.compression.codec.lz4.use.lz4hc</name>
  837. <value>false</value>
  838. <description>
  839. Enable lz4hc(slow but with high compression ratio) for lz4 compression.
  840. </description>
  841. </property>
  842. <property>
  843. <name>io.compression.codec.lzo.buffersize</name>
  844. <value>65536</value>
  845. <description>
  846. Internal buffer size for Lzo compressor/decompressors.
  847. </description>
  848. </property>
  849. <property>
  850. <name>io.compression.codec.lzo.class</name>
  851. <value>org.apache.hadoop.io.compress.LzoCodec</value>
  852. <description>
  853. Codec class that implements Lzo compression algorithm.
  854. </description>
  855. </property>
  856. <property>
  857. <name>io.compression.codec.snappy.buffersize</name>
  858. <value>262144</value>
  859. <description>
  860. Internal buffer size for Snappy compressor/decompressors.
  861. </description>
  862. </property>
  863. <property>
  864. <name>io.compression.codec.zstd.buffersize</name>
  865. <value>0</value>
  866. <description>
  867. Indicate ZStandard buffer size. The default value 0 means use the
  868. recommended zstd buffer size that the library recommends.
  869. </description>
  870. </property>
  871. <property>
  872. <name>io.compression.codec.zstd.level</name>
  873. <value>3</value>
  874. <description>
  875. Indicate ZStandard compression level. The higher the compression level,
  876. the higher the compression ratio and memory usage, but the slower the
  877. compression and decompression speed.
  878. </description>
  879. </property>
  880. <property>
  881. <name>io.serializations</name>
  882. <value>org.apache.hadoop.io.serializer.WritableSerialization, org.apache.hadoop.io.serializer.avro.AvroSpecificSerialization, org.apache.hadoop.io.serializer.avro.AvroReflectSerialization</value>
  883. <description>A list of serialization classes that can be used for
  884. obtaining serializers and deserializers.</description>
  885. </property>
  886. <property>
  887. <name>io.seqfile.local.dir</name>
  888. <value>${hadoop.tmp.dir}/io/local</value>
  889. <description>The local directory where sequence file stores intermediate
  890. data files during merge. May be a comma-separated list of
  891. directories on different devices in order to spread disk i/o.
  892. Directories that do not exist are ignored.
  893. </description>
  894. </property>
  895. <property>
  896. <name>io.map.index.skip</name>
  897. <value>0</value>
  898. <description>Number of index entries to skip between each entry.
  899. Zero by default. Setting this to values larger than zero can
  900. facilitate opening large MapFiles using less memory.</description>
  901. </property>
  902. <property>
  903. <name>io.map.index.interval</name>
  904. <value>128</value>
  905. <description>
  906. MapFile consist of two files - data file (tuples) and index file
  907. (keys). For every io.map.index.interval records written in the
  908. data file, an entry (record-key, data-file-position) is written
  909. in the index file. This is to allow for doing binary search later
  910. within the index file to look up records by their keys and get their
  911. closest positions in the data file.
  912. </description>
  913. </property>
  914. <property>
  915. <name>io.erasurecode.codec.rs.rawcoders</name>
  916. <value>rs_native,rs_java</value>
  917. <description>
  918. Comma separated raw coder implementations for the rs codec. The earlier
  919. factory is prior to followings in case of failure of creating raw coders.
  920. </description>
  921. </property>
  922. <property>
  923. <name>io.erasurecode.codec.rs-legacy.rawcoders</name>
  924. <value>rs-legacy_java</value>
  925. <description>
  926. Comma separated raw coder implementations for the rs-legacy codec. The earlier
  927. factory is prior to followings in case of failure of creating raw coders.
  928. </description>
  929. </property>
  930. <property>
  931. <name>io.erasurecode.codec.xor.rawcoders</name>
  932. <value>xor_native,xor_java</value>
  933. <description>
  934. Comma separated raw coder implementations for the xor codec. The earlier
  935. factory is prior to followings in case of failure of creating raw coders.
  936. </description>
  937. </property>
  938. <property>
  939. <name>io.erasurecode.codec.native.enabled</name>
  940. <value>true</value>
  941. <description>
  942. Used to decide whether to enable native codec. If set to false, native codec
  943. would not be created and ISA-L support would be disabled. Recommend to set to
  944. false when your CPU does not support ISA-L.
  945. </description>
  946. </property>
  947. <property>
  948. <name>hadoop.security.secret-manager.key-generator.algorithm</name>
  949. <value>HmacSHA1</value>
  950. <description>
  951. The configuration key specifying the KeyGenerator algorithm used in SecretManager
  952. for generating secret keys. The algorithm must be a KeyGenerator algorithm supported by
  953. the Java Cryptography Architecture (JCA). Common examples include "HmacSHA1",
  954. "HmacSHA256", and "HmacSHA512".
  955. </description>
  956. </property>
  957. <property>
  958. <name>hadoop.security.secret-manager.key-length</name>
  959. <value>64</value>
  960. <description>
  961. The configuration key specifying the key length of the generated secret keys
  962. in SecretManager. The key length must be appropriate for the algorithm.
  963. For example, longer keys are generally more secure but may not be supported
  964. by all algorithms.
  965. </description>
  966. </property>
  967. <!-- file system properties -->
  968. <property>
  969. <name>fs.defaultFS</name>
  970. <value>file:///</value>
  971. <description>The name of the default file system. A URI whose
  972. scheme and authority determine the FileSystem implementation. The
  973. uri's scheme determines the config property (fs.SCHEME.impl) naming
  974. the FileSystem implementation class. The uri's authority is used to
  975. determine the host, port, etc. for a filesystem.</description>
  976. </property>
  977. <property>
  978. <name>fs.default.name</name>
  979. <value>file:///</value>
  980. <description>Deprecated. Use (fs.defaultFS) property
  981. instead</description>
  982. </property>
  983. <property>
  984. <name>fs.trash.interval</name>
  985. <value>0</value>
  986. <description>Number of minutes after which the checkpoint
  987. gets deleted. If zero, the trash feature is disabled.
  988. This option may be configured both on the server and the
  989. client. If trash is disabled server side then the client
  990. side configuration is checked. If trash is enabled on the
  991. server side then the value configured on the server is
  992. used and the client configuration value is ignored.
  993. </description>
  994. </property>
  995. <property>
  996. <name>fs.trash.checkpoint.interval</name>
  997. <value>0</value>
  998. <description>Number of minutes between trash checkpoints.
  999. Should be smaller or equal to fs.trash.interval. If zero,
  1000. the value is set to the value of fs.trash.interval.
  1001. Every time the checkpointer runs it creates a new checkpoint
  1002. out of current and removes checkpoints created more than
  1003. fs.trash.interval minutes ago.
  1004. </description>
  1005. </property>
  1006. <property>
  1007. <name>fs.trash.clean.trashroot.enable</name>
  1008. <value>false</value>
  1009. <description>Whether clean some directories and files
  1010. in Trash home which are not under checkpoint directory.
  1011. </description>
  1012. </property>
  1013. <property>
  1014. <name>fs.protected.directories</name>
  1015. <value></value>
  1016. <description>A comma-separated list of directories which cannot
  1017. be deleted or renamed even by the superuser unless they are empty. This
  1018. setting can be used to guard important system directories
  1019. against accidental deletion due to administrator error.
  1020. </description>
  1021. </property>
  1022. <property>
  1023. <name>fs.AbstractFileSystem.file.impl</name>
  1024. <value>org.apache.hadoop.fs.local.LocalFs</value>
  1025. <description>The AbstractFileSystem for file: uris.</description>
  1026. </property>
  1027. <property>
  1028. <name>fs.AbstractFileSystem.har.impl</name>
  1029. <value>org.apache.hadoop.fs.HarFs</value>
  1030. <description>The AbstractFileSystem for har: uris.</description>
  1031. </property>
  1032. <property>
  1033. <name>fs.AbstractFileSystem.hdfs.impl</name>
  1034. <value>org.apache.hadoop.fs.Hdfs</value>
  1035. <description>The FileSystem for hdfs: uris.</description>
  1036. </property>
  1037. <property>
  1038. <name>fs.AbstractFileSystem.viewfs.impl</name>
  1039. <value>org.apache.hadoop.fs.viewfs.ViewFs</value>
  1040. <description>The AbstractFileSystem for view file system for viewfs: uris
  1041. (ie client side mount table:).</description>
  1042. </property>
  1043. <property>
  1044. <name>fs.viewfs.rename.strategy</name>
  1045. <value>SAME_MOUNTPOINT</value>
  1046. <description>Allowed rename strategy to rename between multiple mountpoints.
  1047. Allowed values are SAME_MOUNTPOINT,SAME_TARGET_URI_ACROSS_MOUNTPOINT and
  1048. SAME_FILESYSTEM_ACROSS_MOUNTPOINT.
  1049. </description>
  1050. </property>
  1051. <property>
  1052. <name>fs.viewfs.overload.scheme.target.hdfs.impl</name>
  1053. <value>org.apache.hadoop.hdfs.DistributedFileSystem</value>
  1054. <description>The DistributedFileSystem for view file system overload scheme
  1055. when child file system and ViewFSOverloadScheme's schemes are hdfs.
  1056. </description>
  1057. </property>
  1058. <property>
  1059. <name>fs.viewfs.overload.scheme.target.s3a.impl</name>
  1060. <value>org.apache.hadoop.fs.s3a.S3AFileSystem</value>
  1061. <description>The S3AFileSystem for view file system overload scheme when
  1062. child file system and ViewFSOverloadScheme's schemes are s3a.</description>
  1063. </property>
  1064. <property>
  1065. <name>fs.viewfs.overload.scheme.target.ofs.impl</name>
  1066. <value>org.apache.hadoop.fs.ozone.RootedOzoneFileSystem</value>
  1067. <description>The RootedOzoneFileSystem for view file system overload scheme
  1068. when child file system and ViewFSOverloadScheme's schemes are ofs.
  1069. </description>
  1070. </property>
  1071. <property>
  1072. <name>fs.viewfs.overload.scheme.target.o3fs.impl</name>
  1073. <value>org.apache.hadoop.fs.ozone.OzoneFileSystem</value>
  1074. <description>The OzoneFileSystem for view file system overload scheme when
  1075. child file system and ViewFSOverloadScheme's schemes are o3fs.</description>
  1076. </property>
  1077. <property>
  1078. <name>fs.viewfs.overload.scheme.target.ftp.impl</name>
  1079. <value>org.apache.hadoop.fs.ftp.FTPFileSystem</value>
  1080. <description>The FTPFileSystem for view file system overload scheme when
  1081. child file system and ViewFSOverloadScheme's schemes are ftp.
  1082. </description>
  1083. </property>
  1084. <property>
  1085. <name>fs.viewfs.overload.scheme.target.webhdfs.impl</name>
  1086. <value>org.apache.hadoop.hdfs.web.WebHdfsFileSystem</value>
  1087. <description>The WebHdfsFileSystem for view file system overload scheme when
  1088. child file system and ViewFSOverloadScheme's schemes are webhdfs.
  1089. </description>
  1090. </property>
  1091. <property>
  1092. <name>fs.viewfs.overload.scheme.target.swebhdfs.impl</name>
  1093. <value>org.apache.hadoop.hdfs.web.SWebHdfsFileSystem</value>
  1094. <description>The SWebHdfsFileSystem for view file system overload scheme when
  1095. child file system and ViewFSOverloadScheme's schemes are swebhdfs.
  1096. </description>
  1097. </property>
  1098. <property>
  1099. <name>fs.viewfs.overload.scheme.target.file.impl</name>
  1100. <value>org.apache.hadoop.fs.LocalFileSystem</value>
  1101. <description>The LocalFileSystem for view file system overload scheme when
  1102. child file system and ViewFSOverloadScheme's schemes are file.
  1103. </description>
  1104. </property>
  1105. <property>
  1106. <name>fs.viewfs.overload.scheme.target.abfs.impl</name>
  1107. <value>org.apache.hadoop.fs.azurebfs.AzureBlobFileSystem</value>
  1108. <description>The AzureBlobFileSystem for view file system overload scheme
  1109. when child file system and ViewFSOverloadScheme's schemes are abfs.
  1110. </description>
  1111. </property>
  1112. <property>
  1113. <name>fs.viewfs.overload.scheme.target.abfss.impl</name>
  1114. <value>org.apache.hadoop.fs.azurebfs.SecureAzureBlobFileSystem</value>
  1115. <description>The SecureAzureBlobFileSystem for view file system overload
  1116. scheme when child file system and ViewFSOverloadScheme's schemes are abfss.
  1117. </description>
  1118. </property>
  1119. <property>
  1120. <name>fs.viewfs.overload.scheme.target.wasb.impl</name>
  1121. <value>org.apache.hadoop.fs.azure.NativeAzureFileSystem</value>
  1122. <description>The NativeAzureFileSystem for view file system overload scheme
  1123. when child file system and ViewFSOverloadScheme's schemes are wasb.
  1124. </description>
  1125. </property>
  1126. <property>
  1127. <name>fs.viewfs.overload.scheme.target.oss.impl</name>
  1128. <value>org.apache.hadoop.fs.aliyun.oss.AliyunOSSFileSystem</value>
  1129. <description>The AliyunOSSFileSystem for view file system overload scheme
  1130. when child file system and ViewFSOverloadScheme's schemes are oss.
  1131. </description>
  1132. </property>
  1133. <property>
  1134. <name>fs.viewfs.overload.scheme.target.http.impl</name>
  1135. <value>org.apache.hadoop.fs.http.HttpFileSystem</value>
  1136. <description>The HttpFileSystem for view file system overload scheme
  1137. when child file system and ViewFSOverloadScheme's schemes are http.
  1138. </description>
  1139. </property>
  1140. <property>
  1141. <name>fs.viewfs.overload.scheme.target.gs.impl</name>
  1142. <value>com.google.cloud.hadoop.fs.gcs.GoogleHadoopFS</value>
  1143. <description>The GoogleHadoopFS/Google Cloud Storage file system for view
  1144. file system overload scheme when child file system and ViewFSOverloadScheme's
  1145. schemes are gs.
  1146. </description>
  1147. </property>
  1148. <property>
  1149. <name>fs.viewfs.overload.scheme.target.https.impl</name>
  1150. <value>org.apache.hadoop.fs.http.HttpsFileSystem</value>
  1151. <description>The HttpsFileSystem for view file system overload scheme
  1152. when child file system and ViewFSOverloadScheme's schemes are https.
  1153. </description>
  1154. </property>
  1155. <property>
  1156. <name>fs.file.impl</name>
  1157. <value></value>
  1158. <description>
  1159. Specify the implementation class used for accessing the file system. It
  1160. is a fully qualified class name, including both the package name and the
  1161. class name.
  1162. </description>
  1163. </property>
  1164. <property>
  1165. <name>fs.creation.parallel.count</name>
  1166. <value>64</value>
  1167. <description>
  1168. This property sets a a semaphore to throttle the number of FileSystem
  1169. instances which can be created simultaneously. This is designed to reduce
  1170. the impact of many threads in an application calling FileSystem#get() on
  1171. a filesystem which takes time to instantiate -for example to an object
  1172. where HTTPS connections are set up during initialization. Many threads
  1173. trying to do this may create spurious delays by conflicting for access
  1174. to synchronized blocks, when simply limiting the parallelism diminishes
  1175. the conflict, so speeds up all threads trying to access the store. If a
  1176. service appears to be blocking on all threads initializing connections to
  1177. abfs, s3a or store, try a smaller (possibly significantly smaller) value.
  1178. </description>
  1179. </property>
  1180. <property>
  1181. <name>fs.AbstractFileSystem.ftp.impl</name>
  1182. <value>org.apache.hadoop.fs.ftp.FtpFs</value>
  1183. <description>The FileSystem for Ftp: uris.</description>
  1184. </property>
  1185. <property>
  1186. <name>fs.ftp.impl</name>
  1187. <value>org.apache.hadoop.fs.ftp.FTPFileSystem</value>
  1188. <description>The implementation class of the FTP FileSystem</description>
  1189. </property>
  1190. <property>
  1191. <name>fs.AbstractFileSystem.webhdfs.impl</name>
  1192. <value>org.apache.hadoop.fs.WebHdfs</value>
  1193. <description>The FileSystem for webhdfs: uris.</description>
  1194. </property>
  1195. <property>
  1196. <name>fs.AbstractFileSystem.swebhdfs.impl</name>
  1197. <value>org.apache.hadoop.fs.SWebHdfs</value>
  1198. <description>The FileSystem for swebhdfs: uris.</description>
  1199. </property>
  1200. <property>
  1201. <name>fs.ftp.host</name>
  1202. <value>0.0.0.0</value>
  1203. <description>FTP filesystem connects to this server</description>
  1204. </property>
  1205. <property>
  1206. <name>fs.ftp.host.port</name>
  1207. <value>21</value>
  1208. <description>
  1209. FTP filesystem connects to fs.ftp.host on this port
  1210. </description>
  1211. </property>
  1212. <property>
  1213. <name>fs.ftp.data.connection.mode</name>
  1214. <value>ACTIVE_LOCAL_DATA_CONNECTION_MODE</value>
  1215. <description>Set the FTPClient's data connection mode based on configuration.
  1216. Valid values are ACTIVE_LOCAL_DATA_CONNECTION_MODE,
  1217. PASSIVE_LOCAL_DATA_CONNECTION_MODE and PASSIVE_REMOTE_DATA_CONNECTION_MODE.
  1218. </description>
  1219. </property>
  1220. <property>
  1221. <name>fs.ftp.transfer.mode</name>
  1222. <value>BLOCK_TRANSFER_MODE</value>
  1223. <description>
  1224. Set FTP's transfer mode based on configuration. Valid values are
  1225. STREAM_TRANSFER_MODE, BLOCK_TRANSFER_MODE and COMPRESSED_TRANSFER_MODE.
  1226. </description>
  1227. </property>
  1228. <property>
  1229. <name>fs.ftp.timeout</name>
  1230. <value>0</value>
  1231. <description>
  1232. FTP filesystem's timeout in seconds.
  1233. </description>
  1234. </property>
  1235. <property>
  1236. <name>fs.df.interval</name>
  1237. <value>60000</value>
  1238. <description>Disk usage statistics refresh interval in msec.</description>
  1239. </property>
  1240. <property>
  1241. <name>fs.du.interval</name>
  1242. <value>600000</value>
  1243. <description>File space usage statistics refresh interval in msec.</description>
  1244. </property>
  1245. <property>
  1246. <name>fs.automatic.close</name>
  1247. <value>true</value>
  1248. <description>By default, FileSystem instances are automatically closed at program
  1249. exit using a JVM shutdown hook. Setting this property to false disables this
  1250. behavior. This is an advanced option that should only be used by server applications
  1251. requiring a more carefully orchestrated shutdown sequence.
  1252. </description>
  1253. </property>
  1254. <property>
  1255. <name>fs.iostatistics.logging.level</name>
  1256. <value>debug</value>
  1257. <description>
  1258. Logging level for IOStatistics.
  1259. </description>
  1260. </property>
  1261. <property>
  1262. <name>fs.iostatistics.thread.level.enabled</name>
  1263. <value>true</value>
  1264. <description>
  1265. Enable IOStatisticsContext support for thread level.
  1266. </description>
  1267. </property>
  1268. <property>
  1269. <name>fs.s3a.access.key</name>
  1270. <description>AWS access key ID used by S3A file system. Omit for IAM role-based or provider-based authentication.</description>
  1271. </property>
  1272. <property>
  1273. <name>fs.s3a.secret.key</name>
  1274. <description>AWS secret key used by S3A file system. Omit for IAM role-based or provider-based authentication.</description>
  1275. </property>
  1276. <property>
  1277. <name>fs.s3a.session.token</name>
  1278. <description>Session token, when using org.apache.hadoop.fs.s3a.TemporaryAWSCredentialsProvider
  1279. as one of the providers.
  1280. </description>
  1281. </property>
  1282. <property>
  1283. <name>fs.s3a.aws.credentials.provider</name>
  1284. <value>
  1285. org.apache.hadoop.fs.s3a.TemporaryAWSCredentialsProvider,
  1286. org.apache.hadoop.fs.s3a.SimpleAWSCredentialsProvider,
  1287. software.amazon.awssdk.auth.credentials.EnvironmentVariableCredentialsProvider,
  1288. org.apache.hadoop.fs.s3a.auth.IAMInstanceCredentialsProvider
  1289. </value>
  1290. <description>
  1291. Comma-separated class names of credential provider classes which implement
  1292. software.amazon.awssdk.auth.credentials.AwsCredentialsProvider.
  1293. When S3A delegation tokens are not enabled, this list will be used
  1294. to directly authenticate with S3 and other AWS services.
  1295. When S3A Delegation tokens are enabled, depending upon the delegation
  1296. token binding it may be used
  1297. to communicate wih the STS endpoint to request session/role
  1298. credentials.
  1299. org.apache.hadoop.fs.s3a.auth.ProfileAWSCredentialsProvider is also supported, but is not enabled by default.
  1300. </description>
  1301. </property>
  1302. <property>
  1303. <name>fs.s3a.security.credential.provider.path</name>
  1304. <value />
  1305. <description>
  1306. Optional comma separated list of credential providers, a list
  1307. which is prepended to that set in hadoop.security.credential.provider.path
  1308. </description>
  1309. </property>
  1310. <property>
  1311. <name>fs.s3a.assumed.role.arn</name>
  1312. <value />
  1313. <description>
  1314. AWS ARN for the role to be assumed.
  1315. Required if the fs.s3a.aws.credentials.provider contains
  1316. org.apache.hadoop.fs.s3a.AssumedRoleCredentialProvider
  1317. </description>
  1318. </property>
  1319. <property>
  1320. <name>fs.s3a.assumed.role.session.name</name>
  1321. <value />
  1322. <description>
  1323. Session name for the assumed role, must be valid characters according to
  1324. the AWS APIs.
  1325. Only used if AssumedRoleCredentialProvider is the AWS credential provider.
  1326. If not set, one is generated from the current Hadoop/Kerberos username.
  1327. </description>
  1328. </property>
  1329. <property>
  1330. <name>fs.s3a.assumed.role.policy</name>
  1331. <value/>
  1332. <description>
  1333. JSON policy to apply to the role.
  1334. Only used if AssumedRoleCredentialProvider is the AWS credential provider.
  1335. </description>
  1336. </property>
  1337. <property>
  1338. <name>fs.s3a.assumed.role.session.duration</name>
  1339. <value>30m</value>
  1340. <description>
  1341. Duration of assumed roles before a refresh is attempted.
  1342. Used when session tokens are requested.
  1343. Range: 15m to 1h
  1344. </description>
  1345. </property>
  1346. <property>
  1347. <name>fs.s3a.assumed.role.sts.endpoint</name>
  1348. <value/>
  1349. <description>
  1350. AWS Security Token Service Endpoint.
  1351. If unset, uses the default endpoint.
  1352. Only used if AssumedRoleCredentialProvider is the AWS credential provider.
  1353. Used by the AssumedRoleCredentialProvider and in Session and Role delegation
  1354. tokens.
  1355. </description>
  1356. </property>
  1357. <property>
  1358. <name>fs.s3a.assumed.role.sts.endpoint.region</name>
  1359. <value></value>
  1360. <description>
  1361. AWS Security Token Service Endpoint's region;
  1362. Needed if fs.s3a.assumed.role.sts.endpoint points to an endpoint
  1363. other than the default one and the v4 signature is used.
  1364. Used by the AssumedRoleCredentialProvider and in Session and Role delegation
  1365. tokens.
  1366. </description>
  1367. </property>
  1368. <property>
  1369. <name>fs.s3a.assumed.role.credentials.provider</name>
  1370. <value>org.apache.hadoop.fs.s3a.SimpleAWSCredentialsProvider</value>
  1371. <description>
  1372. List of credential providers to authenticate with the STS endpoint and
  1373. retrieve short-lived role credentials.
  1374. Only used if AssumedRoleCredentialProvider is the AWS credential provider.
  1375. If unset, uses "org.apache.hadoop.fs.s3a.SimpleAWSCredentialsProvider".
  1376. </description>
  1377. </property>
  1378. <property>
  1379. <name>fs.s3a.delegation.token.binding</name>
  1380. <value></value>
  1381. <description>
  1382. The name of a class to provide delegation tokens support in S3A.
  1383. If unset: delegation token support is disabled.
  1384. Note: for job submission to actually collect these tokens,
  1385. Kerberos must be enabled.
  1386. Bindings available in hadoop-aws are:
  1387. org.apache.hadoop.fs.s3a.auth.delegation.SessionTokenBinding
  1388. org.apache.hadoop.fs.s3a.auth.delegation.FullCredentialsTokenBinding
  1389. org.apache.hadoop.fs.s3a.auth.delegation.RoleTokenBinding
  1390. </description>
  1391. </property>
  1392. <property>
  1393. <name>fs.s3a.connection.maximum</name>
  1394. <value>500</value>
  1395. <description>Controls the maximum number of simultaneous connections to S3.
  1396. This must be bigger than the value of fs.s3a.threads.max so as to stop
  1397. threads being blocked waiting for new HTTPS connections.
  1398. Why not equal? The AWS SDK transfer manager also uses these connections.
  1399. </description>
  1400. </property>
  1401. <property>
  1402. <name>fs.s3a.connection.ssl.enabled</name>
  1403. <value>true</value>
  1404. <description>Enables or disables SSL connections to AWS services.
  1405. Also sets the default port to use for the s3a proxy settings,
  1406. when not explicitly set in fs.s3a.proxy.port.</description>
  1407. </property>
  1408. <property>
  1409. <name>fs.s3a.endpoint</name>
  1410. <description>AWS S3 endpoint to connect to. An up-to-date list is
  1411. provided in the AWS Documentation: regions and endpoints. Without this
  1412. property, the standard region (s3.amazonaws.com) is assumed.
  1413. </description>
  1414. </property>
  1415. <property>
  1416. <name>fs.s3a.path.style.access</name>
  1417. <value>false</value>
  1418. <description>Enable S3 path style access ie disabling the default virtual hosting behaviour.
  1419. Useful for S3A-compliant storage providers as it removes the need to set up DNS for virtual hosting.
  1420. </description>
  1421. </property>
  1422. <property>
  1423. <name>fs.s3a.proxy.host</name>
  1424. <description>Hostname of the (optional) proxy server for S3 connections.</description>
  1425. </property>
  1426. <property>
  1427. <name>fs.s3a.proxy.port</name>
  1428. <description>Proxy server port. If this property is not set
  1429. but fs.s3a.proxy.host is, port 80 or 443 is assumed (consistent with
  1430. the value of fs.s3a.connection.ssl.enabled).</description>
  1431. </property>
  1432. <property>
  1433. <name>fs.s3a.proxy.username</name>
  1434. <description>Username for authenticating with proxy server.</description>
  1435. </property>
  1436. <property>
  1437. <name>fs.s3a.proxy.password</name>
  1438. <description>Password for authenticating with proxy server.</description>
  1439. </property>
  1440. <property>
  1441. <name>fs.s3a.proxy.domain</name>
  1442. <description>Domain for authenticating with proxy server.</description>
  1443. </property>
  1444. <property>
  1445. <name>fs.s3a.proxy.workstation</name>
  1446. <description>Workstation for authenticating with proxy server.</description>
  1447. </property>
  1448. <property>
  1449. <name>fs.s3a.attempts.maximum</name>
  1450. <value>5</value>
  1451. <description>
  1452. Number of times the AWS client library should retry errors before
  1453. escalating to the S3A code: {@value}.
  1454. The S3A connector does its own selective retries; the only time the AWS
  1455. SDK operations are not wrapped is during multipart copy via the AWS SDK
  1456. transfer manager.
  1457. </description>
  1458. </property>
  1459. <property>
  1460. <name>fs.s3a.connection.establish.timeout</name>
  1461. <value>30s</value>
  1462. <description>Socket connection setup timeout in milliseconds; this will be retried
  1463. more than once.</description>
  1464. </property>
  1465. <property>
  1466. <name>fs.s3a.connection.timeout</name>
  1467. <value>200s</value>
  1468. <description>Socket connection timeout.</description>
  1469. </property>
  1470. <property>
  1471. <name>fs.s3a.connection.ttl</name>
  1472. <value>5m</value>
  1473. <description>Expiry time for any active connection.</description>
  1474. </property>
  1475. <property>
  1476. <name>fs.s3a.socket.send.buffer</name>
  1477. <value>8192</value>
  1478. <description>Socket send buffer hint to amazon connector. Represented in bytes.</description>
  1479. </property>
  1480. <property>
  1481. <name>fs.s3a.socket.recv.buffer</name>
  1482. <value>8192</value>
  1483. <description>Socket receive buffer hint to amazon connector. Represented in bytes.</description>
  1484. </property>
  1485. <property>
  1486. <name>fs.s3a.paging.maximum</name>
  1487. <value>5000</value>
  1488. <description>How many keys to request from S3 when doing
  1489. directory listings at a time.</description>
  1490. </property>
  1491. <property>
  1492. <name>fs.s3a.threads.max</name>
  1493. <value>96</value>
  1494. <description>The total number of threads available in the filesystem for data
  1495. uploads *or any other queued filesystem operation*.</description>
  1496. </property>
  1497. <property>
  1498. <name>fs.s3a.threads.keepalivetime</name>
  1499. <value>60s</value>
  1500. <description>Number of seconds a thread can be idle before being
  1501. terminated.</description>
  1502. </property>
  1503. <property>
  1504. <name>fs.s3a.max.total.tasks</name>
  1505. <value>32</value>
  1506. <description>The number of operations which can be queued for execution.
  1507. This is in addition to the number of active threads in fs.s3a.threads.max.
  1508. </description>
  1509. </property>
  1510. <property>
  1511. <name>fs.s3a.executor.capacity</name>
  1512. <value>16</value>
  1513. <description>The maximum number of submitted tasks which is a single
  1514. operation (e.g. rename(), delete()) may submit simultaneously for
  1515. execution -excluding the IO-heavy block uploads, whose capacity
  1516. is set in "fs.s3a.fast.upload.active.blocks"
  1517. All tasks are submitted to the shared thread pool whose size is
  1518. set in "fs.s3a.threads.max"; the value of capacity should be less than that
  1519. of the thread pool itself, as the goal is to stop a single operation
  1520. from overloading that thread pool.
  1521. </description>
  1522. </property>
  1523. <property>
  1524. <name>fs.s3a.multipart.size</name>
  1525. <value>64M</value>
  1526. <description>How big (in bytes) to split upload or copy operations up into.
  1527. A suffix from the set {K,M,G,T,P} may be used to scale the numeric value.
  1528. </description>
  1529. </property>
  1530. <property>
  1531. <name>fs.s3a.multipart.threshold</name>
  1532. <value>128M</value>
  1533. <description>How big (in bytes) to split upload or copy operations up into.
  1534. This also controls the partition size in renamed files, as rename() involves
  1535. copying the source file(s).
  1536. A suffix from the set {K,M,G,T,P} may be used to scale the numeric value.
  1537. </description>
  1538. </property>
  1539. <property>
  1540. <name>fs.s3a.multiobjectdelete.enable</name>
  1541. <value>true</value>
  1542. <description>When enabled, multiple single-object delete requests are replaced by
  1543. a single 'delete multiple objects'-request, reducing the number of requests.
  1544. Beware: legacy S3-compatible object stores might not support this request.
  1545. </description>
  1546. </property>
  1547. <property>
  1548. <name>fs.s3a.acl.default</name>
  1549. <description>Set a canned ACL for newly created and copied objects. Value may be Private,
  1550. PublicRead, PublicReadWrite, AuthenticatedRead, LogDeliveryWrite, BucketOwnerRead,
  1551. or BucketOwnerFullControl.
  1552. If set, caller IAM role must have "s3:PutObjectAcl" permission on the bucket.
  1553. </description>
  1554. </property>
  1555. <property>
  1556. <name>fs.s3a.multipart.purge</name>
  1557. <value>false</value>
  1558. <description>True if you want to purge existing multipart uploads that may not have been
  1559. completed/aborted correctly. The corresponding purge age is defined in
  1560. fs.s3a.multipart.purge.age.
  1561. If set, when the filesystem is instantiated then all outstanding uploads
  1562. older than the purge age will be terminated -across the entire bucket.
  1563. This will impact multipart uploads by other applications and users. so should
  1564. be used sparingly, with an age value chosen to stop failed uploads, without
  1565. breaking ongoing operations.
  1566. </description>
  1567. </property>
  1568. <property>
  1569. <name>fs.s3a.multipart.purge.age</name>
  1570. <value>24h</value>
  1571. <description>Minimum age in seconds of multipart uploads to purge
  1572. on startup if "fs.s3a.multipart.purge" is true
  1573. </description>
  1574. </property>
  1575. <property>
  1576. <name>fs.s3a.encryption.algorithm</name>
  1577. <description>Specify a server-side encryption or client-side
  1578. encryption algorithm for s3a: file system. Unset by default. It supports the
  1579. following values: 'AES256' (for SSE-S3), 'SSE-KMS', 'DSSE-KMS', 'SSE-C', and 'CSE-KMS'
  1580. </description>
  1581. </property>
  1582. <property>
  1583. <name>fs.s3a.encryption.key</name>
  1584. <description>Specific encryption key to use if fs.s3a.encryption.algorithm
  1585. has been set to 'SSE-KMS', 'DSSE-KMS', 'SSE-C' or 'CSE-KMS'. In the case of SSE-C
  1586. , the value of this property should be the Base64 encoded key. If you are
  1587. using SSE-KMS and leave this property empty, you'll be using your default's
  1588. S3 KMS key, otherwise you should set this property to the specific KMS key
  1589. id. In case of 'CSE-KMS' this value needs to be the AWS-KMS Key ID
  1590. generated from AWS console.
  1591. </description>
  1592. </property>
  1593. <property>
  1594. <name>fs.s3a.encryption.context</name>
  1595. <description>Specific encryption context to use if fs.s3a.encryption.algorithm
  1596. has been set to 'SSE-KMS' or 'DSSE-KMS'. The value of this property is a set
  1597. of non-secret comma-separated key-value pairs of additional contextual
  1598. information about the data that are separated by equal operator (=).
  1599. </description>
  1600. </property>
  1601. <property>
  1602. <name>fs.s3a.signing-algorithm</name>
  1603. <description>Override the default signing algorithm so legacy
  1604. implementations can still be used</description>
  1605. </property>
  1606. <property>
  1607. <name>fs.s3a.accesspoint.required</name>
  1608. <value>false</value>
  1609. <description>Require that all S3 access is made through Access Points and not through
  1610. buckets directly. If enabled, use per-bucket overrides to allow bucket access to a specific set
  1611. of buckets.</description>
  1612. </property>
  1613. <property>
  1614. <name>fs.s3a.block.size</name>
  1615. <value>32M</value>
  1616. <description>Block size to use when reading files using s3a: file system.
  1617. A suffix from the set {K,M,G,T,P} may be used to scale the numeric value.
  1618. </description>
  1619. </property>
  1620. <property>
  1621. <name>fs.s3a.buffer.dir</name>
  1622. <value>${env.LOCAL_DIRS:-${hadoop.tmp.dir}}/s3a</value>
  1623. <description>Comma separated list of directories that will be used to buffer file
  1624. uploads to.
  1625. Yarn container path will be used as default value on yarn applications,
  1626. otherwise fall back to hadoop.tmp.dir
  1627. </description>
  1628. </property>
  1629. <property>
  1630. <name>fs.s3a.fast.upload.buffer</name>
  1631. <value>disk</value>
  1632. <description>
  1633. The buffering mechanism to for data being written.
  1634. Values: disk, array, bytebuffer.
  1635. "disk" will use the directories listed in fs.s3a.buffer.dir as
  1636. the location(s) to save data prior to being uploaded.
  1637. "array" uses arrays in the JVM heap
  1638. "bytebuffer" uses off-heap memory within the JVM.
  1639. Both "array" and "bytebuffer" will consume memory in a single stream up to the number
  1640. of blocks set by:
  1641. fs.s3a.multipart.size * fs.s3a.fast.upload.active.blocks.
  1642. If using either of these mechanisms, keep this value low
  1643. The total number of threads performing work across all threads is set by
  1644. fs.s3a.threads.max, with fs.s3a.max.total.tasks values setting the number of queued
  1645. work items.
  1646. </description>
  1647. </property>
  1648. <property>
  1649. <name>fs.s3a.fast.upload.active.blocks</name>
  1650. <value>4</value>
  1651. <description>
  1652. Maximum Number of blocks a single output stream can have
  1653. active (uploading, or queued to the central FileSystem
  1654. instance's pool of queued operations.
  1655. This stops a single stream overloading the shared thread pool.
  1656. </description>
  1657. </property>
  1658. <property>
  1659. <name>fs.s3a.readahead.range</name>
  1660. <value>64K</value>
  1661. <description>Bytes to read ahead during a seek() before closing and
  1662. re-opening the S3 HTTP connection. This option will be overridden if
  1663. any call to setReadahead() is made to an open stream.
  1664. A suffix from the set {K,M,G,T,P} may be used to scale the numeric value.
  1665. </description>
  1666. </property>
  1667. <property>
  1668. <name>fs.s3a.user.agent.prefix</name>
  1669. <value></value>
  1670. <description>
  1671. Sets a custom value that will be prepended to the User-Agent header sent in
  1672. HTTP requests to the S3 back-end by S3AFileSystem. The User-Agent header
  1673. always includes the Hadoop version number followed by a string generated by
  1674. the AWS SDK. An example is "User-Agent: Hadoop 2.8.0, aws-sdk-java/1.10.6".
  1675. If this optional property is set, then its value is prepended to create a
  1676. customized User-Agent. For example, if this configuration property was set
  1677. to "MyApp", then an example of the resulting User-Agent would be
  1678. "User-Agent: MyApp, Hadoop 2.8.0, aws-sdk-java/1.10.6".
  1679. </description>
  1680. </property>
  1681. <property>
  1682. <name>fs.s3a.impl</name>
  1683. <value>org.apache.hadoop.fs.s3a.S3AFileSystem</value>
  1684. <description>The implementation class of the S3A Filesystem</description>
  1685. </property>
  1686. <property>
  1687. <name>fs.s3a.retry.limit</name>
  1688. <value>7</value>
  1689. <description>
  1690. Number of times to retry any repeatable S3 client request on failure,
  1691. excluding throttling requests.
  1692. </description>
  1693. </property>
  1694. <property>
  1695. <name>fs.s3a.retry.interval</name>
  1696. <value>500ms</value>
  1697. <description>
  1698. Initial retry interval when retrying operations for any reason other
  1699. than S3 throttle errors.
  1700. </description>
  1701. </property>
  1702. <property>
  1703. <name>fs.s3a.retry.throttle.limit</name>
  1704. <value>20</value>
  1705. <description>
  1706. Number of times to retry any throttled request.
  1707. </description>
  1708. </property>
  1709. <property>
  1710. <name>fs.s3a.retry.throttle.interval</name>
  1711. <value>100ms</value>
  1712. <description>
  1713. Initial between retry attempts on throttled requests, +/- 50%. chosen at random.
  1714. i.e. for an intial value of 3000ms, the initial delay would be in the range 1500ms to 4500ms.
  1715. Backoffs are exponential; again randomness is used to avoid the thundering heard problem.
  1716. 500ms is the default value used by the AWS S3 Retry policy.
  1717. </description>
  1718. </property>
  1719. <property>
  1720. <name>fs.s3a.committer.name</name>
  1721. <value>file</value>
  1722. <description>
  1723. Committer to create for output to S3A, one of:
  1724. "file", "directory", "partitioned", "magic".
  1725. </description>
  1726. </property>
  1727. <property>
  1728. <name>fs.s3a.committer.magic.enabled</name>
  1729. <value>true</value>
  1730. <description>
  1731. Enable support in the S3A filesystem for the "Magic" committer.
  1732. </description>
  1733. </property>
  1734. <property>
  1735. <name>fs.s3a.committer.threads</name>
  1736. <value>8</value>
  1737. <description>
  1738. Number of threads in committers for parallel operations on files
  1739. (upload, commit, abort, delete...)
  1740. </description>
  1741. </property>
  1742. <property>
  1743. <name>fs.s3a.committer.staging.tmp.path</name>
  1744. <value>tmp/staging</value>
  1745. <description>
  1746. Path in the cluster filesystem for temporary data.
  1747. This is for HDFS, not the local filesystem.
  1748. It is only for the summary data of each file, not the actual
  1749. data being committed.
  1750. Using an unqualified path guarantees that the full path will be
  1751. generated relative to the home directory of the user creating the job,
  1752. hence private (assuming home directory permissions are secure).
  1753. </description>
  1754. </property>
  1755. <property>
  1756. <name>fs.s3a.committer.staging.unique-filenames</name>
  1757. <value>true</value>
  1758. <description>
  1759. Option for final files to have a unique name through job attempt info,
  1760. or the value of fs.s3a.committer.staging.uuid
  1761. When writing data with the "append" conflict option, this guarantees
  1762. that new data will not overwrite any existing data.
  1763. </description>
  1764. </property>
  1765. <property>
  1766. <name>fs.s3a.committer.staging.conflict-mode</name>
  1767. <value>append</value>
  1768. <description>
  1769. Staging committer conflict resolution policy.
  1770. Supported: "fail", "append", "replace".
  1771. </description>
  1772. </property>
  1773. <property>
  1774. <name>fs.s3a.committer.abort.pending.uploads</name>
  1775. <value>true</value>
  1776. <description>
  1777. Should the committers abort all pending uploads to the destination
  1778. directory?
  1779. Set to false if more than one job is writing to the same directory tree.
  1780. </description>
  1781. </property>
  1782. <property>
  1783. <name>fs.s3a.select.enabled</name>
  1784. <value>true</value>
  1785. <description>Is S3 Select enabled?</description>
  1786. </property>
  1787. <property>
  1788. <name>fs.s3a.select.input.csv.comment.marker</name>
  1789. <value>#</value>
  1790. <description>In S3 Select queries: the marker for comment lines in CSV files</description>
  1791. </property>
  1792. <property>
  1793. <name>fs.s3a.select.input.csv.record.delimiter</name>
  1794. <value>\n</value>
  1795. <description>In S3 Select queries over CSV files: the record delimiter.
  1796. \t is remapped to the TAB character, \r to CR \n to newline. \\ to \
  1797. and \" to "
  1798. </description>
  1799. </property>
  1800. <property>
  1801. <name>fs.s3a.select.input.csv.field.delimiter</name>
  1802. <value>,</value>
  1803. <description>In S3 Select queries over CSV files: the field delimiter.
  1804. \t is remapped to the TAB character, \r to CR \n to newline. \\ to \
  1805. and \" to "
  1806. </description>
  1807. </property>
  1808. <property>
  1809. <name>fs.s3a.select.input.csv.quote.character</name>
  1810. <value>"</value>
  1811. <description>In S3 Select queries over CSV files: quote character.
  1812. \t is remapped to the TAB character, \r to CR \n to newline. \\ to \
  1813. and \" to "
  1814. </description>
  1815. </property>
  1816. <property>
  1817. <name>fs.s3a.select.input.csv.quote.escape.character</name>
  1818. <value>\\</value>
  1819. <description>In S3 Select queries over CSV files: quote escape character.
  1820. \t is remapped to the TAB character, \r to CR \n to newline. \\ to \
  1821. and \" to "
  1822. </description>
  1823. </property>
  1824. <property>
  1825. <name>fs.s3a.select.input.csv.header</name>
  1826. <value>none</value>
  1827. <description>In S3 Select queries over CSV files: what is the role of the header? One of "none", "ignore" and "use"</description>
  1828. </property>
  1829. <property>
  1830. <name>fs.s3a.select.input.compression</name>
  1831. <value>none</value>
  1832. <description>In S3 Select queries, the source compression
  1833. algorithm. One of: "none" and "gzip"</description>
  1834. </property>
  1835. <property>
  1836. <name>fs.s3a.select.output.csv.quote.fields</name>
  1837. <value>always</value>
  1838. <description>
  1839. In S3 Select queries: should fields in generated CSV Files be quoted?
  1840. One of: "always", "asneeded".
  1841. </description>
  1842. </property>
  1843. <property>
  1844. <name>fs.s3a.select.output.csv.quote.character</name>
  1845. <value>"</value>
  1846. <description>
  1847. In S3 Select queries: the quote character for generated CSV Files.
  1848. </description>
  1849. </property>
  1850. <property>
  1851. <name>fs.s3a.select.output.csv.quote.escape.character</name>
  1852. <value>\\</value>
  1853. <description>
  1854. In S3 Select queries: the quote escape character for generated CSV Files.
  1855. </description>
  1856. </property>
  1857. <property>
  1858. <name>fs.s3a.select.output.csv.record.delimiter</name>
  1859. <value>\n</value>
  1860. <description>
  1861. In S3 Select queries: the record delimiter for generated CSV Files.
  1862. </description>
  1863. </property>
  1864. <property>
  1865. <name>fs.s3a.select.output.csv.field.delimiter</name>
  1866. <value>,</value>
  1867. <description>
  1868. In S3 Select queries: the field delimiter for generated CSV Files.
  1869. </description>
  1870. </property>
  1871. <property>
  1872. <name>fs.s3a.select.errors.include.sql</name>
  1873. <value>false</value>
  1874. <description>
  1875. Include the SQL statement in errors: this is useful for development but
  1876. may leak security and Personally Identifying Information in production,
  1877. so must be disabled there.
  1878. </description>
  1879. </property>
  1880. <property>
  1881. <name>fs.AbstractFileSystem.s3a.impl</name>
  1882. <value>org.apache.hadoop.fs.s3a.S3A</value>
  1883. <description>The implementation class of the S3A AbstractFileSystem.</description>
  1884. </property>
  1885. <property>
  1886. <name>fs.s3a.list.version</name>
  1887. <value>2</value>
  1888. <description>
  1889. Select which version of the S3 SDK's List Objects API to use. Currently
  1890. support 2 (default) and 1 (older API).
  1891. </description>
  1892. </property>
  1893. <property>
  1894. <name>fs.s3a.etag.checksum.enabled</name>
  1895. <value>false</value>
  1896. <description>
  1897. Should calls to getFileChecksum() return the etag value of the remote
  1898. object.
  1899. WARNING: if enabled, distcp operations between HDFS and S3 will fail unless
  1900. -skipcrccheck is set.
  1901. </description>
  1902. </property>
  1903. <property>
  1904. <name>fs.s3a.change.detection.source</name>
  1905. <value>etag</value>
  1906. <description>
  1907. Select which S3 object attribute to use for change detection.
  1908. Currently support 'etag' for S3 object eTags and 'versionid' for
  1909. S3 object version IDs. Use of version IDs requires object versioning to be
  1910. enabled for each S3 bucket utilized. Object versioning is disabled on
  1911. buckets by default. When version ID is used, the buckets utilized should
  1912. have versioning enabled before any data is written.
  1913. </description>
  1914. </property>
  1915. <property>
  1916. <name>fs.s3a.change.detection.mode</name>
  1917. <value>server</value>
  1918. <description>
  1919. Determines how change detection is applied to alert to inconsistent S3
  1920. objects read during or after an overwrite. Value 'server' indicates to apply
  1921. the attribute constraint directly on GetObject requests to S3. Value 'client'
  1922. means to do a client-side comparison of the attribute value returned in the
  1923. response. Value 'server' would not work with third-party S3 implementations
  1924. that do not support these constraints on GetObject. Values 'server' and
  1925. 'client' generate RemoteObjectChangedException when a mismatch is detected.
  1926. Value 'warn' works like 'client' but generates only a warning. Value 'none'
  1927. will ignore change detection completely.
  1928. </description>
  1929. </property>
  1930. <property>
  1931. <name>fs.s3a.change.detection.version.required</name>
  1932. <value>true</value>
  1933. <description>
  1934. Determines if S3 object version attribute defined by
  1935. fs.s3a.change.detection.source should be treated as required. If true and the
  1936. referred attribute is unavailable in an S3 GetObject response,
  1937. NoVersionAttributeException is thrown. Setting to 'true' is encouraged to
  1938. avoid potential for inconsistent reads with third-party S3 implementations or
  1939. against S3 buckets that have object versioning disabled.
  1940. </description>
  1941. </property>
  1942. <property>
  1943. <name>fs.s3a.ssl.channel.mode</name>
  1944. <value>default_jsse</value>
  1945. <description>
  1946. If secure connections to S3 are enabled, configures the SSL
  1947. implementation used to encrypt connections to S3. Supported values are:
  1948. "default_jsse", "default_jsse_with_gcm", "default", and "openssl".
  1949. "default_jsse" uses the Java Secure Socket Extension package (JSSE).
  1950. However, when running on Java 8, the GCM cipher is removed from the list
  1951. of enabled ciphers. This is due to performance issues with GCM in Java 8.
  1952. "default_jsse_with_gcm" uses the JSSE with the default list of cipher
  1953. suites. "default_jsse_with_gcm" is equivalent to the behavior prior to
  1954. this feature being introduced. "default" attempts to use OpenSSL rather
  1955. than the JSSE for SSL encryption, if OpenSSL libraries cannot be loaded,
  1956. it falls back to the "default_jsse" behavior. "openssl" attempts to use
  1957. OpenSSL as well, but fails if OpenSSL libraries cannot be loaded.
  1958. </description>
  1959. </property>
  1960. <property>
  1961. <name>fs.s3a.downgrade.syncable.exceptions</name>
  1962. <value>true</value>
  1963. <description>
  1964. Warn but continue when applications use Syncable.hsync when writing
  1965. to S3A.
  1966. </description>
  1967. </property>
  1968. <!--
  1969. The switch to turn S3A auditing on or off.
  1970. -->
  1971. <property>
  1972. <name>fs.s3a.audit.enabled</name>
  1973. <value>true</value>
  1974. <description>
  1975. Should auditing of S3A requests be enabled?
  1976. </description>
  1977. </property>
  1978. <!-- Azure file system properties -->
  1979. <property>
  1980. <name>fs.AbstractFileSystem.wasb.impl</name>
  1981. <value>org.apache.hadoop.fs.azure.Wasb</value>
  1982. <description>AbstractFileSystem implementation class of wasb://</description>
  1983. </property>
  1984. <property>
  1985. <name>fs.AbstractFileSystem.wasbs.impl</name>
  1986. <value>org.apache.hadoop.fs.azure.Wasbs</value>
  1987. <description>AbstractFileSystem implementation class of wasbs://</description>
  1988. </property>
  1989. <property>
  1990. <name>fs.wasb.impl</name>
  1991. <value>org.apache.hadoop.fs.azure.NativeAzureFileSystem</value>
  1992. <description>The implementation class of the Native Azure Filesystem</description>
  1993. </property>
  1994. <property>
  1995. <name>fs.wasbs.impl</name>
  1996. <value>org.apache.hadoop.fs.azure.NativeAzureFileSystem$Secure</value>
  1997. <description>The implementation class of the Secure Native Azure Filesystem</description>
  1998. </property>
  1999. <property>
  2000. <name>fs.azure.secure.mode</name>
  2001. <value>false</value>
  2002. <description>
  2003. Config flag to identify the mode in which fs.azure.NativeAzureFileSystem needs
  2004. to run under. Setting it "true" would make fs.azure.NativeAzureFileSystem use
  2005. SAS keys to communicate with Azure storage.
  2006. </description>
  2007. </property>
  2008. <property>
  2009. <name>fs.abfs.impl</name>
  2010. <value>org.apache.hadoop.fs.azurebfs.AzureBlobFileSystem</value>
  2011. <description>The implementation class of the Azure Blob Filesystem</description>
  2012. </property>
  2013. <property>
  2014. <name>fs.abfss.impl</name>
  2015. <value>org.apache.hadoop.fs.azurebfs.SecureAzureBlobFileSystem</value>
  2016. <description>The implementation class of the Secure Azure Blob Filesystem</description>
  2017. </property>
  2018. <property>
  2019. <name>fs.AbstractFileSystem.abfs.impl</name>
  2020. <value>org.apache.hadoop.fs.azurebfs.Abfs</value>
  2021. <description>AbstractFileSystem implementation class of abfs://</description>
  2022. </property>
  2023. <property>
  2024. <name>fs.AbstractFileSystem.abfss.impl</name>
  2025. <value>org.apache.hadoop.fs.azurebfs.Abfss</value>
  2026. <description>AbstractFileSystem implementation class of abfss://</description>
  2027. </property>
  2028. <property>
  2029. <name>fs.azure.local.sas.key.mode</name>
  2030. <value>false</value>
  2031. <description>
  2032. Works in conjuction with fs.azure.secure.mode. Setting this config to true
  2033. results in fs.azure.NativeAzureFileSystem using the local SAS key generation
  2034. where the SAS keys are generating in the same process as fs.azure.NativeAzureFileSystem.
  2035. If fs.azure.secure.mode flag is set to false, this flag has no effect.
  2036. </description>
  2037. </property>
  2038. <property>
  2039. <name>fs.azure.sas.expiry.period</name>
  2040. <value>90d</value>
  2041. <description>
  2042. The default value to be used for expiration period for SAS keys generated.
  2043. Can use the following suffix (case insensitive):
  2044. ms(millis), s(sec), m(min), h(hour), d(day)
  2045. to specify the time (such as 2s, 2m, 1h, etc.).
  2046. </description>
  2047. </property>
  2048. <property>
  2049. <name>fs.azure.authorization</name>
  2050. <value>false</value>
  2051. <description>
  2052. Config flag to enable authorization support in WASB. Setting it to "true" enables
  2053. authorization support to WASB. Currently WASB authorization requires a remote service
  2054. to provide authorization that needs to be specified via fs.azure.authorization.remote.service.url
  2055. configuration
  2056. </description>
  2057. </property>
  2058. <property>
  2059. <name>fs.azure.authorization.caching.enable</name>
  2060. <value>true</value>
  2061. <description>
  2062. Config flag to enable caching of authorization results and saskeys in WASB.
  2063. This flag is relevant only when fs.azure.authorization is enabled.
  2064. </description>
  2065. </property>
  2066. <property>
  2067. <name>fs.azure.saskey.usecontainersaskeyforallaccess</name>
  2068. <value>true</value>
  2069. <description>
  2070. Use container saskey for access to all blobs within the container.
  2071. Blob-specific saskeys are not used when this setting is enabled.
  2072. This setting provides better performance compared to blob-specific saskeys.
  2073. </description>
  2074. </property>
  2075. <property>
  2076. <name>fs.azure.buffer.dir</name>
  2077. <value>${env.LOCAL_DIRS:-${hadoop.tmp.dir}}/abfs</value>
  2078. <description>Directory path for buffer files needed to upload data blocks
  2079. in AbfsOutputStream.
  2080. Yarn container path will be used as default value on yarn applications,
  2081. otherwise fall back to hadoop.tmp.dir </description>
  2082. </property>
  2083. <property>
  2084. <name>fs.AbstractFileSystem.gs.impl</name>
  2085. <value>com.google.cloud.hadoop.fs.gcs.GoogleHadoopFS</value>
  2086. <description>The AbstractFileSystem for gs: uris.</description>
  2087. </property>
  2088. <property>
  2089. <name>fs.azure.enable.readahead</name>
  2090. <value>true</value>
  2091. <description>Enabled readahead/prefetching in AbfsInputStream.</description>
  2092. </property>
  2093. <property>
  2094. <name>io.seqfile.compress.blocksize</name>
  2095. <value>1000000</value>
  2096. <description>The minimum block size for compression in block compressed
  2097. SequenceFiles.
  2098. </description>
  2099. </property>
  2100. <property>
  2101. <name>io.mapfile.bloom.size</name>
  2102. <value>1048576</value>
  2103. <description>The size of BloomFilter-s used in BloomMapFile. Each time this many
  2104. keys is appended the next BloomFilter will be created (inside a DynamicBloomFilter).
  2105. Larger values minimize the number of filters, which slightly increases the performance,
  2106. but may waste too much space if the total number of keys is usually much smaller
  2107. than this number.
  2108. </description>
  2109. </property>
  2110. <property>
  2111. <name>io.mapfile.bloom.error.rate</name>
  2112. <value>0.005</value>
  2113. <description>The rate of false positives in BloomFilter-s used in BloomMapFile.
  2114. As this value decreases, the size of BloomFilter-s increases exponentially. This
  2115. value is the probability of encountering false positives (default is 0.5%).
  2116. </description>
  2117. </property>
  2118. <property>
  2119. <name>hadoop.util.hash.type</name>
  2120. <value>murmur</value>
  2121. <description>The default implementation of Hash. Currently this can take one of the
  2122. two values: 'murmur' to select MurmurHash and 'jenkins' to select JenkinsHash.
  2123. </description>
  2124. </property>
  2125. <!-- ipc properties -->
  2126. <property>
  2127. <name>ipc.client.async.calls.max</name>
  2128. <value>100</value>
  2129. <description>
  2130. Define the maximum number of outstanding async calls.
  2131. If negative, there is no limit on the number of outstanding async calls.
  2132. </description>
  2133. </property>
  2134. <property>
  2135. <name>ipc.client.idlethreshold</name>
  2136. <value>4000</value>
  2137. <description>Defines the threshold number of connections after which
  2138. connections will be inspected for idleness.
  2139. </description>
  2140. </property>
  2141. <property>
  2142. <name>ipc.client.connection.idle-scan-interval.ms</name>
  2143. <value>10000</value>
  2144. <description>
  2145. Indicate how often the server scans for idle connections.
  2146. </description>
  2147. </property>
  2148. <property>
  2149. <name>ipc.client.kill.max</name>
  2150. <value>10</value>
  2151. <description>Defines the maximum number of clients to disconnect in one go.
  2152. </description>
  2153. </property>
  2154. <property>
  2155. <name>ipc.client.connection.maxidletime</name>
  2156. <value>10000</value>
  2157. <description>The maximum time in msec after which a client will bring down the
  2158. connection to the server.
  2159. </description>
  2160. </property>
  2161. <property>
  2162. <name>ipc.client.connect.max.retries</name>
  2163. <value>10</value>
  2164. <description>Indicates the number of retries a client will make to establish
  2165. a server connection.
  2166. </description>
  2167. </property>
  2168. <property>
  2169. <name>ipc.client.connect.retry.interval</name>
  2170. <value>1000</value>
  2171. <description>Indicates the number of milliseconds a client will wait for
  2172. before retrying to establish a server connection.
  2173. </description>
  2174. </property>
  2175. <property>
  2176. <name>ipc.client.connect.timeout</name>
  2177. <value>20000</value>
  2178. <description>Indicates the number of milliseconds a client will wait for the
  2179. socket to establish a server connection.
  2180. </description>
  2181. </property>
  2182. <property>
  2183. <name>ipc.client.connect.max.retries.on.timeouts</name>
  2184. <value>45</value>
  2185. <description>Indicates the number of retries a client will make on socket timeout
  2186. to establish a server connection.
  2187. </description>
  2188. </property>
  2189. <property>
  2190. <name>ipc.client.connect.max.retries.on.sasl</name>
  2191. <value>5</value>
  2192. <description>
  2193. The maximum retries on SASL connection failures in RPC client.
  2194. </description>
  2195. </property>
  2196. <property>
  2197. <name>ipc.client.tcpnodelay</name>
  2198. <value>true</value>
  2199. <description>Use TCP_NODELAY flag to bypass Nagle's algorithm transmission delays.
  2200. </description>
  2201. </property>
  2202. <property>
  2203. <name>ipc.client.low-latency</name>
  2204. <value>false</value>
  2205. <description>Use low-latency QoS markers for IPC connections.
  2206. </description>
  2207. </property>
  2208. <property>
  2209. <name>ipc.client.ping</name>
  2210. <value>true</value>
  2211. <description>Send a ping to the server when timeout on reading the response,
  2212. if set to true. If no failure is detected, the client retries until at least
  2213. a byte is read or the time given by ipc.client.rpc-timeout.ms is passed.
  2214. </description>
  2215. </property>
  2216. <property>
  2217. <name>ipc.ping.interval</name>
  2218. <value>60000</value>
  2219. <description>Timeout on waiting response from server, in milliseconds.
  2220. The client will send ping when the interval is passed without receiving bytes,
  2221. if ipc.client.ping is set to true.
  2222. </description>
  2223. </property>
  2224. <property>
  2225. <name>ipc.client.rpc-timeout.ms</name>
  2226. <value>120000</value>
  2227. <description>Timeout on waiting response from server, in milliseconds.
  2228. If this rpc-timeout is 0, it means no timeout. If this rpc-timeout is greater
  2229. than 0, and ipc.client.ping is set to true, and this rpc-timeout is greater than
  2230. the value of ipc.ping.interval, the effective value of the rpc-timeout is
  2231. rounded up to multiple of ipc.ping.interval.
  2232. </description>
  2233. </property>
  2234. <property>
  2235. <name>ipc.server.tcpnodelay</name>
  2236. <value>true</value>
  2237. <description>
  2238. If true then disable Nagle's Algorithm.
  2239. </description>
  2240. </property>
  2241. <property>
  2242. <name>ipc.server.handler.queue.size</name>
  2243. <value>100</value>
  2244. <description>
  2245. Indicates how many calls per handler are allowed in the queue. This value can
  2246. determine the maximum call queue size by multiplying the number of handler threads.
  2247. </description>
  2248. </property>
  2249. <property>
  2250. <name>ipc.server.max.response.size</name>
  2251. <value>1048576</value>
  2252. <description>
  2253. The maximum size when large IPC handler response buffer is reset.
  2254. </description>
  2255. </property>
  2256. <property>
  2257. <name>ipc.server.metrics.update.runner.interval</name>
  2258. <value>5000</value>
  2259. <description>
  2260. To configure scheduling of server metrics update thread. This config is
  2261. used to indicate initial delay and delay between each execution of the
  2262. metric update runnable thread.
  2263. </description>
  2264. </property>
  2265. <property>
  2266. <name>ipc.server.listen.queue.size</name>
  2267. <value>256</value>
  2268. <description>Indicates the length of the listen queue for servers accepting
  2269. client connections.
  2270. </description>
  2271. </property>
  2272. <property>
  2273. <name>ipc.server.log.slow.rpc</name>
  2274. <value>false</value>
  2275. <description>This setting is useful to troubleshoot performance issues for
  2276. various services. If this value is set to true then we log requests that
  2277. fall into 99th percentile as well as increment RpcSlowCalls counter.
  2278. </description>
  2279. </property>
  2280. <property>
  2281. <name>ipc.server.log.slow.rpc.threshold.ms</name>
  2282. <value>0</value>
  2283. <description>The threshold in milliseconds for logging slow rpc when ipc.server.log.slow.rpc is enabled.
  2284. Besides of being much slower than other RPC requests, an RPC request has to take at least the threshold value
  2285. defined by this property before it can be considered as slow. By default, this threshold is set to 0 (disabled).
  2286. </description>
  2287. </property>
  2288. <property>
  2289. <name>ipc.server.purge.interval</name>
  2290. <value>15</value>
  2291. <description>Define how often calls are cleaned up in the server.
  2292. The default is 15 minutes. The unit is minutes.
  2293. </description>
  2294. </property>
  2295. <property>
  2296. <name>ipc.server.read.connection-queue.size</name>
  2297. <value>100</value>
  2298. <description>
  2299. Number of pending connections that may be queued per socket reader.
  2300. </description>
  2301. </property>
  2302. <property>
  2303. <name>ipc.server.read.threadpool.size</name>
  2304. <value>1</value>
  2305. <description>
  2306. Indicates the number of threads in RPC server reading from the socket.
  2307. </description>
  2308. </property>
  2309. <property>
  2310. <name>ipc.maximum.data.length</name>
  2311. <value>134217728</value>
  2312. <description>This indicates the maximum IPC message length (bytes) that can be
  2313. accepted by the server. Messages larger than this value are rejected by the
  2314. immediately to avoid possible OOMs. This setting should rarely need to be
  2315. changed.
  2316. </description>
  2317. </property>
  2318. <property>
  2319. <name>ipc.maximum.response.length</name>
  2320. <value>134217728</value>
  2321. <description>This indicates the maximum IPC message length (bytes) that can be
  2322. accepted by the client. Messages larger than this value are rejected
  2323. immediately to avoid possible OOMs. This setting should rarely need to be
  2324. changed. Set to 0 to disable.
  2325. </description>
  2326. </property>
  2327. <property>
  2328. <name>ipc.server.reuseaddr</name>
  2329. <value>true</value>
  2330. <description>Enables the SO_REUSEADDR TCP option on the server.
  2331. Useful if BindException often prevents a certain service to be restarted
  2332. because the server side is stuck in TIME_WAIT state.
  2333. </description>
  2334. </property>
  2335. <property>
  2336. <name>ipc.[port_number].callqueue.overflow.trigger.failover</name>
  2337. <value>false</value>
  2338. <description>
  2339. Enable callqueue overflow trigger failover for stateless servers.
  2340. </description>
  2341. </property>
  2342. <property>
  2343. <name>ipc.callqueue.overflow.trigger.failover</name>
  2344. <value>false</value>
  2345. <description>
  2346. This property is used as fallback property in case
  2347. "ipc.[port_number].callqueue.overflow.trigger.failover" is not defined.
  2348. It determines whether or not to enable callqueue overflow trigger failover for stateless servers.
  2349. </description>
  2350. </property>
  2351. <!-- FairCallQueue properties -->
  2352. <!-- See FairCallQueue documentation for a table of all properties -->
  2353. <!-- [port_number] is the port used by the IPC server to be configured. -->
  2354. <!-- For example, ipc.8020.callqueue.impl will adjust the call queue -->
  2355. <!-- implementation for the IPC server running at port 8020. -->
  2356. <!-- Typically, [port_number] is configured to be the NameNode RPC port, -->
  2357. <!-- i.e. port number in dfs.namenode.rpc-address, or port number in -->
  2358. <!-- fs.defaultFS if dfs.namenode.rpc-address is not explicitly configured. -->
  2359. <property>
  2360. <name>ipc.[port_number].backoff.enable</name>
  2361. <value>false</value>
  2362. <description>Whether or not to enable client backoff when a queue is full.
  2363. </description>
  2364. </property>
  2365. <property>
  2366. <name>ipc.backoff.enable</name>
  2367. <value>false</value>
  2368. <description>
  2369. This property is used as fallback property in case
  2370. "ipc.[port_number].backoff.enable" is not defined.
  2371. It determines whether or not to enable client backoff when
  2372. a queue is full.
  2373. </description>
  2374. </property>
  2375. <property>
  2376. <name>ipc.[port_number].callqueue.impl</name>
  2377. <value>java.util.concurrent.LinkedBlockingQueue</value>
  2378. <description>The fully qualified name of a class to use as the implementation
  2379. of a call queue. The default implementation is
  2380. java.util.concurrent.LinkedBlockingQueue (FIFO queue).
  2381. Use org.apache.hadoop.ipc.FairCallQueue for the Fair Call Queue.
  2382. </description>
  2383. </property>
  2384. <property>
  2385. <name>ipc.callqueue.impl</name>
  2386. <value>java.util.concurrent.LinkedBlockingQueue</value>
  2387. <description>
  2388. The fully qualified name of a class to use as the implementation
  2389. of a call queue. The default implementation is
  2390. java.util.concurrent.LinkedBlockingQueue (FIFO queue).
  2391. Use org.apache.hadoop.ipc.FairCallQueue for the Fair Call Queue.
  2392. This config is fallback config for ipc.[port_number].callqueue.impl.
  2393. If call queue is not defined at port level, this default
  2394. config is used and hence, this is fallback config to
  2395. config with port.
  2396. </description>
  2397. </property>
  2398. <property>
  2399. <name>ipc.[port_number].scheduler.impl</name>
  2400. <value>org.apache.hadoop.ipc.DefaultRpcScheduler</value>
  2401. <description>The fully qualified name of a class to use as the
  2402. implementation of the scheduler. The default implementation is
  2403. org.apache.hadoop.ipc.DefaultRpcScheduler (no-op scheduler) when not using
  2404. FairCallQueue. If using FairCallQueue, defaults to
  2405. org.apache.hadoop.ipc.DecayRpcScheduler. Use
  2406. org.apache.hadoop.ipc.DecayRpcScheduler in conjunction with the Fair Call
  2407. Queue.
  2408. </description>
  2409. </property>
  2410. <property>
  2411. <name>ipc.scheduler.impl</name>
  2412. <value>org.apache.hadoop.ipc.DefaultRpcScheduler</value>
  2413. <description>
  2414. The fully qualified name of a class to use as the
  2415. implementation of the scheduler. The default implementation is
  2416. org.apache.hadoop.ipc.DefaultRpcScheduler (no-op scheduler) when
  2417. not using FairCallQueue. If using FairCallQueue, defaults to
  2418. org.apache.hadoop.ipc.DecayRpcScheduler. Use
  2419. org.apache.hadoop.ipc.DecayRpcScheduler in conjunction
  2420. with the Fair Call Queue.
  2421. This config is fallback config for ipc.[port_number].scheduler.impl.
  2422. If scheduler queue is not defined at port level, this default
  2423. config is used and hence, this is fallback config to
  2424. config with port.
  2425. </description>
  2426. </property>
  2427. <property>
  2428. <name>ipc.[port_number].callqueue.capacity.weights</name>
  2429. <value></value>
  2430. <description>
  2431. When FairCallQueue is enabled, user can specify capacity allocation
  2432. among all sub-queues via this property. The value of this config is
  2433. a comma-separated list of positive integers, each of which specifies
  2434. the weight associated with the sub-queue at that index. This list
  2435. length should be IPC scheduler priority levels, defined by
  2436. "scheduler.priority.levels". By default, each sub-queue is associated
  2437. with weight 1, i.e., all sub-queues are allocated with the same capacity.
  2438. </description>
  2439. </property>
  2440. <property>
  2441. <name>ipc.[port_number].scheduler.priority.levels</name>
  2442. <value>4</value>
  2443. <description>How many priority levels to use within the scheduler and call
  2444. queue. This property applies to RpcScheduler and CallQueue.
  2445. </description>
  2446. </property>
  2447. <property>
  2448. <name>ipc.[port_number].faircallqueue.multiplexer.weights</name>
  2449. <value>8,4,2,1</value>
  2450. <description>How much weight to give to each priority queue. This should be
  2451. a comma-separated list of length equal to the number of priority levels.
  2452. Weights descend by a factor of 2 (e.g., for 4 levels: 8,4,2,1).
  2453. This property applies to WeightedRoundRobinMultiplexer.
  2454. </description>
  2455. </property>
  2456. <property>
  2457. <name>ipc.[port_number].identity-provider.impl</name>
  2458. <value>org.apache.hadoop.ipc.UserIdentityProvider</value>
  2459. <description>The identity provider mapping user requests to their identity.
  2460. This property applies to DecayRpcScheduler.
  2461. </description>
  2462. </property>
  2463. <property>
  2464. <name>ipc.identity-provider.impl</name>
  2465. <value>org.apache.hadoop.ipc.UserIdentityProvider</value>
  2466. <description>
  2467. This property is used as fallback property in case
  2468. "ipc.[port_number].identity-provider.impl" is not defined.
  2469. The identity provider mapping user requests to their identity.
  2470. This property applies to DecayRpcScheduler.
  2471. </description>
  2472. </property>
  2473. <property>
  2474. <name>ipc.[port_number].cost-provider.impl</name>
  2475. <value>org.apache.hadoop.ipc.DefaultCostProvider</value>
  2476. <description>The cost provider mapping user requests to their cost. To
  2477. enable determination of cost based on processing time, use
  2478. org.apache.hadoop.ipc.WeightedTimeCostProvider.
  2479. This property applies to DecayRpcScheduler.
  2480. </description>
  2481. </property>
  2482. <property>
  2483. <name>ipc.cost-provider.impl</name>
  2484. <value>org.apache.hadoop.ipc.DefaultCostProvider</value>
  2485. <description>
  2486. This property is used as fallback property in case
  2487. "ipc.[port_number].cost-provider.impl" is not defined.
  2488. The cost provider mapping user requests to their cost. To
  2489. enable determination of cost based on processing time, use
  2490. org.apache.hadoop.ipc.WeightedTimeCostProvider.
  2491. This property applies to DecayRpcScheduler.
  2492. </description>
  2493. </property>
  2494. <property>
  2495. <name>ipc.[port_number].decay-scheduler.period-ms</name>
  2496. <value>5000</value>
  2497. <description>How frequently the decay factor should be applied to the
  2498. operation counts of users. Higher values have less overhead, but respond
  2499. less quickly to changes in client behavior.
  2500. This property applies to DecayRpcScheduler.
  2501. </description>
  2502. </property>
  2503. <property>
  2504. <name>ipc.[port_number].decay-scheduler.decay-factor</name>
  2505. <value>0.5</value>
  2506. <description>When decaying the operation counts of users, the multiplicative
  2507. decay factor to apply. Higher values will weight older operations more
  2508. strongly, essentially giving the scheduler a longer memory, and penalizing
  2509. heavy clients for a longer period of time.
  2510. This property applies to DecayRpcScheduler.
  2511. </description>
  2512. </property>
  2513. <property>
  2514. <name>ipc.[port_number].decay-scheduler.thresholds</name>
  2515. <value>13,25,50</value>
  2516. <description>The client load threshold, as an integer percentage, for each
  2517. priority queue. Clients producing less load, as a percent of total
  2518. operations, than specified at position i will be given priority i. This
  2519. should be a comma-separated list of length equal to the number of priority
  2520. levels minus 1 (the last is implicitly 100).
  2521. Thresholds ascend by a factor of 2 (e.g., for 4 levels: 13,25,50).
  2522. This property applies to DecayRpcScheduler.
  2523. </description>
  2524. </property>
  2525. <property>
  2526. <name>ipc.[port_number].decay-scheduler.backoff.responsetime.enable</name>
  2527. <value>false</value>
  2528. <description>Whether or not to enable the backoff by response time feature.
  2529. This property applies to DecayRpcScheduler.
  2530. </description>
  2531. </property>
  2532. <property>
  2533. <name>ipc.[port_number].decay-scheduler.backoff.responsetime.thresholds</name>
  2534. <value>10s,20s,30s,40s</value>
  2535. <description>The response time thresholds, as time durations, for each
  2536. priority queue. If the average response time for a queue is above this
  2537. threshold, backoff will occur in lower priority queues. This should be a
  2538. comma-separated list of length equal to the number of priority levels.
  2539. Threshold increases by 10s per level (e.g., for 4 levels: 10s,20s,30s,40s)
  2540. This property applies to DecayRpcScheduler.
  2541. </description>
  2542. </property>
  2543. <property>
  2544. <name>ipc.[port_number].decay-scheduler.metrics.top.user.count</name>
  2545. <value>10</value>
  2546. <description>The number of top (i.e., heaviest) users to emit metric
  2547. information about. This property applies to DecayRpcScheduler.
  2548. </description>
  2549. </property>
  2550. <property>
  2551. <name>ipc.[port_number].decay-scheduler.service-users</name>
  2552. <value></value>
  2553. <description>Service users will always be scheduled into the highest-priority
  2554. queue and won't be included in the priority computation of normal user
  2555. calls. They are specified as a comma-separated list.
  2556. </description>
  2557. </property>
  2558. <property>
  2559. <name>ipc.[port_number].weighted-cost.lockshared</name>
  2560. <value>10</value>
  2561. <description>The weight multiplier to apply to the time spent in the
  2562. processing phase which holds a shared (read) lock.
  2563. This property applies to WeightedTimeCostProvider.
  2564. </description>
  2565. </property>
  2566. <property>
  2567. <name>ipc.[port_number].weighted-cost.lockexclusive</name>
  2568. <value>100</value>
  2569. <description>The weight multiplier to apply to the time spent in the
  2570. processing phase which holds an exclusive (write) lock.
  2571. This property applies to WeightedTimeCostProvider.
  2572. </description>
  2573. </property>
  2574. <property>
  2575. <name>ipc.[port_number].weighted-cost.handler</name>
  2576. <value>1</value>
  2577. <description>The weight multiplier to apply to the time spent in the
  2578. HANDLER phase which do not involve holding a lock.
  2579. See org.apache.hadoop.ipc.ProcessingDetails.Timing for more details on
  2580. this phase. This property applies to WeightedTimeCostProvider.
  2581. </description>
  2582. </property>
  2583. <property>
  2584. <name>ipc.[port_number].weighted-cost.lockfree</name>
  2585. <value>1</value>
  2586. <description>The weight multiplier to apply to the time spent in the
  2587. LOCKFREE phase which do not involve holding a lock.
  2588. See org.apache.hadoop.ipc.ProcessingDetails.Timing for more details on
  2589. this phase. This property applies to WeightedTimeCostProvider.
  2590. </description>
  2591. </property>
  2592. <property>
  2593. <name>ipc.[port_number].weighted-cost.response</name>
  2594. <value>1</value>
  2595. <description>The weight multiplier to apply to the time spent in the
  2596. RESPONSE phase which do not involve holding a lock.
  2597. See org.apache.hadoop.ipc.ProcessingDetails.Timing for more details on
  2598. this phase. This property applies to WeightedTimeCostProvider.
  2599. </description>
  2600. </property>
  2601. <!-- Proxy Configuration -->
  2602. <property>
  2603. <name>hadoop.security.impersonation.provider.class</name>
  2604. <value></value>
  2605. <description>A class which implements ImpersonationProvider interface, used to
  2606. authorize whether one user can impersonate a specific user.
  2607. If not specified, the DefaultImpersonationProvider will be used.
  2608. If a class is specified, then that class will be used to determine
  2609. the impersonation capability.
  2610. </description>
  2611. </property>
  2612. <property>
  2613. <name>hadoop.rpc.socket.factory.class.default</name>
  2614. <value>org.apache.hadoop.net.StandardSocketFactory</value>
  2615. <description> Default SocketFactory to use. This parameter is expected to be
  2616. formatted as "package.FactoryClassName".
  2617. </description>
  2618. </property>
  2619. <property>
  2620. <name>hadoop.rpc.socket.factory.class.ClientProtocol</name>
  2621. <value></value>
  2622. <description> SocketFactory to use to connect to a DFS. If null or empty, use
  2623. hadoop.rpc.socket.class.default. This socket factory is also used by
  2624. DFSClient to create sockets to DataNodes.
  2625. </description>
  2626. </property>
  2627. <property>
  2628. <name>hadoop.socks.server</name>
  2629. <value></value>
  2630. <description> Address (host:port) of the SOCKS server to be used by the
  2631. SocksSocketFactory.
  2632. </description>
  2633. </property>
  2634. <!-- Topology Configuration -->
  2635. <property>
  2636. <name>net.topology.node.switch.mapping.impl</name>
  2637. <value>org.apache.hadoop.net.ScriptBasedMapping</value>
  2638. <description> The default implementation of the DNSToSwitchMapping. It
  2639. invokes a script specified in net.topology.script.file.name to resolve
  2640. node names. If the value for net.topology.script.file.name is not set, the
  2641. default value of DEFAULT_RACK is returned for all node names.
  2642. </description>
  2643. </property>
  2644. <property>
  2645. <name>net.topology.impl</name>
  2646. <value>org.apache.hadoop.net.NetworkTopology</value>
  2647. <description> The default implementation of NetworkTopology which is classic three layer one.
  2648. </description>
  2649. </property>
  2650. <property>
  2651. <name>net.topology.script.file.name</name>
  2652. <value></value>
  2653. <description> The script name that should be invoked to resolve DNS names to
  2654. NetworkTopology names. Example: the script would take host.foo.bar as an
  2655. argument, and return /rack1 as the output.
  2656. </description>
  2657. </property>
  2658. <property>
  2659. <name>net.topology.script.number.args</name>
  2660. <value>100</value>
  2661. <description> The max number of args that the script configured with
  2662. net.topology.script.file.name should be run with. Each arg is an
  2663. IP address.
  2664. </description>
  2665. </property>
  2666. <property>
  2667. <name>net.topology.table.file.name</name>
  2668. <value></value>
  2669. <description> The file name for a topology file, which is used when the
  2670. net.topology.node.switch.mapping.impl property is set to
  2671. org.apache.hadoop.net.TableMapping. The file format is a two column text
  2672. file, with columns separated by whitespace. The first column is a DNS or
  2673. IP address and the second column specifies the rack where the address maps.
  2674. If no entry corresponding to a host in the cluster is found, then
  2675. /default-rack is assumed.
  2676. </description>
  2677. </property>
  2678. <property>
  2679. <name>net.topology.configured.node.mapping</name>
  2680. <value></value>
  2681. <description>
  2682. Key to define the node mapping as a comma-delimited list of host=rack
  2683. mappings. e.g. host1=r1,host2=r1,host3=r2. Important: spaces not trimmed
  2684. and are considered significant.
  2685. </description>
  2686. </property>
  2687. <property>
  2688. <name>net.topology.dependency.script.file.name</name>
  2689. <value></value>
  2690. <description>
  2691. Key to the dependency script filename.
  2692. </description>
  2693. </property>
  2694. <!-- Local file system -->
  2695. <property>
  2696. <name>file.stream-buffer-size</name>
  2697. <value>4096</value>
  2698. <description>The size of buffer to stream files.
  2699. The size of this buffer should probably be a multiple of hardware
  2700. page size (4096 on Intel x86), and it determines how much data is
  2701. buffered during read and write operations.</description>
  2702. </property>
  2703. <property>
  2704. <name>file.bytes-per-checksum</name>
  2705. <value>512</value>
  2706. <description>The number of bytes per checksum. Must not be larger than
  2707. file.stream-buffer-size</description>
  2708. </property>
  2709. <property>
  2710. <name>file.client-write-packet-size</name>
  2711. <value>65536</value>
  2712. <description>Packet size for clients to write</description>
  2713. </property>
  2714. <property>
  2715. <name>file.blocksize</name>
  2716. <value>67108864</value>
  2717. <description>Block size</description>
  2718. </property>
  2719. <property>
  2720. <name>file.replication</name>
  2721. <value>1</value>
  2722. <description>Replication factor</description>
  2723. </property>
  2724. <!-- FTP file system -->
  2725. <property>
  2726. <name>ftp.stream-buffer-size</name>
  2727. <value>4096</value>
  2728. <description>The size of buffer to stream files.
  2729. The size of this buffer should probably be a multiple of hardware
  2730. page size (4096 on Intel x86), and it determines how much data is
  2731. buffered during read and write operations.</description>
  2732. </property>
  2733. <property>
  2734. <name>ftp.bytes-per-checksum</name>
  2735. <value>512</value>
  2736. <description>The number of bytes per checksum. Must not be larger than
  2737. ftp.stream-buffer-size</description>
  2738. </property>
  2739. <property>
  2740. <name>ftp.client-write-packet-size</name>
  2741. <value>65536</value>
  2742. <description>Packet size for clients to write</description>
  2743. </property>
  2744. <property>
  2745. <name>ftp.blocksize</name>
  2746. <value>67108864</value>
  2747. <description>Block size</description>
  2748. </property>
  2749. <property>
  2750. <name>ftp.replication</name>
  2751. <value>3</value>
  2752. <description>Replication factor</description>
  2753. </property>
  2754. <!-- Tfile -->
  2755. <property>
  2756. <name>tfile.io.chunk.size</name>
  2757. <value>1048576</value>
  2758. <description>
  2759. Value chunk size in bytes. Default to
  2760. 1MB. Values of the length less than the chunk size is
  2761. guaranteed to have known value length in read time (See also
  2762. TFile.Reader.Scanner.Entry.isValueLengthKnown()).
  2763. </description>
  2764. </property>
  2765. <property>
  2766. <name>tfile.fs.output.buffer.size</name>
  2767. <value>262144</value>
  2768. <description>
  2769. Buffer size used for FSDataOutputStream in bytes.
  2770. </description>
  2771. </property>
  2772. <property>
  2773. <name>tfile.fs.input.buffer.size</name>
  2774. <value>262144</value>
  2775. <description>
  2776. Buffer size used for FSDataInputStream in bytes.
  2777. </description>
  2778. </property>
  2779. <!-- HTTP web-consoles Authentication -->
  2780. <property>
  2781. <name>hadoop.http.authentication.type</name>
  2782. <value>simple</value>
  2783. <description>
  2784. Defines authentication used for Oozie HTTP endpoint.
  2785. Supported values are: simple | kerberos | #AUTHENTICATION_HANDLER_CLASSNAME#
  2786. </description>
  2787. </property>
  2788. <property>
  2789. <name>hadoop.http.authentication.token.validity</name>
  2790. <value>36000</value>
  2791. <description>
  2792. Indicates how long (in seconds) an authentication token is valid before it has
  2793. to be renewed.
  2794. </description>
  2795. </property>
  2796. <property>
  2797. <name>hadoop.http.authentication.signature.secret.file</name>
  2798. <value>${user.home}/hadoop-http-auth-signature-secret</value>
  2799. <description>
  2800. The signature secret for signing the authentication tokens.
  2801. A different secret should be used for each service.
  2802. </description>
  2803. </property>
  2804. <property>
  2805. <name>hadoop.http.authentication.cookie.domain</name>
  2806. <value></value>
  2807. <description>
  2808. The domain to use for the HTTP cookie that stores the authentication token.
  2809. In order to authentiation to work correctly across all Hadoop nodes web-consoles
  2810. the domain must be correctly set.
  2811. IMPORTANT: when using IP addresses, browsers ignore cookies with domain settings.
  2812. For this setting to work properly all nodes in the cluster must be configured
  2813. to generate URLs with hostname.domain names on it.
  2814. </description>
  2815. </property>
  2816. <property>
  2817. <name>hadoop.http.authentication.simple.anonymous.allowed</name>
  2818. <value>true</value>
  2819. <description>
  2820. Indicates if anonymous requests are allowed when using 'simple' authentication.
  2821. </description>
  2822. </property>
  2823. <property>
  2824. <name>hadoop.http.authentication.kerberos.principal</name>
  2825. <value>HTTP/_HOST@LOCALHOST</value>
  2826. <description>
  2827. Indicates the Kerberos principal to be used for HTTP endpoint.
  2828. The principal MUST start with 'HTTP/' as per Kerberos HTTP SPNEGO specification.
  2829. </description>
  2830. </property>
  2831. <property>
  2832. <name>hadoop.http.authentication.kerberos.keytab</name>
  2833. <value>${user.home}/hadoop.keytab</value>
  2834. <description>
  2835. Location of the keytab file with the credentials for the principal.
  2836. Referring to the same keytab file Oozie uses for its Kerberos credentials for Hadoop.
  2837. </description>
  2838. </property>
  2839. <property>
  2840. <name>hadoop.http.authentication.kerberos.endpoint.whitelist</name>
  2841. <value></value>
  2842. <description>
  2843. The comma-separated list of the endpoints that skips Kerberos
  2844. authentication. The endpoint must start with '/' and must not
  2845. contain special characters afterwards. This parameter is for
  2846. the monitoring tools that do not support Kerberos authentication.
  2847. Administrator must configure this parameter very carefully
  2848. because it allows unauthenticated access to the daemons.
  2849. </description>
  2850. </property>
  2851. <!-- HTTP CORS support -->
  2852. <property>
  2853. <name>hadoop.http.cross-origin.enabled</name>
  2854. <value>false</value>
  2855. <description>Enable/disable the cross-origin (CORS) filter.</description>
  2856. </property>
  2857. <property>
  2858. <name>hadoop.http.cross-origin.allowed-origins</name>
  2859. <value>*</value>
  2860. <description>Comma separated list of origins that are allowed for web services
  2861. needing cross-origin (CORS) support. If a value in the list contains an
  2862. asterix (*), a regex pattern, escaping any dots ('.' -> '\.') and replacing
  2863. the asterix such that it captures any characters ('*' -> '.*'), is generated.
  2864. Values prefixed with 'regex:' are interpreted directly as regular expressions,
  2865. e.g. use the expression 'regex:https?:\/\/foo\.bar:([0-9]+)?' to allow any
  2866. origin using the 'http' or 'https' protocol in the domain 'foo.bar' on any
  2867. port. The use of simple wildcards ('*') is discouraged, and only available for
  2868. backward compatibility.</description>
  2869. </property>
  2870. <property>
  2871. <name>hadoop.http.cross-origin.allowed-methods</name>
  2872. <value>GET,POST,HEAD</value>
  2873. <description>Comma separated list of methods that are allowed for web
  2874. services needing cross-origin (CORS) support.</description>
  2875. </property>
  2876. <property>
  2877. <name>hadoop.http.cross-origin.allowed-headers</name>
  2878. <value>X-Requested-With,Content-Type,Accept,Origin</value>
  2879. <description>Comma separated list of headers that are allowed for web
  2880. services needing cross-origin (CORS) support.</description>
  2881. </property>
  2882. <property>
  2883. <name>hadoop.http.cross-origin.max-age</name>
  2884. <value>1800</value>
  2885. <description>The number of seconds a pre-flighted request can be cached
  2886. for web services needing cross-origin (CORS) support.</description>
  2887. </property>
  2888. <property>
  2889. <name>dfs.ha.fencing.methods</name>
  2890. <value></value>
  2891. <description>
  2892. List of fencing methods to use for service fencing. May contain
  2893. builtin methods (eg shell, sshfence and powershell) or user-defined method.
  2894. </description>
  2895. </property>
  2896. <property>
  2897. <name>dfs.ha.fencing.ssh.connect-timeout</name>
  2898. <value>30000</value>
  2899. <description>
  2900. SSH connection timeout, in milliseconds, to use with the builtin
  2901. sshfence fencer.
  2902. </description>
  2903. </property>
  2904. <property>
  2905. <name>dfs.ha.fencing.ssh.private-key-files</name>
  2906. <value></value>
  2907. <description>
  2908. The SSH private key files to use with the builtin sshfence fencer.
  2909. </description>
  2910. </property>
  2911. <property>
  2912. <name>ha.zookeeper.quorum</name>
  2913. <description>
  2914. A list of ZooKeeper server addresses, separated by commas, that are
  2915. to be used by the ZKFailoverController in automatic failover.
  2916. </description>
  2917. </property>
  2918. <property>
  2919. <name>ha.zookeeper.session-timeout.ms</name>
  2920. <value>10000</value>
  2921. <description>
  2922. The session timeout to use when the ZKFC connects to ZooKeeper.
  2923. Setting this value to a lower value implies that server crashes
  2924. will be detected more quickly, but risks triggering failover too
  2925. aggressively in the case of a transient error or network blip.
  2926. </description>
  2927. </property>
  2928. <property>
  2929. <name>ha.zookeeper.parent-znode</name>
  2930. <value>/hadoop-ha</value>
  2931. <description>
  2932. The ZooKeeper znode under which the ZK failover controller stores
  2933. its information. Note that the nameservice ID is automatically
  2934. appended to this znode, so it is not normally necessary to
  2935. configure this, even in a federated environment.
  2936. </description>
  2937. </property>
  2938. <property>
  2939. <name>ha.zookeeper.acl</name>
  2940. <value>world:anyone:rwcda</value>
  2941. <description>
  2942. A comma-separated list of ZooKeeper ACLs to apply to the znodes
  2943. used by automatic failover. These ACLs are specified in the same
  2944. format as used by the ZooKeeper CLI.
  2945. If the ACL itself contains secrets, you may instead specify a
  2946. path to a file, prefixed with the '@' symbol, and the value of
  2947. this configuration will be loaded from within.
  2948. </description>
  2949. </property>
  2950. <property>
  2951. <name>ha.zookeeper.auth</name>
  2952. <value></value>
  2953. <description>
  2954. A comma-separated list of ZooKeeper authentications to add when
  2955. connecting to ZooKeeper. These are specified in the same format
  2956. as used by the &quot;addauth&quot; command in the ZK CLI. It is
  2957. important that the authentications specified here are sufficient
  2958. to access znodes with the ACL specified in ha.zookeeper.acl.
  2959. If the auths contain secrets, you may instead specify a
  2960. path to a file, prefixed with the '@' symbol, and the value of
  2961. this configuration will be loaded from within.
  2962. </description>
  2963. </property>
  2964. <!-- Static Web User Filter properties. -->
  2965. <property>
  2966. <name>hadoop.http.staticuser.user</name>
  2967. <value>dr.who</value>
  2968. <description>
  2969. The user name to filter as, on static web filters
  2970. while rendering content. An example use is the HDFS
  2971. web UI (user to be used for browsing files).
  2972. </description>
  2973. </property>
  2974. <!-- SSLFactory configuration -->
  2975. <property>
  2976. <name>hadoop.ssl.keystores.factory.class</name>
  2977. <value>org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory</value>
  2978. <description>
  2979. The keystores factory to use for retrieving certificates.
  2980. </description>
  2981. </property>
  2982. <property>
  2983. <name>hadoop.ssl.require.client.cert</name>
  2984. <value>false</value>
  2985. <description>Whether client certificates are required</description>
  2986. </property>
  2987. <property>
  2988. <name>hadoop.ssl.hostname.verifier</name>
  2989. <value>DEFAULT</value>
  2990. <description>
  2991. The hostname verifier to provide for HttpsURLConnections.
  2992. Valid values are: DEFAULT, STRICT, STRICT_IE6, DEFAULT_AND_LOCALHOST and
  2993. ALLOW_ALL
  2994. </description>
  2995. </property>
  2996. <property>
  2997. <name>hadoop.ssl.server.conf</name>
  2998. <value>ssl-server.xml</value>
  2999. <description>
  3000. Resource file from which ssl server keystore information will be extracted.
  3001. This file is looked up in the classpath, typically it should be in Hadoop
  3002. conf/ directory.
  3003. </description>
  3004. </property>
  3005. <property>
  3006. <name>hadoop.ssl.client.conf</name>
  3007. <value>ssl-client.xml</value>
  3008. <description>
  3009. Resource file from which ssl client keystore information will be extracted
  3010. This file is looked up in the classpath, typically it should be in Hadoop
  3011. conf/ directory.
  3012. </description>
  3013. </property>
  3014. <property>
  3015. <name>hadoop.ssl.enabled.protocols</name>
  3016. <value>TLSv1.2</value>
  3017. <description>
  3018. The supported SSL protocols. The parameter will only be used from
  3019. DatanodeHttpServer.
  3020. Starting from Hadoop 3.3.0, TLSv1.3 is supported with Java 11 Runtime.
  3021. </description>
  3022. </property>
  3023. <property>
  3024. <name>hadoop.jetty.logs.serve.aliases</name>
  3025. <value>true</value>
  3026. <description>
  3027. Enable/Disable aliases serving from jetty
  3028. </description>
  3029. </property>
  3030. <property>
  3031. <name>fs.permissions.umask-mode</name>
  3032. <value>022</value>
  3033. <description>
  3034. The umask used when creating files and directories.
  3035. Can be in octal or in symbolic. Examples are:
  3036. "022" (octal for u=rwx,g=r-x,o=r-x in symbolic),
  3037. or "u=rwx,g=rwx,o=" (symbolic for 007 in octal).
  3038. </description>
  3039. </property>
  3040. <!-- ha properties -->
  3041. <property>
  3042. <name>ha.health-monitor.connect-retry-interval.ms</name>
  3043. <value>1000</value>
  3044. <description>
  3045. How often to retry connecting to the service.
  3046. </description>
  3047. </property>
  3048. <property>
  3049. <name>ha.health-monitor.check-interval.ms</name>
  3050. <value>1000</value>
  3051. <description>
  3052. How often to check the service.
  3053. </description>
  3054. </property>
  3055. <property>
  3056. <name>ha.health-monitor.sleep-after-disconnect.ms</name>
  3057. <value>1000</value>
  3058. <description>
  3059. How long to sleep after an unexpected RPC error.
  3060. </description>
  3061. </property>
  3062. <property>
  3063. <name>ha.health-monitor.rpc.connect.max.retries</name>
  3064. <value>1</value>
  3065. <description>
  3066. The number of retries on connect error when establishing RPC proxy
  3067. connection to NameNode, used for monitorHealth() calls.
  3068. </description>
  3069. </property>
  3070. <property>
  3071. <name>ha.health-monitor.rpc-timeout.ms</name>
  3072. <value>45000</value>
  3073. <description>
  3074. Timeout for the actual monitorHealth() calls.
  3075. </description>
  3076. </property>
  3077. <property>
  3078. <name>ha.failover-controller.new-active.rpc-timeout.ms</name>
  3079. <value>60000</value>
  3080. <description>
  3081. Timeout that the FC waits for the new active to become active
  3082. </description>
  3083. </property>
  3084. <property>
  3085. <name>ha.failover-controller.graceful-fence.rpc-timeout.ms</name>
  3086. <value>5000</value>
  3087. <description>
  3088. Timeout that the FC waits for the old active to go to standby
  3089. </description>
  3090. </property>
  3091. <property>
  3092. <name>ha.failover-controller.graceful-fence.connection.retries</name>
  3093. <value>1</value>
  3094. <description>
  3095. FC connection retries for graceful fencing
  3096. </description>
  3097. </property>
  3098. <property>
  3099. <name>ha.failover-controller.active-standby-elector.zk.op.retries</name>
  3100. <value>3</value>
  3101. <description>
  3102. The number of zookeeper operation retry times in ActiveStandbyElector
  3103. </description>
  3104. </property>
  3105. <property>
  3106. <name>ha.failover-controller.cli-check.rpc-timeout.ms</name>
  3107. <value>20000</value>
  3108. <description>
  3109. Timeout that the CLI (manual) FC waits for monitorHealth, getServiceState
  3110. </description>
  3111. </property>
  3112. <property>
  3113. <name>ipc.client.fallback-to-simple-auth-allowed</name>
  3114. <value>false</value>
  3115. <description>
  3116. When a client is configured to attempt a secure connection, but attempts to
  3117. connect to an insecure server, that server may instruct the client to
  3118. switch to SASL SIMPLE (unsecure) authentication. This setting controls
  3119. whether or not the client will accept this instruction from the server.
  3120. When false (the default), the client will not allow the fallback to SIMPLE
  3121. authentication, and will abort the connection.
  3122. </description>
  3123. </property>
  3124. <property>
  3125. <name>fs.client.resolve.remote.symlinks</name>
  3126. <value>true</value>
  3127. <description>
  3128. Whether to resolve symlinks when accessing a remote Hadoop filesystem.
  3129. Setting this to false causes an exception to be thrown upon encountering
  3130. a symlink. This setting does not apply to local filesystems, which
  3131. automatically resolve local symlinks.
  3132. </description>
  3133. </property>
  3134. <property>
  3135. <name>nfs.exports.allowed.hosts</name>
  3136. <value>* rw</value>
  3137. <description>
  3138. By default, the export can be mounted by any client. The value string
  3139. contains machine name and access privilege, separated by whitespace
  3140. characters. The machine name format can be a single host, a Java regular
  3141. expression, or an IPv4 address. The access privilege uses rw or ro to
  3142. specify read/write or read-only access of the machines to exports. If the
  3143. access privilege is not provided, the default is read-only. Entries are separated by ";".
  3144. For example: "192.168.0.0/22 rw ; host.*\.example\.com ; host1.test.org ro;".
  3145. Only the NFS gateway needs to restart after this property is updated.
  3146. </description>
  3147. </property>
  3148. <property>
  3149. <name>hadoop.user.group.static.mapping.overrides</name>
  3150. <value>dr.who=;</value>
  3151. <description>
  3152. Static mapping of user to groups. This will override the groups if
  3153. available in the system for the specified user. In other words, groups
  3154. look-up will not happen for these users, instead groups mapped in this
  3155. configuration will be used.
  3156. Mapping should be in this format.
  3157. user1=group1,group2;user2=;user3=group2;
  3158. Default, "dr.who=;" will consider "dr.who" as user without groups.
  3159. </description>
  3160. </property>
  3161. <property>
  3162. <name>hadoop.user.group.metrics.percentiles.intervals</name>
  3163. <value></value>
  3164. <description>
  3165. A comma-delimited list of integers denoting the desired rollover
  3166. intervals (in seconds) for percentile latency metrics on the Namenode
  3167. and Datanode for each user in the group. By default, percentile
  3168. latency metrics are disabled.
  3169. </description>
  3170. </property>
  3171. <property>
  3172. <name>rpc.metrics.quantile.enable</name>
  3173. <value>false</value>
  3174. <description>
  3175. Setting this property to true and rpc.metrics.percentiles.intervals
  3176. to a comma-separated list of the granularity in seconds, the
  3177. 50/75/90/95/99th percentile latency for rpc queue/processing time in
  3178. milliseconds are added to rpc metrics.
  3179. </description>
  3180. </property>
  3181. <property>
  3182. <name>rpc.metrics.timeunit</name>
  3183. <value>MILLISECONDS</value>
  3184. <description>
  3185. This property is used to configure timeunit for various RPC Metrics
  3186. e.g rpcQueueTime, rpcLockWaitTime, rpcProcessingTime,
  3187. deferredRpcProcessingTime. In the absence of this property,
  3188. default timeunit used is milliseconds.
  3189. The value of this property should match to any one value of enum:
  3190. java.util.concurrent.TimeUnit.
  3191. Some of the valid values: NANOSECONDS, MICROSECONDS, MILLISECONDS,
  3192. SECONDS etc.
  3193. </description>
  3194. </property>
  3195. <property>
  3196. <name>rpc.metrics.percentiles.intervals</name>
  3197. <value></value>
  3198. <description>
  3199. A comma-separated list of the granularity in seconds for the metrics which
  3200. describe the 50/75/90/95/99th percentile latency for rpc queue/processing
  3201. time. The metrics are outputted if rpc.metrics.quantile.enable is set to
  3202. true.
  3203. </description>
  3204. </property>
  3205. <property>
  3206. <name>hadoop.security.crypto.codec.classes.EXAMPLECIPHERSUITE</name>
  3207. <value></value>
  3208. <description>
  3209. The prefix for a given crypto codec, contains a comma-separated
  3210. list of implementation classes for a given crypto codec (eg EXAMPLECIPHERSUITE).
  3211. The first implementation will be used if available, others are fallbacks.
  3212. </description>
  3213. </property>
  3214. <property>
  3215. <name>hadoop.security.crypto.codec.classes.aes.ctr.nopadding</name>
  3216. <value>org.apache.hadoop.crypto.OpensslAesCtrCryptoCodec, org.apache.hadoop.crypto.JceAesCtrCryptoCodec</value>
  3217. <description>
  3218. Comma-separated list of crypto codec implementations for AES/CTR/NoPadding.
  3219. The first implementation will be used if available, others are fallbacks.
  3220. </description>
  3221. </property>
  3222. <property>
  3223. <name>hadoop.security.crypto.codec.classes.sm4.ctr.nopadding</name>
  3224. <value>org.apache.hadoop.crypto.OpensslSm4CtrCryptoCodec, org.apache.hadoop.crypto.JceSm4CtrCryptoCodec</value>
  3225. <description>
  3226. Comma-separated list of crypto codec implementations for SM4/CTR/NoPadding.
  3227. The first implementation will be used if available, others are fallbacks.
  3228. </description>
  3229. </property>
  3230. <property>
  3231. <name>hadoop.security.openssl.engine.id</name>
  3232. <value></value>
  3233. <description>
  3234. The Openssl provided an engine mechanism that allow to specify third-party software
  3235. encryption library or hardware encryption device for encryption. The engine ID could
  3236. be vendor defined and will be passed to openssl, more info please see:
  3237. https://github.com/openssl/openssl/blob/master/README.ENGINE
  3238. </description>
  3239. </property>
  3240. <property>
  3241. <name>hadoop.security.crypto.cipher.suite</name>
  3242. <value>AES/CTR/NoPadding</value>
  3243. <description>
  3244. Cipher suite for crypto codec.
  3245. </description>
  3246. </property>
  3247. <property>
  3248. <name>hadoop.security.crypto.jce.provider</name>
  3249. <value></value>
  3250. <description>
  3251. The JCE provider name used in CryptoCodec.
  3252. If this value is set, the corresponding provider must be added to the provider list.
  3253. The provider may be added statically in the java.security file, or
  3254. dynamically by calling the java.security.Security.addProvider(..) method, or
  3255. automatically (only for org.bouncycastle.jce.provider.BouncyCastleProvider)
  3256. by setting "hadoop.security.crypto.jce.provider.auto-add" to true
  3257. </description>
  3258. </property>
  3259. <property>
  3260. <name>hadoop.security.crypto.jce.provider.auto-add</name>
  3261. <value>true</value>
  3262. <description>
  3263. Automatically add the org.bouncycastle.jce.provider.BouncyCastleProvider
  3264. when the value in "hadoop.security.crypto.jce.provider" is set
  3265. to BouncyCastleProvider.PROVIDER_NAME.
  3266. </description>
  3267. </property>
  3268. <property>
  3269. <name>hadoop.security.crypto.jceks.key.serialfilter</name>
  3270. <description>
  3271. Enhanced KeyStore Mechanisms in JDK 8u171 introduced jceks.key.serialFilter.
  3272. If jceks.key.serialFilter is configured, the JCEKS KeyStore uses it during
  3273. the deserialization of the encrypted Key object stored inside a
  3274. SecretKeyEntry.
  3275. If jceks.key.serialFilter is not configured it will cause an error when
  3276. recovering keystore file in KeyProviderFactory when recovering key from
  3277. keystore file using JDK 8u171 or newer. The filter pattern uses the same
  3278. format as jdk.serialFilter.
  3279. The value of this property will be used as the following:
  3280. 1. The value of jceks.key.serialFilter system property takes precedence
  3281. over the value of this property.
  3282. 2. In the absence of jceks.key.serialFilter system property the value of
  3283. this property will be set as the value of jceks.key.serialFilter.
  3284. 3. If the value of this property and jceks.key.serialFilter system
  3285. property has not been set, org.apache.hadoop.crypto.key.KeyProvider
  3286. sets a default value for jceks.key.serialFilter.
  3287. </description>
  3288. </property>
  3289. <property>
  3290. <name>hadoop.security.crypto.buffer.size</name>
  3291. <value>8192</value>
  3292. <description>
  3293. The buffer size used by CryptoInputStream and CryptoOutputStream.
  3294. </description>
  3295. </property>
  3296. <property>
  3297. <name>hadoop.security.java.secure.random.algorithm</name>
  3298. <value>SHA1PRNG</value>
  3299. <description>
  3300. The java secure random algorithm.
  3301. </description>
  3302. </property>
  3303. <property>
  3304. <name>hadoop.security.secure.random.impl</name>
  3305. <value>org.apache.hadoop.crypto.random.OpensslSecureRandom</value>
  3306. <description>
  3307. Implementation of secure random.
  3308. </description>
  3309. </property>
  3310. <property>
  3311. <name>hadoop.security.random.device.file.path</name>
  3312. <value>/dev/urandom</value>
  3313. <description>
  3314. OS security random device file path.
  3315. </description>
  3316. </property>
  3317. <property>
  3318. <name>hadoop.security.key.provider.path</name>
  3319. <description>
  3320. The KeyProvider to use when managing zone keys, and interacting with
  3321. encryption keys when reading and writing to an encryption zone.
  3322. For hdfs clients, the provider path will be same as namenode's
  3323. provider path.
  3324. </description>
  3325. </property>
  3326. <property>
  3327. <name>hadoop.security.key.default.bitlength</name>
  3328. <value>128</value>
  3329. <description>
  3330. The length (bits) of keys we want the KeyProvider to produce. Key length
  3331. defines the upper-bound on an algorithm's security, ideally, it would
  3332. coincide with the lower-bound on an algorithm's security.
  3333. </description>
  3334. </property>
  3335. <property>
  3336. <name>hadoop.security.key.default.cipher</name>
  3337. <value>AES/CTR/NoPadding</value>
  3338. <description>
  3339. This indicates the algorithm that be used by KeyProvider for generating
  3340. key, and will be converted to CipherSuite when creating encryption zone.
  3341. </description>
  3342. </property>
  3343. <property>
  3344. <name>fs.har.impl.disable.cache</name>
  3345. <value>true</value>
  3346. <description>Don't cache 'har' filesystem instances.</description>
  3347. </property>
  3348. <!--- KMSClientProvider configurations -->
  3349. <property>
  3350. <name>hadoop.security.kms.client.authentication.retry-count</name>
  3351. <value>1</value>
  3352. <description>
  3353. Number of time to retry connecting to KMS on authentication failure
  3354. </description>
  3355. </property>
  3356. <property>
  3357. <name>hadoop.security.kms.client.encrypted.key.cache.size</name>
  3358. <value>500</value>
  3359. <description>
  3360. Size of the EncryptedKeyVersion cache Queue for each key
  3361. </description>
  3362. </property>
  3363. <property>
  3364. <name>hadoop.security.kms.client.encrypted.key.cache.low-watermark</name>
  3365. <value>0.3f</value>
  3366. <description>
  3367. If size of the EncryptedKeyVersion cache Queue falls below the
  3368. low watermark, this cache queue will be scheduled for a refill
  3369. </description>
  3370. </property>
  3371. <property>
  3372. <name>hadoop.security.kms.client.encrypted.key.cache.num.refill.threads</name>
  3373. <value>2</value>
  3374. <description>
  3375. Number of threads to use for refilling depleted EncryptedKeyVersion
  3376. cache Queues
  3377. </description>
  3378. </property>
  3379. <property>
  3380. <name>hadoop.security.kms.client.encrypted.key.cache.expiry</name>
  3381. <value>43200000</value>
  3382. <description>
  3383. Cache expiry time for a Key, after which the cache Queue for this
  3384. key will be dropped. Default = 12hrs
  3385. </description>
  3386. </property>
  3387. <property>
  3388. <name>hadoop.security.kms.client.timeout</name>
  3389. <value>60</value>
  3390. <description>
  3391. Sets value for KMS client connection timeout, and the read timeout
  3392. to KMS servers.
  3393. </description>
  3394. </property>
  3395. <property>
  3396. <name>hadoop.security.kms.client.failover.sleep.base.millis</name>
  3397. <value>100</value>
  3398. <description>
  3399. Expert only. The time to wait, in milliseconds, between failover
  3400. attempts increases exponentially as a function of the number of
  3401. attempts made so far, with a random factor of +/- 50%. This option
  3402. specifies the base value used in the failover calculation. The
  3403. first failover will retry immediately. The 2nd failover attempt
  3404. will delay at least hadoop.security.client.failover.sleep.base.millis
  3405. milliseconds. And so on.
  3406. </description>
  3407. </property>
  3408. <property>
  3409. <name>hadoop.security.kms.client.failover.sleep.max.millis</name>
  3410. <value>2000</value>
  3411. <description>
  3412. Expert only. The time to wait, in milliseconds, between failover
  3413. attempts increases exponentially as a function of the number of
  3414. attempts made so far, with a random factor of +/- 50%. This option
  3415. specifies the maximum value to wait between failovers.
  3416. Specifically, the time between two failover attempts will not
  3417. exceed +/- 50% of hadoop.security.client.failover.sleep.max.millis
  3418. milliseconds.
  3419. </description>
  3420. </property>
  3421. <property>
  3422. <name>hadoop.security.kms.client.failover.max.retries</name>
  3423. <value></value>
  3424. <description>
  3425. Default value is the number of providers specified.
  3426. </description>
  3427. </property>
  3428. <property>
  3429. <name>hadoop.security.kerberos.ticket.cache.path</name>
  3430. <value></value>
  3431. <description>
  3432. Path to the Kerberos ticket cache. Setting this will force
  3433. UserGroupInformation to use only this ticket cache file when
  3434. creating a FileSystem instance.
  3435. </description>
  3436. </property>
  3437. <property>
  3438. <name>ipc.server.max.connections</name>
  3439. <value>0</value>
  3440. <description>The maximum number of concurrent connections a server is allowed
  3441. to accept. If this limit is exceeded, incoming connections will first fill
  3442. the listen queue and then may go to an OS-specific listen overflow queue.
  3443. The client may fail or timeout, but the server can avoid running out of file
  3444. descriptors using this feature. 0 means no limit.
  3445. </description>
  3446. </property>
  3447. <!-- YARN registry -->
  3448. <property>
  3449. <name>hadoop.registry.zk.root</name>
  3450. <value>/registry</value>
  3451. <description>
  3452. The root zookeeper node for the registry
  3453. </description>
  3454. </property>
  3455. <property>
  3456. <name>hadoop.registry.zk.session.timeout.ms</name>
  3457. <value>60000</value>
  3458. <description>
  3459. Zookeeper session timeout in milliseconds
  3460. </description>
  3461. </property>
  3462. <property>
  3463. <name>hadoop.registry.zk.connection.timeout.ms</name>
  3464. <value>15000</value>
  3465. <description>
  3466. Zookeeper connection timeout in milliseconds
  3467. </description>
  3468. </property>
  3469. <property>
  3470. <name>hadoop.registry.zk.retry.times</name>
  3471. <value>5</value>
  3472. <description>
  3473. Zookeeper connection retry count before failing
  3474. </description>
  3475. </property>
  3476. <property>
  3477. <name>hadoop.registry.zk.retry.interval.ms</name>
  3478. <value>1000</value>
  3479. <description>
  3480. </description>
  3481. </property>
  3482. <property>
  3483. <name>hadoop.registry.zk.retry.ceiling.ms</name>
  3484. <value>60000</value>
  3485. <description>
  3486. Zookeeper retry limit in milliseconds, during
  3487. exponential backoff.
  3488. This places a limit even
  3489. if the retry times and interval limit, combined
  3490. with the backoff policy, result in a long retry
  3491. period
  3492. </description>
  3493. </property>
  3494. <property>
  3495. <name>hadoop.registry.zk.quorum</name>
  3496. <value>localhost:2181</value>
  3497. <description>
  3498. List of hostname:port pairs defining the
  3499. zookeeper quorum binding for the registry
  3500. </description>
  3501. </property>
  3502. <property>
  3503. <name>hadoop.registry.secure</name>
  3504. <value>false</value>
  3505. <description>
  3506. Key to set if the registry is secure. Turning it on
  3507. changes the permissions policy from "open access"
  3508. to restrictions on kerberos with the option of
  3509. a user adding one or more auth key pairs down their
  3510. own tree.
  3511. </description>
  3512. </property>
  3513. <property>
  3514. <name>hadoop.registry.system.acls</name>
  3515. <value>sasl:yarn@, sasl:mapred@, sasl:hdfs@</value>
  3516. <description>
  3517. A comma separated list of Zookeeper ACL identifiers with
  3518. system access to the registry in a secure cluster.
  3519. These are given full access to all entries.
  3520. If there is an "@" at the end of a SASL entry it
  3521. instructs the registry client to append the default kerberos domain.
  3522. </description>
  3523. </property>
  3524. <property>
  3525. <name>hadoop.registry.kerberos.realm</name>
  3526. <value></value>
  3527. <description>
  3528. The kerberos realm: used to set the realm of
  3529. system principals which do not declare their realm,
  3530. and any other accounts that need the value.
  3531. If empty, the default realm of the running process
  3532. is used.
  3533. If neither are known and the realm is needed, then the registry
  3534. service/client will fail.
  3535. </description>
  3536. </property>
  3537. <property>
  3538. <name>hadoop.registry.jaas.context</name>
  3539. <value>Client</value>
  3540. <description>
  3541. Key to define the JAAS context. Used in secure
  3542. mode
  3543. </description>
  3544. </property>
  3545. <property>
  3546. <name>hadoop.shell.missing.defaultFs.warning</name>
  3547. <value>false</value>
  3548. <description>
  3549. Enable hdfs shell commands to display warnings if (fs.defaultFS) property
  3550. is not set.
  3551. </description>
  3552. </property>
  3553. <property>
  3554. <name>hadoop.shell.safely.delete.limit.num.files</name>
  3555. <value>100</value>
  3556. <description>Used by -safely option of hadoop fs shell -rm command to avoid
  3557. accidental deletion of large directories. When enabled, the -rm command
  3558. requires confirmation if the number of files to be deleted is greater than
  3559. this limit. The default limit is 100 files. The warning is disabled if
  3560. the limit is 0 or the -safely is not specified in -rm command.
  3561. </description>
  3562. </property>
  3563. <property>
  3564. <name>fs.client.htrace.sampler.classes</name>
  3565. <value></value>
  3566. <description>The class names of the HTrace Samplers to use for Hadoop
  3567. filesystem clients.
  3568. </description>
  3569. </property>
  3570. <property>
  3571. <name>hadoop.htrace.span.receiver.classes</name>
  3572. <value></value>
  3573. <description>The class names of the Span Receivers to use for Hadoop.
  3574. </description>
  3575. </property>
  3576. <property>
  3577. <name>hadoop.http.logs.enabled</name>
  3578. <value>true</value>
  3579. <description>
  3580. Enable the "/logs" endpoint on all Hadoop daemons, which serves local
  3581. logs, but may be considered a security risk due to it listing the contents
  3582. of a directory.
  3583. </description>
  3584. </property>
  3585. <property>
  3586. <name>fs.client.resolve.topology.enabled</name>
  3587. <value>false</value>
  3588. <description>Whether the client machine will use the class specified by
  3589. property net.topology.node.switch.mapping.impl to compute the network
  3590. distance between itself and remote machines of the FileSystem. Additional
  3591. properties might need to be configured depending on the class specified
  3592. in net.topology.node.switch.mapping.impl. For example, if
  3593. org.apache.hadoop.net.ScriptBasedMapping is used, a valid script file
  3594. needs to be specified in net.topology.script.file.name.
  3595. </description>
  3596. </property>
  3597. <!-- Azure Data Lake File System Configurations -->
  3598. <property>
  3599. <name>fs.adl.impl</name>
  3600. <value>org.apache.hadoop.fs.adl.AdlFileSystem</value>
  3601. </property>
  3602. <property>
  3603. <name>fs.AbstractFileSystem.adl.impl</name>
  3604. <value>org.apache.hadoop.fs.adl.Adl</value>
  3605. </property>
  3606. <property>
  3607. <name>adl.feature.ownerandgroup.enableupn</name>
  3608. <value>false</value>
  3609. <description>
  3610. When true : User and Group in FileStatus/AclStatus response is
  3611. represented as user friendly name as per Azure AD profile.
  3612. When false (default) : User and Group in FileStatus/AclStatus
  3613. response is represented by the unique identifier from Azure AD
  3614. profile (Object ID as GUID).
  3615. For optimal performance, false is recommended.
  3616. </description>
  3617. </property>
  3618. <property>
  3619. <name>fs.adl.oauth2.access.token.provider.type</name>
  3620. <value>ClientCredential</value>
  3621. <description>
  3622. Defines Azure Active Directory OAuth2 access token provider type.
  3623. Supported types are ClientCredential, RefreshToken, MSI, DeviceCode,
  3624. and Custom.
  3625. The ClientCredential type requires property fs.adl.oauth2.client.id,
  3626. fs.adl.oauth2.credential, and fs.adl.oauth2.refresh.url.
  3627. The RefreshToken type requires property fs.adl.oauth2.client.id and
  3628. fs.adl.oauth2.refresh.token.
  3629. The MSI type reads optional property fs.adl.oauth2.msi.port, if specified.
  3630. The DeviceCode type requires property
  3631. fs.adl.oauth2.devicecode.clientapp.id.
  3632. The Custom type requires property fs.adl.oauth2.access.token.provider.
  3633. </description>
  3634. </property>
  3635. <property>
  3636. <name>fs.adl.oauth2.client.id</name>
  3637. <value></value>
  3638. <description>The OAuth2 client id.</description>
  3639. </property>
  3640. <property>
  3641. <name>fs.adl.oauth2.credential</name>
  3642. <value></value>
  3643. <description>The OAuth2 access key.</description>
  3644. </property>
  3645. <property>
  3646. <name>fs.adl.oauth2.refresh.url</name>
  3647. <value></value>
  3648. <description>The OAuth2 token endpoint.</description>
  3649. </property>
  3650. <property>
  3651. <name>fs.adl.oauth2.refresh.token</name>
  3652. <value></value>
  3653. <description>The OAuth2 refresh token.</description>
  3654. </property>
  3655. <property>
  3656. <name>fs.adl.oauth2.access.token.provider</name>
  3657. <value></value>
  3658. <description>
  3659. The class name of the OAuth2 access token provider.
  3660. </description>
  3661. </property>
  3662. <property>
  3663. <name>fs.adl.oauth2.msi.port</name>
  3664. <value></value>
  3665. <description>
  3666. The localhost port for the MSI token service. This is the port specified
  3667. when creating the Azure VM. The default, if this setting is not specified,
  3668. is 50342.
  3669. Used by MSI token provider.
  3670. </description>
  3671. </property>
  3672. <property>
  3673. <name>fs.adl.oauth2.devicecode.clientapp.id</name>
  3674. <value></value>
  3675. <description>
  3676. The app id of the AAD native app in whose context the auth request
  3677. should be made.
  3678. Used by DeviceCode token provider.
  3679. </description>
  3680. </property>
  3681. <property>
  3682. <name>adl.http.timeout</name>
  3683. <value>-1</value>
  3684. <description>
  3685. Base timeout (in milliseconds) for HTTP requests from the ADL SDK. Values
  3686. of zero or less cause the SDK default to be used instead.
  3687. </description>
  3688. </property>
  3689. <property>
  3690. <name>adl.ssl.channel.mode</name>
  3691. <value></value>
  3692. <description>
  3693. Valid inputs are OpenSSL, Default_JSE and Default (case insensitive).
  3694. If config is missing or is invalid, SSL Channel mode will be set to Default.
  3695. When OpenSSL, SSL socket connections are created in OpenSSL mode.
  3696. When Default_JSE, SSL socket connections are created in the default JSE mode.
  3697. When Default, SSL socket connections are attempted with OpenSSL
  3698. and will fallback to Default_JSE mode if OpenSSL is not available at runtime.
  3699. </description>
  3700. </property>
  3701. <!-- Azure Data Lake File System Configurations Ends Here-->
  3702. <property>
  3703. <name>hadoop.caller.context.enabled</name>
  3704. <value>false</value>
  3705. <description>When the feature is enabled, additional fields are written into
  3706. name-node audit log records for auditing coarse granularity operations.
  3707. </description>
  3708. </property>
  3709. <property>
  3710. <name>hadoop.caller.context.max.size</name>
  3711. <value>128</value>
  3712. <description>The maximum bytes a caller context string can have. If the
  3713. passed caller context is longer than this maximum bytes, client will
  3714. truncate it before sending to server. Note that the server may have a
  3715. different maximum size, and will truncate the caller context to the
  3716. maximum size it allows.
  3717. </description>
  3718. </property>
  3719. <property>
  3720. <name>hadoop.caller.context.signature.max.size</name>
  3721. <value>40</value>
  3722. <description>
  3723. The caller's signature (optional) is for offline validation. If the
  3724. signature exceeds the maximum allowed bytes in server, the caller context
  3725. will be abandoned, in which case the caller context will not be recorded
  3726. in audit logs.
  3727. </description>
  3728. </property>
  3729. <property>
  3730. <name>hadoop.caller.context.separator</name>
  3731. <value>,</value>
  3732. <description>
  3733. The separator is for context which maybe contain many fields. For example,
  3734. if the separator is ',', and there are two key/value fields in context,
  3735. in which case the context string is "key1:value1,key2:value2". The
  3736. separator should not contain '\t', '\n', '='.
  3737. </description>
  3738. </property>
  3739. <!-- SequenceFile's Sorter properties -->
  3740. <property>
  3741. <name>seq.io.sort.mb</name>
  3742. <value>100</value>
  3743. <description>
  3744. The total amount of buffer memory to use while sorting files,
  3745. while using SequenceFile.Sorter, in megabytes. By default,
  3746. gives each merge stream 1MB, which should minimize seeks.
  3747. </description>
  3748. </property>
  3749. <property>
  3750. <name>seq.io.sort.factor</name>
  3751. <value>100</value>
  3752. <description>
  3753. The number of streams to merge at once while sorting
  3754. files using SequenceFile.Sorter.
  3755. This determines the number of open file handles.
  3756. </description>
  3757. </property>
  3758. <property>
  3759. <name>hadoop.zk.address</name>
  3760. <!--value>127.0.0.1:2181</value-->
  3761. <description>Host:Port of the ZooKeeper server to be used.
  3762. </description>
  3763. </property>
  3764. <property>
  3765. <name>hadoop.zk.num-retries</name>
  3766. <value>1000</value>
  3767. <description>Number of tries to connect to ZooKeeper.</description>
  3768. </property>
  3769. <property>
  3770. <name>hadoop.zk.retry-interval-ms</name>
  3771. <value>1000</value>
  3772. <description>Retry interval in milliseconds when connecting to ZooKeeper.
  3773. </description>
  3774. </property>
  3775. <property>
  3776. <name>hadoop.zk.timeout-ms</name>
  3777. <value>10000</value>
  3778. <description>ZooKeeper session timeout in milliseconds. Session expiration
  3779. is managed by the ZooKeeper cluster itself, not by the client. This value is
  3780. used by the cluster to determine when the client's session expires.
  3781. Expirations happens when the cluster does not hear from the client within
  3782. the specified session timeout period (i.e. no heartbeat).</description>
  3783. </property>
  3784. <property>
  3785. <name>hadoop.zk.acl</name>
  3786. <value>world:anyone:rwcda</value>
  3787. <description>ACL's to be used for ZooKeeper znodes.</description>
  3788. </property>
  3789. <property>
  3790. <name>hadoop.zk.auth</name>
  3791. <description>
  3792. Specify the auths to be used for the ACL's specified in hadoop.zk.acl.
  3793. This takes a comma-separated list of authentication mechanisms, each of the
  3794. form 'scheme:auth' (the same syntax used for the 'addAuth' command in
  3795. the ZK CLI).
  3796. </description>
  3797. </property>
  3798. <property>
  3799. <name>hadoop.zk.server.principal</name>
  3800. <value></value>
  3801. <description>
  3802. Principal name for zookeeper servers.
  3803. </description>
  3804. </property>
  3805. <property>
  3806. <name>hadoop.zk.kerberos.principal</name>
  3807. <value></value>
  3808. <description>
  3809. Kerberos principal name for zookeeper connection.
  3810. </description>
  3811. </property>
  3812. <property>
  3813. <name>hadoop.zk.kerberos.keytab</name>
  3814. <value></value>
  3815. <description>
  3816. Kerberos keytab for zookeeper connection.
  3817. </description>
  3818. </property>
  3819. <property>
  3820. <name>hadoop.zk.ssl.enabled</name>
  3821. <decription>
  3822. Enable SSL/TLS encryption for the ZooKeeper communication.
  3823. Note: this setting overrides dfs.ha.zkfc.client.ssl.enabled,
  3824. yarn.resourcemanager.zk-client-ssl.enabled and also
  3825. hadoop.kms.authentication.zk-dt-secret-manager.ssl.enabled in order to unify the SSL based
  3826. Zookeeper access across Hadoop. Leaving this property empty ensures that service specific
  3827. enablement can be done separately.
  3828. </decription>
  3829. </property>
  3830. <property>
  3831. <name>hadoop.zk.ssl.keystore.location</name>
  3832. <description>
  3833. Keystore location for ZooKeeper client connection over SSL.
  3834. </description>
  3835. </property>
  3836. <property>
  3837. <name>hadoop.zk.ssl.keystore.password</name>
  3838. <description>
  3839. Keystore password for ZooKeeper client connection over SSL.
  3840. </description>
  3841. </property>
  3842. <property>
  3843. <name>hadoop.zk.ssl.truststore.location</name>
  3844. <decription>
  3845. Truststore location for ZooKeeper client connection over SSL.
  3846. </decription>
  3847. </property>
  3848. <property>
  3849. <name>hadoop.zk.ssl.truststore.password</name>
  3850. <description>
  3851. Truststore password for ZooKeeper client connection over SSL.
  3852. </description>
  3853. </property>
  3854. <property>
  3855. <name>hadoop.system.tags</name>
  3856. <value>YARN,HDFS,NAMENODE,DATANODE,REQUIRED,SECURITY,KERBEROS,PERFORMANCE,CLIENT
  3857. ,SERVER,DEBUG,DEPRECATED,COMMON,OPTIONAL</value>
  3858. <description>
  3859. Deprecated. Please use hadoop.tags.system instead.
  3860. </description>
  3861. </property>
  3862. <property>
  3863. <name>hadoop.tags.system</name>
  3864. <value>YARN,HDFS,NAMENODE,DATANODE,REQUIRED,SECURITY,KERBEROS,PERFORMANCE,CLIENT
  3865. ,SERVER,DEBUG,DEPRECATED,COMMON,OPTIONAL</value>
  3866. <description>
  3867. A comma-separated list of system tags to group related properties together.
  3868. </description>
  3869. </property>
  3870. <property>
  3871. <name>hadoop.tags.custom</name>
  3872. <value></value>
  3873. <description>
  3874. A comma-separated list of custom tags to group related properties together.
  3875. </description>
  3876. </property>
  3877. <property>
  3878. <name>ipc.client.bind.wildcard.addr</name>
  3879. <value>false</value>
  3880. <description>When set to true Clients will bind socket to wildcard
  3881. address. (i.e 0.0.0.0)
  3882. </description>
  3883. </property>
  3884. <property>
  3885. <name>hadoop.domainname.resolver.impl</name>
  3886. <value>org.apache.hadoop.net.DNSDomainNameResolver</value>
  3887. <description>The implementation of DomainNameResolver used for service (NameNodes,
  3888. RBF Routers etc) discovery. The default implementation
  3889. org.apache.hadoop.net.DNSDomainNameResolver returns all IP addresses associated
  3890. with the input domain name of the services by querying the underlying DNS.
  3891. </description>
  3892. </property>
  3893. <property>
  3894. <name>dfs.client.ignore.namenode.default.kms.uri</name>
  3895. <value>false</value>
  3896. <description>
  3897. Ignore KMS default URI returned from NameNode.
  3898. When set to true, kms uri is searched in the following order:
  3899. 1. If there is a mapping in Credential's secrets map for namenode uri.
  3900. 2. Fallback to local conf. (i.e hadoop.security.key.provider.path)
  3901. If client choose to ignore KMS uri provided by NameNode then client
  3902. should set KMS URI using 'hadoop.security.key.provider.path' to access
  3903. the right KMS for encrypted files.
  3904. </description>
  3905. </property>
  3906. <property>
  3907. <name>hadoop.prometheus.endpoint.enabled</name>
  3908. <value>false</value>
  3909. <description>
  3910. If set to true, prometheus compatible metric page on the HTTP servers
  3911. is enabled via '/prom' endpoint.
  3912. </description>
  3913. </property>
  3914. <property>
  3915. <name>fs.getspaceused.classname</name>
  3916. <value></value>
  3917. <description>
  3918. The class that can tell estimate much space is used in a directory.
  3919. There are four impl classes that being supported:
  3920. org.apache.hadoop.fs.DU(default), org.apache.hadoop.fs.WindowsGetSpaceUsed
  3921. org.apache.hadoop.fs.DFCachingGetSpaceUsed and
  3922. org.apache.hadoop.hdfs.server.datanode.fsdataset.impl.ReplicaCachingGetSpaceUsed.
  3923. And the ReplicaCachingGetSpaceUsed impl class only used in HDFS module.
  3924. </description>
  3925. </property>
  3926. <property>
  3927. <name>fs.getspaceused.jitterMillis</name>
  3928. <value>60000</value>
  3929. <description>
  3930. fs space usage statistics refresh jitter in msec.
  3931. </description>
  3932. </property>
  3933. <property>
  3934. <name>hadoop.http.sni.host.check.enabled</name>
  3935. <value>false</value>
  3936. <description>
  3937. Enable Server Name Indication (SNI) host check for HTTPS enabled server.
  3938. </description>
  3939. </property>
  3940. <property>
  3941. <name>hadoop.metrics.jvm.use-thread-mxbean</name>
  3942. <value>false</value>
  3943. <description>
  3944. Whether or not ThreadMXBean is used for getting thread info in JvmMetrics,
  3945. ThreadGroup approach is preferred for better performance.
  3946. </description>
  3947. </property>
  3948. <property>
  3949. <name>fs.AbstractFileSystem.ofs.impl</name>
  3950. <value>org.apache.hadoop.fs.ozone.RootedOzFs</value>
  3951. <description>The AbstractFileSystem for Rooted Ozone
  3952. FileSystem ofs uri</description>
  3953. </property>
  3954. <property>
  3955. <name>fs.AbstractFileSystem.o3fs.impl</name>
  3956. <value>org.apache.hadoop.fs.ozone.OzFs</value>
  3957. <description>The AbstractFileSystem for Ozone FileSystem o3fs uri</description>
  3958. </property>
  3959. <property>
  3960. <name>fs.hdfs.impl.disable.cache</name>
  3961. <value>false</value>
  3962. <description>Whether disable cached hdfs filesystem instances or not.
  3963. If false, return a cached hdfs fileSystem instance to the caller if exists.
  3964. If true, a new hdfs fileSystem instance will be created,
  3965. initialized with the configuration and URI, cached and returned to the caller,
  3966. it is slower than using cached hdfs filesystme instances.
  3967. </description>
  3968. </property>
  3969. <property>
  3970. <name>hadoop.security.hostname.cache.expire-interval.seconds</name>
  3971. <value>0</value>
  3972. <description>The expiration time in seconds for cached hostname resolutions.
  3973. This cache is used to avoid repeated resolution for hostname.
  3974. A shorter interval may provide more up-to-date resolutions,
  3975. while a longer interval reduces lookup overhead.
  3976. If the value is less than or equal to 0, the cache is disabled entirely.
  3977. </description>
  3978. </property>
  3979. </configuration>